summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the use of a dash in the usage, since this isn't in keepingsheldonh2000-07-032-2/+2
| | | | | | | with other utilities which offer similar functionality. This change was discussed with ache, who brought in the ability to use a dash to represent stdin in comcontrol.
* What the commit log for rev 1.16 neglected to mention was that thesheldonh2000-07-031-1/+1
| | | | | | delta touched the Name Description (Nd). It introduced a grammar error and did not fix the extraneous punctuation (Nd lines are not terminated with a period).
* Explicitly state that mountd can be made to re-read the exports file,sheldonh2000-07-031-0/+19
| | | | | | even though this may seem obvious to some folks. Requested by: obrien
* Print the correct speed when speed is less than 1MB/s.n_hibma2000-07-011-1/+1
| | | | | | Fixed in cam_xpt.c, r1.81 Submitted by: Gerd Knops <gerti@bitart.com>
* Backout rev 1.8. This really does not give us the version numberps2000-07-012-5/+5
| | | | | | of the kld's. Pointed out by: bp
* "Ease understanding" of how -punch_fw works.ru2000-06-291-9/+11
| | | | Reviewed by: sheldonh
* When printing out the transfer rate display for 'camcontrol inquiry',ken2000-06-281-1/+2
| | | | | | | | | | | | | use the current setting for tagged queueing when deciding whether or not to print "Tagged Queueing Enabled" instead of using the device's actual capabilities. This is more consistent with the rest of the transfer rate display, which relies on current settings, and is more consistent with the way we display things on boot. Reported by: Gustavo Vieira Goncalves Coelho Rios <kernel@tdnet.com.br> Reviewed by: mjacob
* Catch the usage() function up to the command line changes. Add -I andjhb2000-06-272-2/+2
| | | | remove -e.
* Added new option (-punch_fw) which allows to `punch holes'ru2000-06-272-2/+47
| | | | | | | in the ipfirewall(4) for incoming FTP/IRC DCC connections. Submitted by: Rene de Vries <rene@canyon.demon.nl> Rewritten by: ru
* - mdoc(7) style cleanupru2000-06-271-276/+300
| | | | - new version of security note from alex.
* Back out both previous commits.alex2000-06-261-200/+168
| | | | | | | | | | | | The first one got screwed up by me because of rev 1.33, which was incorrectly merged into my patches by myself, and so Ruslan (maintainer) asked me to back them out. Ruslan was ok with the second one, but since it needs rework, it'll be readded later, when it doesn't conflict with the backout of the first one. Pointy hat: alex Beer on next meeting: ru
* Add note about security concerns w/o a firewall but other machinesalex2000-06-261-0/+8
| | | | | | | | on your LAN to the "RUNNING NATD" introduction. In a different way requested by: PR: 18802 Submitted by: Zachary K Drew <drew0054@tc.umn.edu>
* mdoc style cleanup.alex2000-06-261-168/+192
| | | | Reviewed by: sheldonh
* display version number of each kld module when usingjmb2000-06-202-5/+5
| | | | the -v flag.
* Remove ``pptpalias'' since this is now done transparently by libalias(3).ru2000-06-202-51/+1
|
* Reorder the "prob" section in the output of list/show so it can be copy/pastedbillf2000-06-181-5/+6
| | | | | | | into add without problems. The previous commit had the other half of this original patch which handled tcpflags/tcpflgs confusion in output/input.
* Implement SIOCSIFLLADDR, which allows you to change the link-levelwpaul2000-06-162-1/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | address on an interface. This basically allows you to do what my little setmac module/utility does via ifconfig. This involves the following changes: socket.h: define SIOCSIFLLADDR if.c: add support for SIOCSIFLLADDR, which resets the values in the arpcom struct and sockaddr_dl for the specified interface. Note that if the interface is already up, we need to down/up it in order to program the underlying hardware's receive filter. ifconfig.c: add lladdr command ifconfig.8: document lladdr command You can now force the MAC address on any ethernet interface to be whatever you want. (The change is not sticky across reboots of course: we don't actually reprogram the EEPROM or anything.) Actually, you can reprogram the MAC address on other kinds of interfaces too; this shouldn't be ethernet-specific (though at the moment it's limited to 6 bytes of address data). Nobody ran up to me and said "this is the politically correct way to do this!" so I don't want to hear any complaints from people who think I could have done it more elegantly. Consider yourselves lucky I didn't do it by having ifconfig tread all over /dev/kmem.
* Remove unused parameter.ru2000-06-161-6/+6
|
* Fix behaviour of "ipfw pipe show" -- previous code gaveluigi2000-06-141-6/+6
| | | | | ambiguous data to the userland program (kernel operation was safe, anyways).
* Fixed style bugs of rev 1.66.ru2000-06-121-35/+81
|
* 0x39 == plan9brian2000-06-122-0/+2
| | | | Obtained from: OpenBSD
* Fix memory leak in mount_nfs's background (-b) mode which occurs whendillon2000-06-111-2/+3
| | | | | | the mount is not available. Submitted-by: Jonathan Hanna <pangolin@home.com>
* Handle minors like ls(1) does it.phk2000-06-101-2/+8
| | | | | PR: 19179 Submitted by: Kelly Yancey <kbyanc@posi.net>
* Add QNX 4 partitions to fdisk's list.ghelmer2000-06-092-2/+8
| | | | | | PR: bin/8809 Submitted by: "John C. Place" <jcplace@ibm.net> Prompted by: <nrahlstr@winternet.com>
* Add MLINK init.8 --> securelevel.8alex2000-06-091-0/+1
| | | | | | Requested by: Brett Glass <brett@lariat.org> PR: 13792 Submitted by: nik
* Fix occurences of nos_tun to nos-tun, this improves internalasmodai2000-06-091-6/+6
| | | | | | | | consistency as well as an usage printout. PR: 10538 Submitted by: piazza Nudged by: nrahlstr
* Add tcpoptions to ipfw. This works much in the same way as ipoptions do.dan2000-06-082-5/+88
| | | | | | | | | | It also squashes 99% of packet kiddie synflood orgies. For example, to rate syn packets without MSS, ipfw pipe 10 config 56Kbit/s queue 10Packets ipfw add pipe 10 tcp from any to any in setup tcpoptions !mss Submitted by: Richard A. Steenbergen <ras@e-gerbil.net>
* Document new dummynet functionality, namely WF2Q+ and REDluigi2000-06-081-11/+105
|
* userland side of WF2Q+ support in dummynet.luigi2000-06-081-102/+315
| | | | Manpage coming later...
* Clarify which bit of the daemon config disables configuration saves.grog2000-06-081-2/+2
| | | | | | This is still terrible. I need to finally implement variables. Reported-by: jmg
* Update description of checkparity and rebuildparity commands.grog2000-06-071-5/+57
|
* continue_revive: Set the revive blocksize correctly in the ioctl request.grog2000-06-071-0/+6
|
* vinum_start: Set the revive blocksize correctly.grog2000-06-071-1/+3
| | | | checkparity: Allow the -v flag to display progress.
* o Mention kern.suser_permittedrwatson2000-06-051-0/+1
| | | | Obtained from: TrustedBSD Project
* Sync with sbin/i386/fdisk/fdisk.c revision 1.37.nyan2000-06-052-2/+2
| | | | (Don't try to open the /dev/rXXX device.)
* Eliminate the default device name (da) and unit number (0) in camcontrol.ken2000-06-042-17/+15
| | | | | | | | This may break some scripts, but with the number of ways users can damage a system with this tool, it's important to make sure they specify which device they want to talk to. Suggested by: joerg
* Use the Ic (Internal command) mdoc macro to denote camcontrol subcommands.ken2000-06-031-44/+51
| | | | Submitted by: sheldonh
* Send 'camcontrol help' usage output to stdout instead of stderr, so itken2000-06-031-2/+2
| | | | | | | | | can be viewed more easily with a pager. Regular (i.e. short) usage output is still sent to stderr. PR: bin/12358 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* Fix memory leak when route addition fails.jlemon2000-06-021-0/+1
| | | | Obtained from: NetBSD
* Add new function declarations.grog2000-06-021-1/+6
|
* Change the default command history file from /var/tmp/vinum_history togrog2000-06-021-3/+50
| | | | | | | | | | /var/log/vinum_history. Also check that any existing history file is a regular file. Admonished-by: imp Allow stopping long-running commands with ^C (well, SIGINTR). Previously this would stop the program.
* Add new function dumpconfig: dump the configuration informationgrog2000-06-022-0/+237
| | | | | | | | | directly off the drives. This command shows a minor problem: it requires that the device nodes exist, whereas kernel Vinum does not. Thus dumpconfig may show no configuration for certain drives which are up and happily running. This is documented in the man page.
* attach command: allow attaching striped or parity plexes if the -fgrog2000-06-021-1/+2
| | | | option is given. This will break the data in the plex.
* Don't try to do anything with the /dev/rXXX device.msmith2000-05-311-4/+2
|
* Don't try to open the /dev/rXXX device.msmith2000-05-312-2/+2
|
* add common.c to SRCS to fix compile problemsdarrenr2000-05-243-3/+3
|
* Fix a small grammar nit, with the maintainer's implicit approval.sheldonh2000-05-221-3/+3
|
* Implement a new camcontrol function, 'camcontrol format'.ken2000-05-212-31/+393
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libcam/Makefile: Add scsi_da.c to libcam for the new scsi_format_unit() function. camcontrol.8: Update the man page for the new format functionality, and take out the examples section describing how to do it with 'camcontrol cmd'. camcontrol.c: New format functionality. Note that unlike the rest of the camcontrol subcommands, this one is interactive by default. Because of the potential destructiveness of the format command, I thought it necessary to get confirmation from the user before spamming a disk. You can disable the interactive behavior, and the status meter with command line arguments. scsi_da.c: Add the new scsi_format_unit() cdb building function and use #ifdef _KERNEL to make this file compile in both the kernel and userland. The format unit function is currently only defined in the non-kernel case, because nothing in the kernel is using it. If that changes, it should be un-ifdefed and compiled in both cases. scsi_da.h: New function declaration, CDB structure and format data structures. Thanks to Nick Hibma for providing some valuable input on these changes.
* Document "-alias".obrien2000-05-201-7/+9
|
* Add new option (-target_addr) to control how to deal with incoming packetsru2000-05-182-1/+34
| | | | | | not associated with any pre-existing link. Submitted by: brian
OpenPOWER on IntegriCloud