SSH

SSHScript - Simplifying Linux (Web Hosting) Backups

How to Use Run the program. Click the File button, fill out the tasks as shown below and save it. (If you have multiple accounts, just repeat the process.) # Connect to the account to create a backup file. ssh://{username}:{password}@{ip}:{port} # Navigate to the location of the file you want to back up. cd {path}...

Changing SSH Port (CentOS)

SSHD Configuration vi /etc/ssh/sshd_config Port {port_number} service sshd restart Firewall Configuration vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport {port} -j ACCEPT service iptables restart * After changing the SSH port, ensure that the firewall is configured to allow traffic on that port.