iptables只允许指定ip访问
时间: 2023-07-29 14:11:20 浏览: 76
可以使用iptables来限制只允许指定IP访问。以下是一个例子,只允许IP地址为192.168.1.100的主机访问本地的TCP端口80:
```
iptables -A INPUT -p tcp --dport 80 -s 192.168.1.100 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP
```
第一条规则允许IP地址为192.168.1.100的主机访问TCP端口80,第二条规则禁止所有其他IP地址访问TCP端口80。你可以根据需要修改这些规则。
相关问题
iptables只允许指定网段ip访问
可以使用 iptables 规则限制指定网段的 IP 地址访问。示例如下:
```
iptables -A INPUT -s 192.168.0.0/24 -j ACCEPT
iptables -A INPUT -j DROP
```
第一行允许来自 192.168.0.0/24 网段的 IP 地址访问。第二行拒绝其他所有 IP 地址的访问。
注意:此规则应在其他规则之前执行,以确保其生效。
linux允许指定ip访问
Yes, Linux allows you to specify which IP addresses are allowed or denied access. You can configure this using iptables or other firewall tools. Do you have any more questions on this topic?
阅读全文