diff options
author | brian <brian@FreeBSD.org> | 1997-09-07 01:00:06 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-09-07 01:00:06 +0000 |
commit | f35ea9c6617f74e76d18d6c40dba23462881e9f9 (patch) | |
tree | f12fdd2c5aa9addbea8a94eecdd0ced328f0c5b5 /usr.sbin | |
parent | a393c207007c203df6433747ca5f93178a5485de (diff) | |
download | FreeBSD-src-f35ea9c6617f74e76d18d6c40dba23462881e9f9.zip FreeBSD-src-f35ea9c6617f74e76d18d6c40dba23462881e9f9.tar.gz |
Disable LQR by default. It causes too many problems
with too many ISPs to be a good default. LQR is still
accepted by default.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ppp/ppp.8 | 4 | ||||
-rw-r--r-- | usr.sbin/ppp/ppp.8.m4 | 4 | ||||
-rw-r--r-- | usr.sbin/ppp/vars.c | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/ppp/ppp.8 b/usr.sbin/ppp/ppp.8 index d4b9810..f812093 100644 --- a/usr.sbin/ppp/ppp.8 +++ b/usr.sbin/ppp/ppp.8 @@ -1,4 +1,4 @@ -.\" $Id: ppp.8,v 1.60 1997/08/31 20:07:03 brian Exp $ +.\" $Id: ppp.8,v 1.61 1997/09/04 00:38:20 brian Exp $ .Dd 20 September 1995 .Os FreeBSD .Dt PPP 8 @@ -1388,7 +1388,7 @@ Default: Enabled and Accepted. This option decides if Van Jacobson header compression will be used. .It lqr -Default: Enabled and Accepted. This option decides if Link Quality +Default: Disabled and Accepted. This option decides if Link Quality Requests will be sent. LQR is a protocol that allows .Nm to determine that the link is down without relying on the modems diff --git a/usr.sbin/ppp/ppp.8.m4 b/usr.sbin/ppp/ppp.8.m4 index d4b9810..f812093 100644 --- a/usr.sbin/ppp/ppp.8.m4 +++ b/usr.sbin/ppp/ppp.8.m4 @@ -1,4 +1,4 @@ -.\" $Id: ppp.8,v 1.60 1997/08/31 20:07:03 brian Exp $ +.\" $Id: ppp.8,v 1.61 1997/09/04 00:38:20 brian Exp $ .Dd 20 September 1995 .Os FreeBSD .Dt PPP 8 @@ -1388,7 +1388,7 @@ Default: Enabled and Accepted. This option decides if Van Jacobson header compression will be used. .It lqr -Default: Enabled and Accepted. This option decides if Link Quality +Default: Disabled and Accepted. This option decides if Link Quality Requests will be sent. LQR is a protocol that allows .Nm to determine that the link is down without relying on the modems diff --git a/usr.sbin/ppp/vars.c b/usr.sbin/ppp/vars.c index cda8fb442..60bfeeb 100644 --- a/usr.sbin/ppp/vars.c +++ b/usr.sbin/ppp/vars.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: vars.c,v 1.25 1997/08/25 00:29:31 brian Exp $ + * $Id: vars.c,v 1.26 1997/09/04 00:38:21 brian Exp $ * */ #include "fsm.h" @@ -30,14 +30,14 @@ #include "defs.h" char VarVersion[] = "PPP Version 1.1"; -char VarLocalVersion[] = "$Date: 1997/08/25 00:29:31 $"; +char VarLocalVersion[] = "$Date: 1997/09/04 00:38:21 $"; /* * Order of conf option is important. See vars.h. */ struct confdesc pppConfs[] = { {"vjcomp", CONF_ENABLE, CONF_ACCEPT}, - {"lqr", CONF_ENABLE, CONF_ACCEPT}, + {"lqr", CONF_DISABLE, CONF_ACCEPT}, {"chap", CONF_DISABLE, CONF_ACCEPT}, {"pap", CONF_DISABLE, CONF_ACCEPT}, {"acfcomp", CONF_ENABLE, CONF_ACCEPT}, |