unix下的ssh基本配置

ssh=secure shell,据说是上世纪芬兰人设计的协议。由于原作者提供的ssh软件存在版权和算法问题,现在一般使用openssh(看名字就能知道是开源的)替代。


一般unix系机器都默认安装了openssh-client,并默认开启。可使用

ps -e |grep ssh

查看是否开启了ssh.  一般情况下只会看到ssh-agent。这说明可以使用本机登陆远程主机。如果要允许其他机器远程访问本机,则要安装openssh-server。


ubuntu下安装openssh-server:

1.使用

dpkg -l|grep ssh

查看是否已经安装了openssh-server,如果终端显示没有openssh-server,则使用

sudo apt-get install openssh-server

安装之。

2.启动服务

sudo /etc/init.d/ssh start

之后就可以使用了。

Mac下,可以在System Preference中进入Sharing,勾上Remote Login,就可以使用了。




你可能感兴趣的:(unix下的ssh基本配置)