Linux
iptables 無法載入目標“SSH”
我有一個小問題
iptables
。我試圖使這個命令工作,但它給了我一個錯誤。我需要一些幫助,謝謝。$ sudo iptables -A INPUT -p tcp --dport 22000 -m state --state NEW -j SSH iptables v1.6.1: Couldn't load target `SSH':No such file or directory Try `iptables -h' or 'iptables --help' for more information.
該規則是為了允許訪問執行在 22000/tcp 埠的 ssh 服務。稍後我將添加此命令以允許從這台電腦訪問:
$ sudo iptables -A SSH -s 19.168.10.201 -j ACCEPT
問題是我忘了先創建鏈。我用以下命令修復了它:
$ sudo iptables -N SSH
感謝穆魯!