summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Use the kern.msgbuf sysctl to get the message buffer on a runningtmm2001-07-032-32/+44
| | | | kernel, and remove setgid kmem, which is not needed any more.
* Fix a typo: "must be have" -> "must have"yar2001-07-031-1/+1
| | | | MFC after: 5 days
* Document continuation line support.dd2001-07-021-0/+2
| | | | | PR: 8479 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
* Correct handling of continuation lines. Instead of treating thedd2001-07-021-0/+4
| | | | | | | | backslash as nothing, treat it like a space so that adjacent lines aren't glued together. PR: 8479 Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
* Support network device cloning via create and destroy options.brooks2001-07-022-12/+162
| | | | | | Reviewed by: ru, ume Obtained from: NetBSD MFC after: 1 week
* Add __printflike() to those static functions which need it.kris2001-07-011-3/+3
|
* Correct grammar.dd2001-07-011-2/+2
|
* Silence format string warnings.kris2001-07-011-11/+11
| | | | MFC after: 2 weeks
* Convert two instances of a lseek()+read() combination to a pread().mikeh2001-07-011-8/+4
| | | | | PR: bin/17640 MFC after: 2 weeks
* Modify ping so that it increases the send socket buffer size if therwatson2001-06-301-0/+5
| | | | | | | | | user runs with privilege, allowing the sending of icmp packets with larger size (up to 48k, the default receive buffer size in ping), which is useful for network driver development testing, as well as experimentation with fragmentation. Reviewed by: wpaul
* Properly cast a size argument to an unsigned type.roam2001-06-291-1/+2
| | | | Thanks to: dd for noticing the need for a cast.
* - fixed typoume2001-06-291-4/+4
| | | | | | | - a wording improvement in BUGS (ping vs ping6 issue) Obtained from: KAME MFC after: 1 week
* sync usage/description with reality.ume2001-06-292-3/+7
| | | | | Obtained from: KAME MFC after: 1 week
* stop sending echo packets whenever the upper limit is specified by the -cume2001-06-291-7/+10
| | | | | | | | option, regardless of the -f option. based on a comment from Tomohide Nagashima <tomohide@japan-telecom.co.jp>. Obtained from: KAME MFC after: 1 week
* Silence warnings on the Alpha: don't assume size_t is an int.dd2001-06-291-1/+1
|
* Connect the new kldconfig(8) utility to the build.roam2001-06-291-0/+1
|
* Add kldconfig(8), a utility to modify the kernel module search path.roam2001-06-293-0/+587
| | | | Reviewed by: -arch, -audit
* Fix include ordering breakage from rev. 1.23.des2001-06-291-2/+2
| | | | Please-read-style(9): dd
* Only checksum stdin if nothing has been checksummed yet.ru2001-06-251-2/+2
| | | | PR: bin/28386
* Merge from ipfw.8 (1.57).kuriyama2001-06-241-5/+9
| | | | | | o Sync with netinet6/ip6_fw.c (1.12). MFC after: 10 days
* Nuke unused variables.dd2001-06-244-14/+1
|
* Include missing header files whicih define functions for which gcc hasdd2001-06-241-0/+1
| | | | builtints (e.g., exit, strcmp).
* Include missing header files which define functions for which gcc hasdd2001-06-2413-0/+14
| | | | builtins (e.g., exit, strcmp).
* Use strdup(3) instead of reimplementing it inline.dd2001-06-241-7/+1
|
* Remove duplicate words.dd2001-06-241-1/+1
|
* Use the new CLSET_CONNECT clnt_control() request on UDP clients toiedowse2001-06-231-1/+20
| | | | | | | | ensure that we never proceed with the mount() syscall if the server is replying from the wrong source address. Previously the userland RPC call to the remote nfsd would succeed, but the kernel uses connect() so it would not see the replies, resulting in a hung mount.
* Fixed DPADD.ru2001-06-231-2/+2
| | | | Submitted by: bde
* WARNS= -> WARNS?=dd2001-06-221-1/+1
| | | | Submitted by: Mike Barcroft <mike@q9media.com>
* Make it much more obvious that the use of NQNFS is discouraged (theiedowse2001-06-221-9/+6
| | | | | | | | | | | NQNFS code is ancient, bug-ridden, and should probably be removed). The wording here was very confusing; it was easy to get the impression that NQNFS is an extension to NFSv3 when in fact it just uses some NFSv3-like extensions on top of NFSv2. As witnessed by the mailing lists and PRs, some people were reading the description and deciding that NQNFS was what they wanted to use. MFC after: 1 week
* Fix compilation error on alpha.mjacob2001-06-211-1/+1
|
* Revert the previous commit on objection from the maintainer. Ijoe2001-06-211-3/+2
| | | | | | missed that natd has a -v option that will give similar functionality. Requested by: ru
* When reporting that a packet can't be written back, usually becausejoe2001-06-211-2/+3
| | | | | | | of a restrictive firewall rule, also report detail on the packet that caused the failure. MFC after: 3 days
* Constify mdmaybeload(), add a prototype for usage(), and get rid of add2001-06-212-3/+6
| | | | sizeof(int) == sizeof(long) assumption; clamp down with WARNS=2.
* Don't assume the length of MD_NAME is 2.dd2001-06-211-2/+2
|
* Fail if -s isn't specified for an MD_MALLOC or MD_SWAP disk; thedd2001-06-211-1/+7
| | | | | | | | | | driver itself obviously won't configure such a disk, but the error returned (EDOM) is more cryptic to the average user than it should be. Also assert that the argument to -u is in fact a valid unit; don't just accept any string to mean 0. Approved by: phk
* Add a missing word.dd2001-06-201-1/+1
| | | | Submitted by: Alexander Leidinger <Alexander@Leidinger.net>
* Document the interactive command `what'.mikeh2001-06-201-0/+4
| | | | | Reviewed by: ru MFC after: 2 weeks
* Fix typo which could lead to memory leak.mikeh2001-06-201-1/+1
| | | | | PR: misc/28283 MFC after: 2 weeks
* Add a SEE ALSO section.dd2001-06-201-0/+6
|
* Miscellaneous mdoc(7) fixes; also expand contractions.dd2001-06-201-22/+19
| | | | Submitted by: ru
* This command has more than four options.dd2001-06-191-1/+1
|
* Hook mdmfs into the build.dd2001-06-181-0/+1
|
* Introduce mdmfs(8), a wrapper around mdconfig(8), disklabel(8),dd2001-06-184-0/+930
| | | | | | | newfs(8), and mount(8) that mimics the command line option set of the deprecated mount_mfs(8). Approved by: jkh, phk, -hackers
* modfied sysctl command to allow setting values > 2GB if the mib supports it.pirzyk2001-06-181-1/+19
| | | | | | PR: kern/21132 Reviewed by: no objections to by -arch MFC after: 1 month
* Pick up the correct headers from sys/contrib/ipfilter/netinet.ru2001-06-183-3/+9
|
* This commit was generated by cvs2svn to compensate for changes in r78344,obrien2001-06-168-0/+1800
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the NetBSD 1.5 RC system.obrien2001-06-168-0/+1800
| | | | | | | | | | Note that `rc' and `rc.shutdown' could not be imported because we already have files with those names.
* | Allow route(8) to create "proxy only" published ARP entries.ru2001-06-123-5/+24
| | | | | | | | | | PR: bin/12357 Submitted by: Craig Leres <leres@ee.lbl.gov>
* | Fixed the -iface breakage introduced with the latest KAME mergeru2001-06-121-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in revision 1.48. It is pretty valid and often feasible to use a non-point-to-point interface as the gateway. One might, for example, use this to route some hosts through an ARP on a local interface, without having to assign an additional IP address: Script started on Tue Jun 12 16:16:09 2001 # ifconfig rl0 inet rl0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500 inet 192.168.4.115 netmask 0xffffff00 broadcast 192.168.4.255 # netstat -arn -finet | grep -w rl0 192.168.4 link#1 UC 3 0 rl0 => 192.168.4.65 0:d0:b7:16:9c:c6 UHLW 1 0 rl0 1197 # route add -net 192.168.100 -iface rl0 add net 192.168.100: gateway rl0 # ping 192.168.100.1 PING 192.168.100.1 (192.168.100.1): 56 data bytes 64 bytes from 192.168.100.1: icmp_seq=0 ttl=255 time=0.551 ms 64 bytes from 192.168.100.1: icmp_seq=1 ttl=255 time=0.268 ms ^C --- 192.168.100.1 ping statistics --- 2 packets transmitted, 2 packets received, 0% packet loss round-trip min/avg/max/stddev = 0.268/0.410/0.551/0.142 ms # netstat -arn -finet | grep -w rl0 192.168.4 link#1 UC 3 0 rl0 => 192.168.4.65 0:d0:b7:16:9c:c6 UHLW 1 0 rl0 1165 192.168.100 link#1 UCSc 1 0 rl0 => 192.168.100.1 0:d0:b7:16:9c:c6 UHLW 1 4 rl0 1192 Script done on Tue Jun 12 16:17:12 2001
* | Backout previous change (removal of -I${.CURDIR}/../../sys/netinet).ru2001-06-113-3/+3
| | | | | | | | | | | | | | | | | | | | This is needed to pick up the right headers. Wrong headers from src/contrib/ipfilter are used otherwise. The right fix would be to fix contrib/ipfilter C sources to pick up headers from <sys/netinet>. Noticed by: peter
OpenPOWER on IntegriCloud