安裝 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
訂閱:
張貼留言 (Atom)
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...
-
C(和C++)中的巨集(Macro)屬於編譯器預處理的範疇。 下面對常遇到的巨集的使用問題做了簡單總結。 單井號(#)和雙井號(##) (#)的功能是將其後面的巨集引數進行字串化操作(Stringfication): #define WARN_IF(EXP) / ...
-
$ dmesg | grep tty [ 0.000000] console [tty0] enabled [ 12.903931] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550...
-
dmesg是用來讀取開機時Kernel顯示的硬體資訊,紀錄一下常用的使用方式。 (開機訊息亦保存在/var/log目錄中,名稱為dmesg的文件) # dmesg | more 分頁顯示所有資訊 # dmesg -c 清除 dmesg buffer # dmes...
沒有留言:
張貼留言