You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
409 B
16 lines
409 B
#!/system/bin/sh
|
|
case $1 in
|
|
ppp1)
|
|
echo 0 > /proc/sys/net/ipv4/ip_forward;
|
|
;;
|
|
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"
|