rajeshkumar created the topic: Changing port of ftp and ssh
Changing port of ftp and ssh
To Change the port of ssh, edit the file /etc/ssh/sshd_config and add the following line:
port 222
Restart the services of ssh to make the changes effective. Now you need to specify the port number using option ‘-p’ whenever you want to access this system.
# ssh localhost -p 22
In order to change the port of ftp server, edit the file /etc/vsftpd/vsftpd.conf
listen_port=2100 # # Add thus line
Restart the service of ftp
Now run the following command to check if the listening ports have been changed or not;
ftp localhost 2100
you can even check the open port using the netstat or nmap commands..
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024