Linux防火牆iptables實用設定
維護一個伺服器其中重要的一步就是管理好埠的開放與關閉,以避免因為服務一直執行著,而外部惡意攻擊利用這些服務所佔用的埠。
首先是能夠檢視iptables的情況:
sudo iptables -L
會列出每一條規則,標有ACCEPT的規則是指這條規則指示的通訊可以成功,標有DROP的規則是指阻斷所表示的通訊。要注意,在系統執行中,會從開始到結束一條一條去匹配規則,所以最後一條規則是DROP,表示結束,而中間不能有DROP,否則其後的ACCEPT會不起作用。
新增規則:
# iptables -A INPUT -p tcp -i eth0 --dport ssh -j ACCEPT
-A表示追加,-p tcp表示tcp協議,-i eth0表示網路卡,--dport ssh表示埠ssh(也就是22),-j ACCEPT表示這條規則是ACCEPT。如果我們想開放9001埠,就把ssh換成9001.
刪除規則:
# iptables -D INPUT 3
3是指第三條規則,就是上面用iptables -L列出的表中,第一行就是第一條規則。
我們最後一條是DROP,所以要阻斷通訊:
# iptables -A INPUT -j DROP
相關文章
- Linux設定防火牆iptablesLinux防火牆
- 防火牆iptables 設定防火牆
- Centos iptables防火牆設定CentOS防火牆
- linux防火牆iptablesLinux防火牆
- Iptables防火牆應用防火牆
- iptables 配置LINUX防火牆Linux防火牆
- rehdat 5.3 iptables 的防火牆設定說明防火牆
- 防火牆IPTABLES防火牆
- iptables防火牆防火牆
- Linux 防火牆 學習 iptablesLinux防火牆
- 超級實用的 iptables 防火牆指令碼防火牆指令碼
- Linux基礎命令---iptables防火牆Linux防火牆
- iptables實用知識 ,一文學會配置linux防火牆Linux防火牆
- 用一臺linux主機做iptables防火牆薦Linux防火牆
- Linux 防火牆開放特定埠 (iptables)Linux防火牆
- Linux 自帶防火牆 Iptables 基本配置Linux防火牆
- 使用iptables建置Linux 防火牆(2)(轉)Linux防火牆
- 使用iptables建置Linux 防火牆(3)(轉)Linux防火牆
- iptables防火牆規則防火牆
- 動態iptables 防火牆防火牆
- iptables配置-Linux系統安全防火牆Linux防火牆
- Linux IPTables:如何新增防火牆規則Linux防火牆
- Linux中iptables防火牆的簡單配置Linux防火牆
- Linux防火牆之IPtables概念與用法(轉)Linux防火牆
- 伺服器安全設定Centos7 防火牆firewall與iptables伺服器CentOS防火牆
- 基於iptables防火牆堵漏防火牆
- 動態 iptables 防火牆(轉)防火牆
- NAT iptables防火牆(script)(轉)防火牆
- CentOS防火牆設定CentOS防火牆
- 雲伺服器需要防火牆嗎?防火牆如何啟用設定?伺服器防火牆
- Linux系統iptables與Firewalld防火牆區別?Linux防火牆
- Linux 防火牆配置(iptables和firewalld)詳細教程。Linux防火牆
- Iptables防火牆規則使用梳理防火牆
- 動態iptables防火牆dynfw(轉)防火牆
- CentOS 7 防火牆設定CentOS防火牆
- Oracle穿越防火牆設定Oracle防火牆
- Linux 防火牆:關於 iptables 和 firewalld 的那些事Linux防火牆
- Linux防火牆介紹和iptables常用命令Linux防火牆