This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 96adb1c9a3b8f9a110d3092f5a649591e5c3ddd4 (commit) from d41adcc8aaca56d5e8ae1b6658c9d72f2d3d1787 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 96adb1c9a3b8f9a110d3092f5a649591e5c3ddd4 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Wed Dec 8 18:53:34 2010 +0100
Enabled MTU field on all PPPx connections. Add MRU field.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/44/filelists/files | 2 ++ html/cgi-bin/pppsetup.cgi | 16 ++++++++++++++-- src/initscripts/init.d/networking/red | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/44/filelists/files b/config/rootfiles/core/44/filelists/files index c069ea0..de75056 100644 --- a/config/rootfiles/core/44/filelists/files +++ b/config/rootfiles/core/44/filelists/files @@ -4,6 +4,7 @@ etc/rc.d/init.d/checkfstab etc/rc.d/init.d/firewall etc/rc.d/init.d/squid etc/rc.d/init.d/networking/dhcpcd.exe +etc/rc.d/init.d/networking/red srv/web/ipfire/cgi-bin/extrahd.cgi srv/web/ipfire/cgi-bin/index.cgi srv/web/ipfire/cgi-bin/pakfire.cgi @@ -11,6 +12,7 @@ srv/web/ipfire/cgi-bin/proxy.cgi srv/web/ipfire/cgi-bin/speed.cgi srv/web/ipfire/cgi-bin/vpnmain.cgi srv/web/ipfire/cgi-bin/ids.cgi +srv/web/ipfire/cgi-bin/pppsetup.cgi srv/web/ipfire/html/images/urlfilter/copy.gif var/ipfire/general-functions.pl var/ipfire/graphs.pl diff --git a/html/cgi-bin/pppsetup.cgi b/html/cgi-bin/pppsetup.cgi index fc28e70..0bfeabd 100644 --- a/html/cgi-bin/pppsetup.cgi +++ b/html/cgi-bin/pppsetup.cgi @@ -773,14 +773,26 @@ print <<END <td colspan='2' width='50%'></td> <td width='25%'><input type='text' name='CONCENTRATORNAME' value='$pppsettings{'CONCENTRATORNAME'}' /></td> </tr> +END +; +} + +print <<END +<tr><td colspan='4' width='100%'><br></br></td></tr> +<tr> + <td bgcolor='$color{'color20'}' colspan='4' width='100%'><b>MTU/MRU</b></td> +</tr> +<tr> <tr> <td width='25%'>MTU</td> - <td colspan='2' width='50%'></td> <td width='25%'><input type='text' name='MTU' value='$pppsettings{'MTU'}' /></td> </tr> +<tr> + <td width='25%'>MRU</td> + <td width='25%'><input type='text' name='MRU' value='$pppsettings{'MRU'}' /></td> +</tr> END ; -}
print <<END <tr><td colspan='4' width='100%'><br></br></td></tr> diff --git a/src/initscripts/init.d/networking/red b/src/initscripts/init.d/networking/red index 1940169..f29884b 100644 --- a/src/initscripts/init.d/networking/red +++ b/src/initscripts/init.d/networking/red @@ -453,7 +453,7 @@ case "${1}" in # PPP_STD_OPTIONS="$PLUGOPTS $DNS defaultroute noipdefault noauth" PPP_STD_OPTIONS+=" default-asyncmap hide-password nodetach mtu ${MTU}" - PPP_STD_OPTIONS+=" mru ${MTU} noaccomp nodeflate nopcomp novj novjccomp" + PPP_STD_OPTIONS+=" mru ${MRU} noaccomp nodeflate nopcomp novj novjccomp" PPP_STD_OPTIONS+=" nobsdcomp user ${USERNAME} lcp-echo-interval 20" PPP_STD_OPTIONS+=" lcp-echo-failure 3 ${AUTH}"
hooks/post-receive -- IPFire 2.x development tree