Ubuntu 命令行允许我处理特定网站并阻止所有其他 IP

Ubuntu 命令行允许我处理特定网站并阻止所有其他 IP

有人能想出一个 Ubuntu 命令行,让我能够处理特定站点并阻止所有其他 IP,最好使用 ufw,如果不行的话,使用 iptables?

答案1

在我写这篇文章的时候,还不清楚你在找什么(而且说你从事网上银行也没什么帮助),但我的猜测是:你是不是在寻找一种方法来配置防火墙,以便它只允许一个特定 IP 地址的流量,并阻止其他所有流量?如果是这样,以下是执行此操作的 IPtables 命令:

iptables -I INPUT 0 --src ! xxx.xxx.xxx.xxx -j DROP
iptables -I OUTPUT 0 --dst ! xxx.xxx.xxx.xxx -j DROP

然后重置它(假设您在此期间没有对防火墙进行任何其他更改):

iptables -D INPUT 0
iptables -D OUTPUT 0

相关内容