Enable the SSH service in Ubuntu

Source: Internet
Author: User

Encyclopedia

Ssh, short for Secure Shell, is a security protocol built on the application layer and transport layer. SSH is currently relatively reliable, designedRemote logon sessionAnd other network services to provide security protocols. The SSH protocol can effectively prevent information leakage during Remote Management. SSH can compensate for Network Vulnerabilities when used correctly. The SSH client is applicable to multiple platforms. Almost all UNIX platforms can run ssh.

SSH is divided into client openssh-client and openssh-server.

Install
If you only want to log on to another machine for SSH, you only need to install OpenSSH-client (Ubuntu has a default installation, if not, sudo apt-Get install OpenSSH-client ), to enable the SSH service on the local machine, install OpenSSH-server.

sudo apt-get install openssh-server

Verify

Then confirm whether the sshserver is started:

ps -e |grep ssh

If you see sshd, it indicates that the ssh-server has been started.

If not, you can start it like this.

sudo /etc/init.d/ssh start

Configuration

The SSH-server configuration file is located in/etc/ssh/sshd_config. Here, you can define the SSH service port. The default port is 22. You can define other port numbers, such as 222.

Then restart the SSH service:

sudo /etc/init.d/ssh stopsudo /etc/init.d/ssh start

Login

Then use the following method to log on to SSH

ssh [email protected]192.168.1.112

Note: Username is the user on the host 192.168.1.112. You need to enter the password.

Disconnected

exit

 

Enable the SSH service in Ubuntu

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.