By default, Telnet server and SSH server is not install. You will have to install it yourself.
Following steps to install Telnet and SSH server.
1. Before installation of telnet and ssh, do a ping test to ensure that you are able to connect to Internet from Ubuntu Server.
1 | $ ping google.com |
2. Update and refresh the latest software packages list in Ubuntu Server. This is to ensure that you will install the latest copy of Telnet Server and SSH Server.
1 | $ sudo apt-get update |
If you don’t have any error message, you are good to go.
3. Install Telnet Server
1 | $ sudo apt-get install telnetd |
4. Install SSH Server
1 | $ sudo apt-get install openssh-server |
If for any reason that you need to restart your ssh services, enter the following command
1 | $ sudo /etc/init.d/ssh restart |
0 comments:
Post a Comment