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 | 66c928d06372953c0d4edf3d5bdbb80c38efc15c (patch) | |
tree | 00aee3dc6656d973cb9940215bde346f4c996185 /package/ppp | |
parent | 39c62b54db169f4c2212dc0068198155dc10dcb8 (diff) | |
download | upstream-66c928d06372953c0d4edf3d5bdbb80c38efc15c.tar.gz upstream-66c928d06372953c0d4edf3d5bdbb80c38efc15c.tar.bz2 upstream-66c928d06372953c0d4edf3d5bdbb80c38efc15c.zip |
fix ifname in network state for pppoe and pptp, add a workaround for isps sending wrong netmasks for pptp (thx, moonwatcher)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8552 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ppp')
-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" \ |