Security tips for Linux server

1. Use only  strong passwords for all accounts , especially for root.

Always use a secure root password. Example of a strong password: [^G!h7#320P@}jD&er4.

This applies to all users which have ssh access or/and admin access to web UI panel like Webmin,zPanel, etc...

2. Change the default ssh port.

http://wiki.vpsget.com/index.php/Ssh

3. Disable root login.

http://wiki.vpsget.com/index.php/Ssh

4. Install fail2ban to protect your server against brute force attack.

http://wiki.vpsget.com/index.php/Fail2ban

5. Update OS packages time to time.

yum update (CentOS, RedHat)

apt-get update (Debian, Ubuntu)

6. Monitor your VPS resources utilization.

Once you've noticed unusual high utilization you should check and understand why this happens.

You can use top, htop,  iotop,  iftop, free -m, df -h, tcpdump, netstat, etc.

7. Check the security logs time to time.

 

  • /var/log/messages – Where whole system logs or current activity logs are available.
  • /var/log/auth.log – Authentication logs.
  • /var/log/cron.log – Crond logs (cron job).
  • /var/log/maillog – Mail server logs.
  • /var/log/mysqld.log – MySQL database server log file.
  • /var/log/secure – Authentication log.
  • /var/log/yum.log: Yum log files.

 

8. Close unused ports with iptables.

http://wiki.vpsget.com/index.php/Iptables_example_block_all_except_specified

List the ports which are currently in use:

# netstat -tulpn

At least it's good to block UDP (except port 53) and block ICMP in/out in webserver default scenario. If you are using UDP you can block all ports except some used ranges specified.

Feel free to contact our support team if you need any assistance in securing your VPS.

Was this answer helpful?

 Print this Article

Also Read

How to check connectivity/network speed of your VPS

If you concerned about network speed of your vps you can test it by downloading some test...

Backup script sample

#!/bin/bash echo "packing files in progress..." tar -cf /home/backup/root_lib-$(date...

OpenVPN 2.3.6 on Centos 6

Install Epel repository rpm -Uvh...

!!Actual Linux KB located : wiki.vpsget.com ***

Linux kb/wiki moved to opur wiki pages and all new articled publiched here:...

Autorun in Linux

To set a script to start at boot in CentOS, add it into /etc/rc3.d/S99local. For example:...