Ubuntu SSH

要安裝 ssh server, 以下兩行指令都可以

# apt-get install ssh

# apt-get install openssh-server

安裝後可以修改一些 ssh 的設定, 如port, 密碼認證, root登入等

# vim /etc/ssh/sshd_config

Port 22

PasswordAuthentication yes

PermitRootLogin yes -> 是否開放 root 登入

更改完存檔後記得重啟服務

# /etc/init.d/ssh restart

來源:http://www.ewdna.com/2012/06/ubuntu-ssh-server.html

發佈留言