26 lines
862 B
Bash
26 lines
862 B
Bash
#!/system/bin/sh
|
|
case $1 in
|
|
ppp1)
|
|
/android/bin/iptables --flush;
|
|
/android/bin/iptables --table nat --flush;
|
|
/android/bin/iptables --delete-chain;
|
|
/android/bin/iptables --table nat --append POSTROUTING --out-interface ppp0 -j MASQUERADE;
|
|
/android/bin/iptables --append FORWARD --in-interface ppp1 -j ACCEPT;
|
|
echo 0 > /proc/sys/net/ipv4/ip_forward;
|
|
echo 1 > /proc/sys/net/ipv4/ip_forward;
|
|
;;
|
|
ppp0)
|
|
/system/bin/setprop "net.interfaces.defaultroute" "gprs"
|
|
;;
|
|
esac
|
|
|
|
# Use interface name if linkname is not available
|
|
NAME=${LINKNAME:-"$1"}
|
|
|
|
/system/bin/setprop "net.$NAME.dns1" "$DNS1"
|
|
/system/bin/setprop "net.$NAME.dns2" "$DNS2"
|
|
/system/bin/setprop "net.$NAME.local-ip" "$IPLOCAL"
|
|
/system/bin/setprop "net.$NAME.remote-ip" "$IPREMOTE"
|
|
/system/bin/setprop "net.$NAME.gw" "$IPREMOTE"
|
|
/system/bin/setprop "net.$NAME.mask" "$NETMASK"
|