红联Linux门户
Linux帮助

在Ubuntu 12.04安装和设置SSH服务

发布时间:2015-09-30 10:35:58来源:linux网站作者:Ph_one

1.安装
Ubuntu缺省安装了openssh-client,所以在这里就不安装了,如果你的系统没有安装的话,再用apt-get安装上即可。
安装ssh-server
sudo apt-get install openssh-server
安装ssh-client
sudo apt-get install openssh-client


2.确认sshserver是否安装好
ps -e | grep sshd
450 ?        00:00:00 sshd

如果看到sshd那说明ssh-server已经启动了。
如果只有ssh-agent说明ssh-server还没有启动,需要执行命令启动ssh服务:
/etc/init.d/ssh start;
注:在ubuntu-12.04-server-i386.iso安装中只显示sshd这一项:


3.扩展配置
SSH默认服务端口为22,用户可以自已定义成其他端口,如222,需要修改的配置文件为:
/etc/ssh/sshd_config
把里面的Port参数修改成222即可
然后重启SSH服务:
sudo /etc/init.d/ssh restart


mosh:一个基于SSH用于连接远程Unix/Linux系统的工具:http://www.linuxdiyf.com/linux/14333.html

如何通过反向SSH隧道访问NAT后面的Linux服务器:http://www.linuxdiyf.com/linux/13187.html

如何在Linux上用一次性密码确保SSH登录安全?:http://www.linuxdiyf.com/linux/10991.html

sshuttle:一个使用ssh的基于VPN的透明代理:http://www.linuxdiyf.com/linux/12376.html

使用一次性密码本通过SSH安全登录Linux:http://www.linuxdiyf.com/linux/12294.html