arrow_upward

Posted by: Husam_Haider - 04-11-2020, 05:20 AM - Forum: Meet & Greet! - Replies (3)
Hello everyone!

I just registered my account here, and newly joined here. My name is Husam playing gta samp all the time.

Hope you guys corporate and welcome! 

Special thanks to john for referring me to post4vps. Its amazing service which you are providing. 
I don't have any cc or paypal yet to buy that's why i'm here. Have a nice day!  

Posted by: aegisrox - 04-11-2020, 12:22 AM - Forum: Software - No Replies
I was trying this software SVP and it is pretty awesome and recommend to see anime also, you would see a huge change.

This is a software that convert your videos and movie to virtual 60FPS in realtime.

Tell me if you know it, if not you can try at: https://www.svp-team.com/

You will have a 30 days trial. Tell me your experience  Wink
Posted by: aegisrox - 04-11-2020, 12:18 AM - Forum: General Gaming Discussion - Replies (4)
I'm huge fan of indie game development and that my hobbie in my free time.
I used a lot of Unity3D but some of Unreal Engine 4 too.
If there any interested I can post some guides and tutorial to enter to this world. Big Grin
Posted by: aegisrox - 04-11-2020, 12:13 AM - Forum: Meet & Greet! - Replies (1)
Hello nice to meet you all! I'm coming back from long time. My name is Ezequiel and I'm programmer and indie game developer.

I love music and anime and my dream is to become a part of a team to create an MMORPG.

I hope i can do some contribution to the forum and get some friends too.

Thanks in advace  Wink
Posted by: fChk - 04-10-2020, 06:26 PM - Forum: Tutorials - Replies (7)
Before we begin, please note that changing SSHD's port isn't much about security but about reducing the size of your log files and shaving off few CPU cycles due to the inevitable automated(/random) login attempts directed towards the default SSH port (ie port 22.)

Indeed, our assumption here is that you do know better and that you've already disabled SSH password login in favour of the public-key authentication [1]; thus our problem is to get SSH daemon off its default port to not bother with those failed login attempts that are piling up in the logs and get the 'poor' fail2ban service a break (in case you did install it), which save us few CPU cycles.

1-Make SSHD Listen on 2 Ports:
What we'll do is to configure 'sshd' to listen on two ports, the default and the random one (eg 4600.) This is a good practice to avoid being locked out of the VPS if something goes wrong.
Code:
vi /etc/ssh/sshd_config
# Uncomment the line, # Port 22
Port 22
Port 4600

Next we need to check if SSHD does indeed listen on both ports, as follows:
Code:
[root@centos ~]# netstat -tulpn|grep sshd
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      836/sshd            
tcp6       0      0 :::22                   :::*                    LISTEN      836/sshd            

At our surprise, SSHD failed to listen on our selected port!!.. What might be the cause? If we check the logs, we see this:
Code:
[root@centos ~]# journalctl -u sshd -f
-- Logs begin at Wed 2020-04-08 14:54:06 +01. --
Apr 10 16:39:52 centos.xyz.xy sshd[836]: Server listening on :: port 22.
Apr 10 16:39:52 centos.xyz.xy sshd[836]: error: Bind to port 4600 on 0.0.0.0 failed: Permission denied.
Apr 10 16:39:52 centos.xyz.xy sshd[836]: error: Bind to port 4600 on :: failed: Permission denied.
Apr 10 16:39:52 centos.xyz.xy systemd[1]: Started OpenSSH server daemon.

2- Enable the Selected Port Usage by SSHD with SELinux:
So, SSHD failed with a permission denied. Of course, SSHD doesn't have the permission to listen on any port other than its own/22; says WHO?.. Well, SELinux says so, and it's in its enforcing mode.
Code:
[root@centos ~]# semanage port -l | grep ssh
ssh_port_t                     tcp      22

What we need to do is ask SELinux for permission to use port 4600 for SSHD, like so:
Code:
[root@centos ~]# semanage port -a -t ssh_port_t -p tcp 4600
# Now let's see:
[root@centos ~]# semanage port -l | grep ssh
ssh_port_t                     tcp      4600, 22

Now let's test again to see if it's working:
Code:
# First restart SSHD
[root@centos ~]# systemctl restart sshd
#check on which ports SSHD is listening on:
[root@static ~]# netstat -tulpn|grep sshd
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      2776/sshd          
tcp        0      0 0.0.0.0:4600            0.0.0.0:*               LISTEN      2776/sshd          
tcp6       0      0 :::22                   :::*                    LISTEN      2776/sshd          
tcp6       0      0 :::4600                 :::*                    LISTEN      2776/sshd          
It's all good!

3- Open the Firewall to the Selected SSHD Port:
We need to let the port 4600 through the firewall:

Before: only ssh and dhcp services are allowed to pass through
Code:
[root@centos ~]# firewall-cmd --zone=public --list-all
public (active)
 target: default
 icmp-block-inversion: no
 interfaces: ens3
 sources:
 services: dhcpv6-client ssh
 ports:
 protocols:
 masquerade: no
 forward-ports:
 source-ports:
 icmp-blocks:
 rich rules:

We now want to allow port 4600/tcp through
Code:
[root@centos ~]# firewall-cmd --zone=public --add-port=4600/tcp --permanent
success
[root@centos ~]# firewall-cmd --reload
success

Now TCP traffic through port 4600 is also allowed:
Code:
[root@centos ~]# firewall-cmd --zone=public --list-all
public (active)
 target: default
 icmp-block-inversion: no
 interfaces: ens3
 sources:
 services: dhcpv6-client ssh
 ports: 4600/tcp
 protocols:
 masquerade: no
 forward-ports:
 source-ports:
 icmp-blocks:
 rich rules:

4-Test SSHD Login with the Custom Port:
At this stage we have to completely logout and test if we can login with the new port:
If we exit our shell both as root and sudoer:
Code:
[root@centos ~]# exit
logout
[user@centos ~]$ exit
logout
Connection to 50.*.*.* closed.
[user@local ~]$ ssh -i ~/.ssh/centos-key-ecdsa 50.*.*.* -p 4600
Activate the web console with: systemctl enable --now cockpit.socket

Last login: ....
[user@centos ~]............................YOUR.IN
Our setup is working!

5-Disable SSHD Default Port:
> To Shut-off SSHD default port through the firewall
Code:
[root@centos ~]# firewall-cmd --zone=public --remove-service=ssh --permanent
success
[root@centos ~]# firewall-cmd --reload
success
[root@centos ~]# firewall-cmd --zone=public --list-all
public (active)
 target: default
 icmp-block-inversion: no
 interfaces: ens3
 sources:
 services: dhcpv6-client
 ports: 4600/tcp
 protocols:
 masquerade: no
 forward-ports:
 source-ports:
 icmp-blocks:
 rich rules:
From this moment onward, we're done with those random poking around port 22; the logs will be much cleaner and fail2ban will thank you for it.

6- Make SSHD Listen on the Selected Port Only:
> Last thing to do is to completely remove port 22 from the SSHD config and restart the SSHD daemon, and I'll leave that to you.

That's all there is to it.


Notes:
[1]- If you're unsure, please check Running Fedora inside an LXD/LXC System Container for a reminder.
Posted by: Pacific Spirit - 04-10-2020, 01:44 PM - Forum: General - Replies (7)
As some of you already know I use a blog, the blog called https://webhosting-news.com I publish news about hosting providers, VPN services and Telecom news. These sections are not yet fully completed, but the articles are coming up. My suggestion is whether you have any ideas that I could possibly add so that I can expand my blog more and more. You can also leave a comment for each item. If you think from "Hey this is missing" or "This can be added too" please leave your idea's here in this topic.
Posted by: Pacific Spirit - 04-10-2020, 10:12 AM - Forum: Internet Technology - Replies (6)
In this thread I like to talk about and to explain what Offshore hosting is for non-professionals.

What is offshore hosting?
Offshore hosting is no ordinary hosting. Who chooses offshore hosting, chooses total privacy. What you do with your hosting package does not interest the host at all. The host doesn't care who you are. As long as you don't host child porn and pay the bill, you can have any kind of website or web service hosted.
[font=Raleway][font=Roboto Slab]ANONYMOUS WEB HOSTING ABROAD
[Image: anonieme-webhosting-169x300.jpg]If you want to set up a website or puppies, a regular web host is excellent. Some people don't have puppy websites, they choose a topic that is more controversial. People who keep a crime blog sometimes want to be completely anonymous. Someone who wants to maintain a torrent or usenet website also wants to be anonymous. Anonymous offshore hosting is very suitable for this type of people. It is almost impossible to find out who is behind such a website. Even the party that offers anonymous hosting does not know who their customer is. Even the domain name is bought anonymously and it is not possible to find out who the owner is.
PAYMENT FOR OFFSHORE HOSTING
Anyone can open a hosting account. Go to a company like Versio or Neostrada and you can open an account. They do not ask for your ID proof and the data you enter will not be checked. However, the payment you make can be traced back to you. You use your own bank account, your PayPal account, or another payment method that can be linked to you.
This works very differently for offshore hosting. You can almost always pay via cryptocurrency, in most cases Bitcoin. Monero is an even more anonymous cryptocurrency than Bitcoin, which is very often accepted by companies that offer offshore hosting. Some people know little about cryptocurrency and therefore choose to pay with a PaySafeCard . A PaySafeCard is for sale at almost every AH supermarket and can therefore simply be bought without tracing it back to the buyer.
Payment for anonymous hosting can therefore be completely anonymous. However, almost all offshore hosting providers also accept iDEAL, credit cards, debit cards, PayPal and other regular payment methods. So it just depends on how anonymous you want to be. If you don't even want the anonymous host to know who you are, you can choose to pay via cryptocurrency or a PaySaveCard.
WHAT DO YOU HOST?
In principle, the host does not look at what you do with your hosting account. And, if people or organizations have complaints about your website, the host rarely does anything about it. A small torrent or usenet website and copyright infringement rarely interest an offshore host. But if you set up a website that openly offers drugs, weapons and other prohibited items, chances are the host will take you offline. Also websites that host child pornography are hardly ever tolerated. People who are involved in these matters do not look for regular or offshore hosting. They offer their mess on the dark web , a part of the internet that is not easily accessible.[/font]
[/font]

[font=Raleway]WHAT DO THE HOSTING PROVIDER?[/font]
A hosting provider will not do anything about the website until there are many complaints about the reported domain name. Until then, the hosting provider will take no further action. Perhaps if the hosting provider gets complaints about RSA (Anti Fraud Command Center), the hosting provider will take action faster and perhaps take the website off the air.
Posted by: OldMeister - 04-08-2020, 11:49 AM - Forum: Hardware & Technology - Replies (2)
Hello guys, today i would like to ask you what you think is the perfect computer? i bet some of you are confused but let me explain myself.
when i am saying the perfect computer i mean that the computer has enough ram,proccesor,etc to run almost every game that is being played these days.
share your opinion here guys Tongue
Posted by: Cloudcone - 04-08-2020, 08:51 AM - Forum: Cheap Providers - No Replies
[Image: ko2NbfT.png]

Here's a small intro about the company, CloudCone, LLC is a Cloud Hosting Services Provider that provides Fully Managed hourly billed cloud virtual private servers, AnyCast DNS and high-performance bare metal dedicated servers as our primary services. We offer an unmatched stack of cloud services that collaborate to provide a scalable infrastructure for your online presence together with an international team of in-house Support and DevOps Engineers.
OFFERSSD-1
1 vCPU Core
1 GB RAM
25 GB RAID 10 SSD
1 x IPv4 and 3 x IPv6
1 TB Bandwidth
Free AnyCast DNS
$2.80/MO (billed $0.00376/HR)

Order here: https://app.cloudcone.com/compute/901/create

OFFERSSD-2
1 vCPU Core
2 GB RAM
50 GB RAID 10 SSD
1 x IPv4 and 3 x IPv6
1 TB Bandwidth
Free AnyCast DNS
$4.50/MO (billed $0.00605 /HR)

Order here: https://app.cloudcone.com/compute/902/create

OFFERSSD-3
2 vCPU Core
4 GB RAM
100 GB RAID 10 SSD
1 x IPv4 and 3 x IPv6
2 TB Bandwidth
Free AnyCast DNS
$11.00/MO (billed $0.01479 /HR)

Order here: https://app.cloudcone.com/compute/903/create

OFFERSSD-4
4 vCPU Core
8 GB RAM
60 GB RAID 10 SSD
1 x IPv4 and 3 x IPv6
3 TB Bandwidth
Free AnyCast DNS
$16.00 /MO (billed $0.02151 /HR)

Order here: https://app.cloudcone.com/compute/904/create

OFFERSSD-5
4 vCPU Core
8 GB RAM
160 GB RAID 10 SSD
1 x IPv4 and 3 x IPv6
3 TB Bandwidth
Free AnyCast DNS
$21.00/MO (billed $0.02823 /HR)

Order here: https://app.cloudcone.com/compute/905/create


OFFERSSD-6
6 vCPU Core
16 GB RAM
320 GB RAID 10 SSD
1 x IPv4 and 3 x IPv6
3 TB Bandwidth
Free AnyCast DNS
$40.00/MO (billed $0.05376 /HR)

Order here: https://app.cloudcone.com/compute/906/create


NOTE: Add funds to match the relevant plan before deploying
How to order

Addons
  • cPanel License: $12.5 per month
  • 1 Tb/s Dedicated Anti-DDoS IP: $2.50 per month
  • Additional IPv4: $1.00 per month
  • IP Changes: $2 Once off

Cloud Support & Care
A support team of experts, qualified and enthusiastic enough to take on any task are available 24/7. Our Cloud Associates and Cloud Engineers will work one-on-one with you to make sure all your concerns are addressed and they will not rest until your projects are online and running smoothly.

CloudCone Mobile App
Want to experience the true accessibility and convenience of our brand? Make use of our Mobile App’s Instant Support feature to quickly contact our support team anytime, anywhere. You can also access a detailed dashboard with your server’s overview, active tasks and billing related activities. It also includes three key functionalities to ‘boot’, ‘reboot’ and ‘shutdown’. Download through the Google Play Store and Apple App store for free!

Social Media
Terms and Conditions Freebies CloudCone Network Spec Thanks,
CloudCone LLC
Since 2012
Posted by: LightDestory - 04-07-2020, 11:56 PM - Forum: VPS Support - Replies (1)
If you are a holder of a VPS 9, you know very well that it is a unmanaged VPS without panel.
You don't know which OSes can be installed, so the aim of this thread is provided a list of POSSIBLE supported OSes on VPS 9 by VirMach.
Why POSSIBLE?
  • A provider can update its set of template anytime and the staff can't keep it updated easily, so use it as a reference.
** WAITING FOR EDIT **
Pages (306): Jump to page 
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,271
» Latest member: orzpainter
» Forum threads: 3,100
» Forum posts: 34,783

Full Statistics

Online Users
There are currently 462 online users.
» 0 Member(s) | 458 Guest(s)
Applebot, Bing, Yandex, UptimeRobot

Latest Threads
⚡ EnjoyVPS.Com : 35+ Glob...
Forum: Others
Last Post: RIYAD
01-06-2026, 01:21 AM
» Replies: 0
» Views: 520
Get LLHOST Netherlands Fe...
Forum: Others
Last Post: LLHOST
09-29-2025, 03:02 AM
» Replies: 0
» Views: 975
Super Fast LLHOST Netherl...
Forum: Value VPS Providers
Last Post: LLHOST
09-16-2025, 05:01 AM
» Replies: 0
» Views: 673
Get LLHOST Netherlands Fe...
Forum: Cheap Providers
Last Post: LLHOST
09-08-2025, 01:33 PM
» Replies: 0
» Views: 808
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers
Last Post: DewlanceHosting
08-16-2025, 03:12 AM
» Replies: 0
» Views: 945
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
08-16-2025, 03:10 AM
» Replies: 8
» Views: 6,513
Budget Dedicated Servers ...
Forum: Others
Last Post: HostNamaste
08-13-2025, 04:54 AM
» Replies: 2
» Views: 1,971
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers
Last Post: bestadvisor
07-13-2025, 09:36 AM
» Replies: 0
» Views: 1,407
[Promo] 30% Discount – VP...
Forum: Cheap Providers
Last Post: LLHOST
07-11-2025, 12:56 PM
» Replies: 0
» Views: 1,000
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers
Last Post: RIYAD
07-02-2025, 03:02 AM
» Replies: 0
» Views: 2,227

Sponsors: VirMach - Host4Fun - CubeData - Evolution-Host - HostDare - Hyper Expert - Shadow Hosting - Bladenode - Hostlease - RackNerd - ReadyDedis - Limitless Hosting