2016年7月12日 星期二

Ubuntu Install SSH-Server

安裝 openssh-server

# sudo apt-get install openssh-server


檢查是否有執行 ssh-server

# ps aux | grep ssh


修改 ssh_config

sudo nano /etc/ssh/sshd_config

#PermitRootLogin Yes
PermitRootLogin no

# What ports, IPs and protocols we listen for
Port 22

( # sudo less /etc/services 查詢使用狀態 )


限制IP登入

sudo nano /etc/hosts.allow
最下方加入
sshd:xxx.xxx.xxx.xxx :allow


拒絕所有IP登入

sudo gedit /etc/hosts.deny
加入
sshd:all:deny


重新啟動

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

沒有留言:

張貼留言

Uninstalling HEVC Video Extensions from Windows

Microsoft store packages are usually APPX format installations (HEVC Video Extensions is installed as APPX package) You will need to use Pow...