请告诉我一种设置 Windows 7 机器以仅使用一个应用程序(Internet Explorer)从另一台机器远程访问的方法 - 类似于 TS RemoteApp,据我了解,它仅适用于 Windows Server 平台......
我有一个这样的 iptables 规则:
iptables -t nat -I PREROUTING -p tcp --dport 80 -s 192.168.1.2 -j DNAT --to-destination 192.168.1.1:80
它工作得很好..但我只想重定向这样的一个 URL:
iptables -t nat -I PREROUTING -p tcp --dport 80 -s 192.168.1.2 -m string --string "google.com" -j DNAT --to-destination 192.168.1.1:80
这在任何方面都不起作用......请帮我解决这个问题