我尝试使用 netsh 命令通过防火墙阻止 URL,但没有成功。以下是我阻止 IP 的方法:
netsh advfirewall firewall add rule name="Block URL" remoteip=<ip_to_block> dir=out enable=yes action=block
用 URL 替换 IP 不起作用
答案1
您需要解析 URL 的 IP。
您可以使用nslookup执行此操作或其他一些 IP 解析器。
例子
netsh advfirewall firewall add rule name="Block URL" remoteip=<194.25.95.137> dir=out enable=yes action=block
和
netsh advfirewall firewall add rule name="Block URL" remoteip=<194.25.95.131> dir=out enable=yes action=block
您还可以使用诸如此类的网站来解析 URL 的 IP。