1
tarsier 2013-05-28 10:43:30 +08:00 2
安卓如果root了,可以使用iptables来完成
iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to-destination 192.168.42.1 |
3
tarsier 2013-05-28 11:45:05 +08:00 1
@ccbikai 再删除这条iptables规则呗(-A表示append, -D表示delete)
iptables -t nat -D PREROUTING -p tcp --dport 80 -j DNAT --to-destination 192.168.42.1 |
7
ccbikai OP |
8
ccbikai OP |
9
tarsier 2013-05-28 14:09:37 +08:00
@ccbikai 搜了下,你试试这个解决办法 http://stackoverflow.com/questions/10331699/getprotobyname-error-iptables
iptables -A INPUT -p 6 替代 iptables -A INPUT -p tcp |
10
tarsier 2013-05-28 14:12:18 +08:00
|
18
tarsier 2013-05-28 21:46:23 +08:00
@ccbikai
把上面的命令换成这个试试: iptables -t nat -A PREROUTING -s xxxx/xx(你的共享wifi所在的网段) -p tcp --dport 80 -j REDIRECT --to-ports 80 |
19
tarsier 2013-05-28 21:46:57 +08:00
xxxx/xx 是 类似 192.168.1.0/24 这种格式的ip段
|