这是一个创建于 1729 天前的主题,其中的信息可能已经有所发展或是发生改变。
系统版本:Android6
环境:以太网口默认 wan 功能(添加路由可让 wan 接口变成 lan 接口)
系统调试权限:adb / root
我需要把设备的 4G 流量共享给以太网卡,让其他设备连网线上网,前期经过添加路由+iptables 转发 无法成功
故请教下各位大佬下一步该如何操作
调试脚本:
#!/system/bin/sh
#取 4G 网卡名字
ppp_0=$(ifconfig|sed -n "20p");
#echo $ppp_0;
ppp_0=${ppp_0:0:4};
svc wifi disable //前面开启了 wifi,然后 adb 连接进去后,执行该脚本,关闭 wifi,设备会跳到 4G 拨号
echo 0 > /proc/sys/net/ipv4/ip_forward
busybox ifconfig eth0 up
busybox ifconfig eth0 192.168.33.100 netmask 255.255.255.0
/system/bin/iptables -t nat -A natctrl_nat_POSTROUTING -o $ppp_0 -j MASQUERADE
/system/bin/iptables -A natctrl_FORWARD -i $ppp_0 -o eth0 -m state --state ESTABLISHED,RELATED -g natctrl_tether_counters
/system/bin/iptables -A natctrl_FORWARD -i eth0 -o $ppp_0 -m state --state INVALID -j DROP
/system/bin/iptables -A natctrl_FORWARD -i eth0 -o $ppp_0 -g natctrl_tether_counters
/system/bin/iptables -A natctrl_tether_counters -i eth0 -o $ppp_0 -j RETURN
/system/bin/iptables -A natctrl_tether_counters -i $ppp_0 -o eth0 -j RETURN
/system/bin/iptables -D natctrl_FORWARD -j DROP
/system/bin/iptables -A natctrl_FORWARD -j DROP
ip route add 192.168.33.0/24 dev eth0 table local_network proto static scope link
echo 1 > /proc/sys/net/ipv4/ip_forward