ubuntu 下装ssh

来源:互联网 发布:德国的gdp数据 编辑:程序博客网 时间:2024/06/15 08:34

环境

os:Ubuntu 12.04

1.安装
服务器端:

sudo apt-get install ssh openssh-server ssh-import-id
客户端:
www.163ns.com @linux:~$sudo apt-get install openssh-client

2.配置
2.1.修改ssh端口
默认的ssh端口是22,太扎眼,建议改成别的端口,比如3301。
修改 /etc/ssh/sshd_config文件
将其中的

# port 22
改成
port 3301
改完要重启ssh服务

www.163ns.com @linux:~$ sudo /etc/init.d/ssh restart

3.登录
一般的登录ssh服务器的方式有两种,一种是使用密码,还有一种是使用密钥文件登录。
3.1.使用密码登录

www.163ns.com @linux:~$ ssh testuser@192.168.56.101 -p3301
testuser@192.168.56.101's password:
Welcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic-pae i686)

* Documentation:  https://help.Ubuntu.com/

System information as of Thu May 17 00:31:21 CST 2012

System load:  0.0               Processes:           73
  Usage of /:   9.1% of 19.18GB   Users logged in:     1
  Memory usage: 14%               IP address for eth0: 192.168.56.101
  Swap usage:   0%

Graph this data and manage this system at https://landscape.canonical.com/

Last login: Thu May 17 00:22:04 2012 from 192.168.56.1
看到类似这些信息就说明登录成功了。
这种方式比较简单,但安全性稍差。

原创粉丝点击