Commit Graph

4363 Commits

Author SHA1 Message Date
brian
6af6c8a059 Nuke any remaining auth timers when datalinks come back down
to DATALINK_LCP.
1999-02-17 02:11:28 +00:00
jkh
b0e0d556a3 Be more forgiving of PnP config saving failures. 1999-02-16 01:58:04 +00:00
brian
5e1d9ef90f Wait by default for one second after the login script
is complete before checking carrier.  If it's there,
the device supports carrier.  If it's not it doesn't.

Add the ``set cd'' command for deciding how soon to check
for carrier, and for deciding if carrier is REQUIRED.

The default has changed:  Pre 2.0 versions of ppp waited
for 1 second.  Version 2 didn't wait, but this causes
problems with some (few?) modems that don't assert carrier
immediately on reporting CONNECT.  The one second delay
is back now and can be removed with ``set cd 0''.

Bump the ppp version number in case this needs to be changed
again....
1999-02-16 00:16:56 +00:00
jkh
714eb80137 Update to deal with pnp userconfig data.
Submitted by:	abial
1999-02-15 07:07:37 +00:00
jkh
7b9b33664a Add entry for gnome category. 1999-02-15 04:57:07 +00:00
jkh
e73871aa31 Write out new boot blocks on upgrade. 1999-02-15 02:22:47 +00:00
jkh
98443a91bd Unbreak the fixit floppy.
Clean up some of the media handling to use common routines.
1999-02-15 00:49:33 +00:00
obrien
132de02272 Cosmetic reformating. 1999-02-14 22:04:09 +00:00
jkh
7561b0c8db Put a convenient marker in rc.conf to show updates.
Better screen saver descriptions.
1999-02-14 21:35:02 +00:00
jkh
9783bd5729 Fix incorrect initial state for two variables. 1999-02-14 21:26:29 +00:00
jkh
3041913b7e Include all the recent screen savers. 1999-02-14 20:14:07 +00:00
jkh
05a05db279 Look in correct rc.conf file.
Submitted by:	Kevin Street <street@iname.com
1999-02-14 20:06:02 +00:00
jkh
77bebb0662 Update to match ports reality. 1999-02-14 18:53:17 +00:00
nsouch
b8bc2271c6 Add -e option and change unit to device access in lptcontrol.8
Change unit to device access in lptcontrol.c. Now usage is

lptcontrol -i | -p | -e [-d /dev/lpt?]
1999-02-14 12:23:49 +00:00
brian
4abc74f992 Describe manual dialing in greater detail.
Mention more rfc numbers.
Don't ``.Nm Ppp'' (just use ``.Nm'').
1999-02-14 12:16:41 +00:00
jkh
6b435ea365 rc.conf vars no longer "dirty" by default. 1999-02-14 07:35:27 +00:00
jkh
edf15b3b92 Preserve existing rc.conf contents. 1999-02-14 05:52:57 +00:00
kuriyama
bfe98fb56d Add "beep" subcommand.
Obtained from:	PAO3
Reviewed by:	-current list
1999-02-13 11:32:01 +00:00
obrien
0e160ce6d9 Fix ufs mounting support
PR:		10044
Submitted by:	Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
1999-02-13 11:06:20 +00:00
jkh
593d46e118 Update to current state of /etc 1999-02-13 05:18:06 +00:00
alex
52e14d9a01 Removed occurrences of consecutive repeated words (such as "the the"). 1999-02-12 02:12:08 +00:00
brian
d856db05ba When executing a command as part of a dial/login/hangup
script, expand words in the same way as !bg does.
1999-02-12 00:52:30 +00:00
jkh
73d4043349 Allow both old and new rc.conf syntax. 1999-02-12 00:17:12 +00:00
brian
020afa6383 /etc/ppp/ppp.*.sample -> /usr/share/examples/ppp/ppp.*.sample 1999-02-11 16:34:15 +00:00
jkh
76b381a4c7 Add spanish mirrors to FTP menu. 1999-02-11 14:42:39 +00:00
brian
c9c7e9f88b When resending chap challenges, resend the same challenge
each time rather than making up a new one.

Increase the authname/authkey max sizes to 100 characters.

Allow ``authkey'' specifications beginning with ``!''.
When a challenge is received, the text following the
``!'' is executed as a program (expanding stuff in the same
way that ``sh'' and ``!bg'' do).  The program is passed the
peer name, peer challenge and local ``authname'' on standard
input and is expected to output the name/key combination that
should be used to build the CHAP response.

This provides support for Secure ID cards (guess what I was
given at work recently!) using CHAP.

Examples will follow.
1999-02-11 10:14:08 +00:00
wpaul
6009666a7d The ypbind_setdom_2 procedure returns NULL in the success case. This is
incorrect; returning NULL here means that the dispatcher won't send any
response back to the caller, which means the caller will sit there waiting
until it times out. I don't know how this ever worked before. The effect
is that using 'ypset foo' to get the local ypbind to change servers would
work, but would sit there hanging for a long time for no reason.
1999-02-10 20:04:22 +00:00
wpaul
f2f09d31c0 Add some tweaks to hopefully fix a problem I've started to notice recently.
Under certain conditions (possibly associated with heavy load), ypserv will
fork() child processes that don't exit like they're supposed to. I think
this is because of some suspect logic in the ypproc_all procedure. I updated
it to use what I hope is a more bulletproof approach.

Also tweaked yp_svc_run() a little so that the 'are we a child?' test happens
at every pass through the for(;;) loop, not just immediately after returning
from svc_getreqset2().
1999-02-10 16:16:14 +00:00
jkh
bf919900eb Write changes out to /etc/rc.conf again; rc.conf.site is dead! 1999-02-09 22:18:10 +00:00
wosch
8e7edf802b Added myself as maintainer. 1999-02-09 17:23:03 +00:00
abial
b9094f5deb Patch to make mrouted more friendly with crunchgen.
Reviewed by:	fenner, wollman
Submitted by:	luigi
1999-02-08 21:48:31 +00:00
des
30e1d1ca5e Don't assume a_name is a number just because the first character
is a digit.

PR:		bin/9484
Submitted by:	Matthew D. Fuller <fullermd@futuresouth.com>
1999-02-08 21:26:44 +00:00
wollman
09cede07f4 Fix mismerged error message.
Submitted by:	charnier
1999-02-08 16:52:42 +00:00
brian
b169c55004 Correct server-side chap authentication comparison
(broken with last commit).
1999-02-07 13:56:29 +00:00
brian
6fa2c31404 Remove forgotten diagnostics 1999-02-07 13:48:38 +00:00
jkh
b41482ca3f If user selects X, also auto-select compat22 (for now). 1999-02-07 12:57:04 +00:00
jkh
06254acc34 SMAILCF distro no longer exists. 1999-02-07 12:43:14 +00:00
peter
404866e866 MaxHeaderLines is now MaxHeadersLength (in bytes) 1999-02-07 09:48:52 +00:00
jkh
0808edd75d Reshuffle a number of menus to be more navigable. Delete extra
Root Password entry (PR#9291 - Jack O'Neill).
1999-02-06 16:35:26 +00:00
jhay
ca80ccd10b Teach IPXrouted to handle the internal net properly.
PR:		9871
Submitted by:	Boris Popov <bp@butya.kz>
1999-02-06 10:52:21 +00:00
jkh
6cfb807777 Ack! Correct a typo which crept into here and reshuffle the index back
into alphabetical order.
1999-02-06 08:45:20 +00:00
brian
c38dea91ec Decouple pap & chap output routines from the corresponding
input routines and take advantage of the new init/continue
interface in libradius.  This allows a timely response on
other links in an MP setup while RADIUS requests are in
progress as well as the ability to handle other data from
the peer in parallel.  It should also make the future addition
of PAM support trivial.

While I'm in there, validate pap & chap header IDs if
``idcheck'' is enabled (the default) for other FSM packet
types.

NOTE: This involved integrating the generation of chap
      challenges and the validation of chap responses
      (and commenting what's going on in those routines).
      I currently have no way of testing ppps ability
      to respond to M$Chap CHALLENGEs correctly, so if
      someone could do the honours, it'd be much
      appreciated (it *looks* ok!).

Sponsored by: Internet Business Solutions Ltd., Switzerland
1999-02-06 02:54:47 +00:00
jkh
90adaf7290 Add one more "escape" for marking internal variables. 1999-02-05 22:25:13 +00:00
jkh
28cf43f876 Totally change the way variables are accounted for in sysinstall.
Now we know which variables are internal and which need to be
backed to /etc/rc.conf.site.  rc.conf is not touched now.

Also kget kernel change information back properly and set up a loader.rc
file to use it.
1999-02-05 22:15:52 +00:00
bde
f506937c2e Oops, really don't generate compiler warnings about missing braces. 1999-02-05 16:58:22 +00:00
bde
f4cc747d4b Don't generate compiler warnings about missing braces. 1999-02-05 16:49:18 +00:00
kuriyama
46c7707481 Use O_RDONLY and O_RDWR for open() instead of number.
Encouraged by:	Nate
1999-02-05 16:00:17 +00:00
kuriyama
6bd1627515 s/card.conf/pccard.conf/ 1999-02-05 15:59:57 +00:00
jkh
4b640cd3fc Update snapshot build machine names. 1999-02-05 09:54:59 +00:00
jkh
e25e864bcf Indicate that we're using XFree86 3.3.3.1 1999-02-05 09:28:16 +00:00