使用 iptables 将匹配字符串主机名重定向到 IP 地址

使用 iptables 将匹配字符串主机名重定向到 IP 地址

我想将每个.org包含名称的主机名(如example.orgexample2.org)重定向notexample.org到 IP 地址(例如 127.0.0.1)

我尝试使用此命令

iptables -t nat -A OUTPUT -m string --algo bm --string ".org" -j DNAT --to-destination 127.0.0.1

但它不起作用
如何解决?

编辑:我发现了另一个解决方案,但它仅用于将主机名重定向到 ip 地址,而不是将匹配的字符串重定向到 ip 地址

命令如下:

iptables -t nat -A OUTPUT -d example.org -j DNAT --to-destination 127.0.0.1 

相关内容