summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2005-08-03device is not optional; spotted by jmcTheo de Raadt
2005-08-03clarify device vs drive; marco okTheo de Raadt
2005-08-03Fix usage.Marco Peereboom
2005-08-03be more careful when using struct ipsec_auth, might be NULL now.Hans-Joerg Hoexer
2005-08-03link back to ciss from here as wellMichael Shalayeff
2005-08-03extend the sensors framework to allow it to report the state of theDavid Gwynne
sensor, not just its value. ok henning@ marco@ deraadt@ beck@ fixes and tweaks grange@
2005-08-03be more sure about what is a drive vs controller; ok marcoTheo de Raadt
2005-08-03various cleanups, the way i like it, ok marcoTheo de Raadt
2005-08-02add -a properly to SYNOPSIS; sync usage();Jason McIntyre
ok marco@
2005-08-02add missing break; ok henning@Moritz Jodeit
2005-08-02sort SEE ALSO;Jason McIntyre
2005-08-02Make use of struct ipsec_auth dynamic.Hans-Joerg Hoexer
Do not pass IDs to kernel when deleting flows.
2005-08-02Reflect new reality. Lots of help and ok jmc@Marco Peereboom
2005-08-02$TAPE Ev may refer to a number of things, not just a physical tape device:Jason McIntyre
- for -f description, point people to TAPE - for TAPE description, point people to -f - use `file' to describe these differing forms, as that is consistent with the rest of the page this is based on -r1.71 from freebsd, from ceri davies, which was in turn based on pr #84200 from gary w. swearingen; ok otto@
2005-08-02Make sure to always load at least the default configuration values. Fixes aHans-Joerg Hoexer
problem noticed by Yaron Wahl, who also pointed out that problem. Thanks! ok mpf@
2005-08-02Rip out code dealing with multiple/nested interfaces. Each instance ofKenneth R Westerback
dhclient is responsible for one interface. Simply skip interface declarations for other interfaces and store all info in the one interface structure. tested by dlg@, ok henning@
2005-08-01Add alarm support.Marco Peereboom
2005-07-29Fix erroneous use of '=' instead of '+' that caused infinite loopsKenneth R Westerback
when skipping packets. Use BPF_WORDALIGN() to properly skip packets. From Brooks Davis at FreeBSD. ok deraadt@ henning@
2005-07-29add some tweaks that were lost...Jason McIntyre
2005-07-29Redo bioctl because initial implementation was too complex.Marco Peereboom
tested and ok dlg@ beck@ get it in @deraadt
2005-07-26Fix buffer overflows in dhcpd and dhclient. Closes PR#4306.Kenneth R Westerback
ok henning@
2005-07-25Use payload NAT-D or NAT-D-DRAFT according to NAT-T vendor ID advertised by theHans-Joerg Hoexer
peer. looks good ho
2005-07-25output some more information on UI command "S"Hans-Joerg Hoexer
ok ho@
2005-07-24use correct function names in error messagesHans-Joerg Hoexer
2005-07-24prepare for combining SAs and flows in one single rule, no functional changeHans-Joerg Hoexer
yet.
2005-07-23Our dhclient.conf lives in /usr/src/etc.Kenneth R Westerback
ok henning@
2005-07-23document automatic generation of reverse SA rules.Hans-Joerg Hoexer
2005-07-23add automatic creation of reverse SAs.Hans-Joerg Hoexer
A tcpmd5 rule like: tcpmd5 from 192.168.3.28 to 192.168.3.14 spi 0x2000:0x2001 \ key 0xbeefdead:0xdeadbeef expands now to: tcpmd5 from 192.168.3.28 to 192.168.3.14 spi 0x00002000 key 0xbeefdead tcpmd5 from 192.168.3.14 to 192.168.3.28 spi 0x00002001 key 0xdeadbeef
2005-07-23prepare for specifying both in and out key, not used yet.Hans-Joerg Hoexer
2005-07-23prepare for specifying incoming and outgoing SPIs, not used yet.Hans-Joerg Hoexer
2005-07-22spacing and tiny knfHans-Joerg Hoexer
2005-07-21remove trailing newlines from err(3) calls; millert@ and matthieu@ ok.Federico G. Schwindt
2005-07-20Print the last two kern.nchstats entries.Miod Vallat
2005-07-20revert one TAILQ_FOREACH conversion from r1.112 which wasMoritz Jodeit
wrong and broke some isakmpd setups. ok hshoexer@
2005-07-18revert marcos bio changes, mickey not okDavid Gwynne
2005-07-18tweaks;Jason McIntyre
ok marco@
2005-07-18Fix online help.Marco Peereboom
2005-07-18Reflect new reality.Marco Peereboom
2005-07-18Kill initial implementation because it sucked. It was far too complex the newMarco Peereboom
paradigm is to virtualize the operations. Using physical data is really only necessary on low end hardware or by advanced users. For now only support the inquiry operation. ok dlg@
2005-07-17No longer used.Kenneth R Westerback
2005-07-17Insist on correct hardware addresses in dhclient.conf andKenneth R Westerback
dhclient.leases.<if> files. Simplify parse_numeric_aggregate() as a result, rendering tree.c and tree.h redundant. ok millert@
2005-07-16No longer used.Kenneth R Westerback
2005-07-16Rejig struct string_list to use char array rather than char pointer, andKenneth R Westerback
eliminate new_parse_string. alloc.c becomes redundant. Junk a couple of unused fields (env, envc) in struct client_state. suggestions by & ok millert@
2005-07-16fix printing of hostname, from brooks davis via jmcHenning Brauer
2005-07-16back out last; breaks in cases where we want hex and the last byte is 0Henning Brauer
2005-07-16NULL is not a time_t. From brooks at freebsd.Kenneth R Westerback
2005-07-16Eliminate unnecessary 'code' field from struct option. MakeKenneth R Westerback
dhcp_options const. ok henning@
2005-07-15Fix handling of comma separated option value lists, broken in r1.20.Kenneth R Westerback
Found and fix tested by Moritz Jodeit.
2005-07-15let pretty_print_option() handle trailing nul bytes correctly (i. e. don'tHenning Brauer
let a trailing nul byte force hex printing) FreeBSD PR 83468 by Sean Winn <sean@gothic.net.au>, via jmc@
2005-07-14fix some memleaks. ok hshoexer@Moritz Jodeit