diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 16:53:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 16:53:22 +0000 |
commit | 52a138a9531aa82117216443ca1f346974e3a58e (patch) | |
tree | 8fbb48b1f4a80441d9eca6c4d17bf52bb63bc2cb /package/ppp/files/pppoe.sh | |
parent | 655027891294c054d43d554788f01c40f742ab11 (diff) | |
download | upstream-52a138a9531aa82117216443ca1f346974e3a58e.tar.gz upstream-52a138a9531aa82117216443ca1f346974e3a58e.tar.bz2 upstream-52a138a9531aa82117216443ca1f346974e3a58e.zip |
fix ifname in network state for pppoe and pptp, add a workaround for isps sending wrong netmasks for pptp (thx, moonwatcher)
SVN-Revision: 8552
Diffstat (limited to 'package/ppp/files/pppoe.sh')
-rw-r--r-- | package/ppp/files/pppoe.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/ppp/files/pppoe.sh b/package/ppp/files/pppoe.sh index 86bddddf59..ba6a8768da 100644 --- a/package/ppp/files/pppoe.sh +++ b/package/ppp/files/pppoe.sh @@ -12,6 +12,11 @@ setup_interface_pppoe() { /sbin/insmod $module 2>&- >&- done + # make sure the network state references the correct ifname + scan_ppp "$config" + config_get ifname "$config" ifname + uci set "/var/state/network.$config.ifname=$ifname" + config_get mtu "$cfg" mtu mtu=${mtu:-1492} start_pppd "$config" \ |