mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-23 10:01:06 +02:00
b62840e4e7
- don't let pppd control resolv.conf.auto because it will wipe foreign dns entries - handle dns setup in ip-up handler - use add_dns() and remove_dns() to only add/remove dns entries related to the corresponding pppd instance - make pppd shutdown work for interfaces without ifname option, e.g. pptp git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21392 3c298f89-4303-0410-b956-a3cf2f4a3e73
31 lines
789 B
Bash
Executable File
31 lines
789 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /etc/functions.sh
|
|
. /lib/network/config.sh
|
|
|
|
PPP_IFACE="$1"
|
|
PPP_TTY="$2"
|
|
PPP_SPEED="$3"
|
|
PPP_LOCAL="$4"
|
|
PPP_REMOTE="$5"
|
|
PPP_IPPARAM="$(echo $6 | sed 's/\./_/g')"
|
|
|
|
export PPP_IFACE PPP_TTY PPP_SPEED PPP_LOCAL PPP_REMOTE PPP_IPPARAM
|
|
[ -z "$PPP_IPPARAM" -o -z "$PPP_LOCAL" ] || {
|
|
uci_set_state network "$PPP_IPPARAM" ifname "$PPP_IFACE"
|
|
uci_set_state network "$PPP_IPPARAM" ipaddr "$PPP_LOCAL"
|
|
uci_set_state network "$PPP_IPPARAM" gateway "$PPP_REMOTE"
|
|
|
|
local dns="$DNS1${DNS2:+ $DNS2}"
|
|
[ -n "$dns" ] && add_dns "$PPP_IPPARAM" $dns
|
|
}
|
|
|
|
[ -z "$PPP_IPPARAM" ] || env -i ACTION="ifup" INTERFACE="$PPP_IPPARAM" DEVICE="$PPP_IFACE" PROTO=ppp /sbin/hotplug-call "iface"
|
|
|
|
[ -d /etc/ppp/ip-up.d ] && {
|
|
for SCRIPT in /etc/ppp/ip-up.d/*
|
|
do
|
|
[ -x "$SCRIPT" ] && "$SCRIPT" "$@"
|
|
done
|
|
}
|