From a0525c29028ef599fddb31e96cc4b0835008a5d2 Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 10 Aug 2005 23:27:28 +0000 Subject: [PATCH] Make MTU default to 1492 when ppp_mtu nvram variable is not set git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1606 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/ppp/files/ifup.pppoe | 1 + 1 file changed, 1 insertion(+) diff --git a/openwrt/package/ppp/files/ifup.pppoe b/openwrt/package/ppp/files/ifup.pppoe index 94179a3eaa..dbf58c380f 100644 --- a/openwrt/package/ppp/files/ifup.pppoe +++ b/openwrt/package/ppp/files/ifup.pppoe @@ -23,6 +23,7 @@ while :; do IDLETIME=$(nvram get ppp_idletime) IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME} MTU=$(nvram get ppp_mtu) + MTU=${MTU:-1492} MTU=${MTU:+ mtu $MTU mru $MTU} ifconfig $IFNAME up -- 2.30.2