我想将每个.org
包含名称的主机名(如example.org
,example2.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