diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-30 16:53:22 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-08-30 16:53:22 +0000 |
commit | 866696c182185ed17346d2d59e2c18020f729224 (patch) | |
tree | 00aee3dc6656d973cb9940215bde346f4c996185 /package/ppp/files | |
parent | d4bd7c7998548d68b21283d661f3aff54b4a658f (diff) |
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/files')
-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" \ |