summaryrefslogtreecommitdiff
path: root/usr.sbin/ppp
AgeCommit message (Collapse)Author
2005-07-19remove trailing whitespace;Jason McIntyre
2005-07-19rev 1.7Brad Smith
Correct the FAQ url From brian FreeBSD
2005-07-18Add a ``force-scripts'' option for using chat scripts with -direct andBrad Smith
-dedicated links. From brian FreeBSD
2005-07-17another malloc() check.Brad Smith
From brian FreeBSD
2005-07-17don't call adjust_linklocal() since this function does not do anything.Brad Smith
this was part of a really big cleanup commit. From brian FreeBSD
2005-07-17Replace various spelling with FALLTHROUGH which is lint()ableBrad Smith
From charnier FreeBSD
2005-07-17rev 1.55Brad Smith
Report the number of bytes not written when complaining about failed writes From brian FreeBSD
2005-07-17rev 1.52Brad Smith
Show the port number (tty slot, pppoe session id etc) under ``show physical''. From brian FreeBSD
2005-07-17Include the correct file (stdarg.h) and use va_list rather than _BSD_VA_LIST_Brad Smith
From brian FreeBSD
2005-07-17rev 1.91Brad Smith
We need filling scopeid to install routes for link-local scope addresses. From ume FreeBSD
2005-07-17Implement an ``enable/disable echo'' option, defaults to off.Brad Smith
This allows LCP ECHOs to be enabled independently of LQR reports. Note: This introduces a change in the default behaviour (search for lqr and echo in the man page). From brian FreeBSD
2005-07-12rev 1.305Brad Smith
Use the correct length when copying trailing data!! From brian FreeBSD
2005-07-12rev 1.298Brad Smith
Fix ``set ifaddr''. The code was actually using an uninitialised variable, but conveniently, because ncpaddr.ncpaddr_family != AF_INET, the call to ncpaddr_getip4addr() became a no-op leaving the local address as it was (defaulting to whatever my hostname resolves to). From brian FreeBSD
2005-07-12rev 1.45Brad Smith
Add a missing memcpy From brian FreeBSD
2005-07-12rev 1.117Brad Smith
If the peer gives us 0.0.0.0 as his IP number, NAK it rather than accepting it as being in range. set ifaddr 1.2.3.4/0 5.6.7.8/0 no longer allows 0.0.0.0 as a valid IP. From brian FreeBSD
2005-07-12- support ipv6cpretry and ipv6cpretries, which are IPv6 versionsBrad Smith
of ipcpretry and ipcpretries. - improve handling of IPv6 link-local addresses From brian FreeBSD
2005-07-12rev 1.14Brad Smith
Though manpage says that 0.0.0.0 can be used as HISADDR for gw in Framed-Route, it didn't work. Since ncprange_aton() treats 0.0.0.0 and :: as prefixlen=0, we need to care the case. From ume FreeBSD
2005-07-11rev 1.12Brad Smith
When session is over, IPv6 default route to tun should be removed, too. From ume FreeBSD
2005-07-11rev 1.30Brad Smith
If IPCP is disabled, susccess of IPV6CP negotiation is sufficient to communicate by IPv6. So, the prompt should be `PPP' rather than `PPp'. From ume FreeBSD ok deraadt@
2005-07-11Don't install wrong IPv6 route by add command.Brad Smith
From ume FreeBSD ok deraadt@
2005-07-11rev 1.32Brad Smith
Add IPv6 support to pppctl by using getaddrinfo() and trying each address it returns. This allows it to connect to the server side again, which has been listening on IPv6 addresses exclusively for more than 3 years. From tjr FreeBSD Fixes the issue noted in PR's 2780, 3570 and 3751. ok deraadt@
2005-07-09rev 1.85Brad Smith
Ignore case when comparing CHAP/CHAP81 responses rev 1.84 Do a case insensitive comparison when comparing the ms-chap response string. From brian FreeBSD ok canacar@
2005-07-09rev 1.45Brad Smith
Use the length of the interface name, not the length of its address when printing the name. From brooks FreeBSD
2005-07-06rev 1.8Brad Smith
Handle a malloc() failure when allocating urgent ports From brian FreeBSD ok deraadt@
2005-07-06Add a bunch of malloc() return checksBrad Smith
From brian FreeBSD ok deraadt@ tdeval@
2005-07-06rev 1.7Brad Smith
Reduce MAXMSS limit by 12 bytes to allow for rfc 1323. From brian FreeBSD ok deraadt@
2005-04-22snprintf cleanup. OK deraadt@, moritz@Chad Loder
2005-04-20be more careful with snprintf. ok cloder@ deraadt@Moritz Jodeit
2005-03-29document that `#' also needs to be escaped in strings;Jason McIntyre
double quoting strings prevents #, ~, and $ being expanded too; based on a diff from stuart henderson (pr #4156);
2005-03-10the section is named "LOGGING FACILITY", not "Logging Facility";Jason McIntyre
also mention that it is "above", as this is one large page;
2005-03-06Use correct byte order when logging port numbers.Chad Loder
OK tdeval, markus
2005-02-19The COMPILATIONDATE keyword has been dropped in ppp(8), change theMarc Balmer
man page accordingly. ok jmc@, jaredy@
2005-02-17zap compilation date from binary, ok deraadt@, ian@Marc Balmer
2005-01-20backout workaround from rev 1.29 as it breaks host routes and is notMarkus Friedl
required because multipath routes require RTF_MPATH; ok claudio
2004-12-17note the effect of `$' and `~' in configuration file, and how toJason McIntyre
escape them; based on netbsd -r 1.316, pr 42762, from peter pentchev;
2004-11-23Set link-local address of tun interface with prefixlen = 64Brad Smith
instead of 128. From FreeBSD ok deraadt@ todd@
2004-11-17NI_WITHSCOPEID is no more.Jun-ichiro itojun Hagino
2004-11-16Re-implement LQM, this time according to the rfc.Brad Smith
From FreeBSD ok deraadt@
2004-07-30setup(n.) -> set up(v.);Jason McIntyre
2004-07-13stuff from me and claudio@:Jason McIntyre
- remove references to stuff we don't support (libalias, libradius, etc.) - consistent quoting - macro fixes - grammar, punctuation, etc. - use .Ic for commands to reduce amount of quoting more work needed here. this page is just too much...
2004-06-26Fix strict aligenment issues in ppp lcp and ipcp handling.Claudio Jeker
More cleanup is needed. OK henning@ canacar@
2004-05-31Avoid unintentional trigraph.Brad Smith
From FreeBSD
2004-05-30only call getprotobynumber() when necessary. from freebsd (dds@)Ted Unangst
testing jmc todd. ok deraadt
2004-05-25tun interface is stored in /var/run/cuaXX.if, not /var/run/ttyXX.if;Jason McIntyre
2004-05-25clarify how modems on serial ports attach, and their corresponding deviceJason McIntyre
numbers; inspired by a thread on misc@, and my own, er, experiences.. ok markus@
2004-05-24- sort optionsJason McIntyre
- sync usage()
2004-05-23- tcpdump is section 8, not 1Jason McIntyre
- uppercase `id' - update section on tun device creation - missing apostrophes - remove dead Xr's from SEE ALSO - Xr tun and ifconfig ok markus@
2004-05-15Workaround to work with the new multipath support. Do a RTM_GET first toClaudio Jeker
decide if a RTM_ADD or a RTM_CHANGE needs to be done when adding new routes. tested and OK henning@
2004-03-16fix dud example; from leopold-bloom at foni dot net;Jason McIntyre
ok deraadt@
2004-03-15correct .Pa for ppp.conf.sample;Jason McIntyre
from leopold-bloom at foni dot net; also, fix some spacing issues;