|
修改了ip rule 和iptables 的几条规则之后,就不能上网了???
发表于 2017-10-9 20:02:53
浏览:7080
|
回复:1
打印
只看该作者
[复制链接]
楼主
本帖最后由 charlson 于 2017-10-9 20:15 编辑
修改了如下规则, 目的是为了有线网卡和无线网卡能够互相ping通。 在ubuntu上验证是可以的。
ip rule del from all pref 0 lookup local
ip rule add from all pref 100 lookup local
iptables -t mangle -s 192.168.0.0/24 -A OUTPUT -j MARK --set-mark 1
iptables -t mangle -s 192.168.43.0/24 -A OUTPUT -j MARK --set-mark 1
ip rule add fwmark 1 pref 10 lookup 100
结果改完之后就无法ping通192.168.0.1, 更无法上外网了。 有大神知道是什么原因吗?
查了一下这块板子里面iptables 的规则,和安卓手机里面有很多不同, 不能确定到底是什么规则有冲突。
|
|