Kali Linux

Kali Linux中怎么配置防火墙

小亿
307
2024-03-27 13:33:32
栏目: 智能运维

在Kali Linux中,你可以使用iptables命令来配置防火墙。以下是一些基本的iptables命令示例:

  1. 允许所有的入站流量,拒绝所有的出站流量:
iptables -P INPUT ACCEPT
iptables -P OUTPUT DROP
  1. 允许特定端口的入站流量:
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
  1. 允许特定IP地址的入站流量:
iptables -A INPUT -s 192.168.1.100 -j ACCEPT
  1. 允许特定子网的入站流量:
iptables -A INPUT -s 192.168.1.0/24 -j ACCEPT
  1. 允许已建立的连接通过:
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
  1. 拒绝所有入站流量:
iptables -P INPUT DROP
  1. 保存配置:
iptables-save > /etc/iptables/rules.v4

这些是一些基本的iptables命令示例,你可以根据需要来配置更复杂的防火墙规则。请确保在做任何更改之前备份现有的防火墙规则。

0
看了该问题的人还看了