summaryrefslogtreecommitdiffstats
path: root/usr.sbin/wicontrol
Commit message (Collapse)AuthorAgeFilesLines
* Remove wicontrol(8) from the base system. Using wicontrol to configure anthompsa2007-07-013-1839/+0
| | | | | | | interface has been deprecated since 5.1, wi(4) wireless interfaces are managed via the net80211 stack and ifconfig. Approved by: re (rwatson)
* Fix manpage's SYNOPSIS and program's usage().ru2006-10-122-93/+97
| | | | | | XXX: some options are still left undocumented. PR: docs/43861
* Spell powersavesleep correctly.brian2005-08-222-2/+2
|
* Expand *n't contractions.ru2005-02-131-2/+2
|
* Sort sections.ru2005-01-181-10/+10
|
* Remove an extra semicolon after a function.stefanf2004-10-171-1/+1
|
* Markup nits.ru2004-06-051-9/+9
|
* Trim whitespace at EOL.ru2004-06-041-1/+1
|
* Typos fixing:blackend2003-10-051-2/+2
| | | | | paramters -> parameters assoicated -> associated
* Document that the atheros driver supports wicontrol too. Minor wordimp2003-09-291-18/+22
| | | | | | | smithing as approrpiate. PR: 57327 Submitted by: Matt Peterson
* Add -L to the usage message.imp2003-09-291-0/+1
| | | | | PR: 57327 Submitted by: Matt Peterson
* - Reorder to group the non-obsolete options togethereivind2003-09-181-52/+62
| | | | - Change from "will be deprecated in 5.1" to "was deprecated in 5.1"
* o update for new 802.11 supportsam2003-06-281-34/+103
| | | | | | o relax some error handling so other drivers (e.g. ath) are usable o revert ap scanning logic to old scheme o add to capability info printing for 11a and 11g
* Assorted mdoc(7) fixes.ru2003-05-221-18/+24
| | | | Approved by: re (blanket)
* Use __FBSDID over rcsid[]. Protect copyright[] where needed.obrien2003-05-031-2/+4
|
* s/obsoelte/obsolete/rwatson2003-04-071-4/+4
|
* Improve, and slightly soften, the deprecated flags. Call them deprecatedimp2003-04-061-10/+17
| | | | | | and not obsolete, but add a warning about their disappearance. Add additional notes that explain the lameness of WEP.
* o Tone down the obsolete messages since we actually do something, forimp2003-04-061-36/+48
| | | | | | | | | | | | the moment, with the deprecated flags. o Better error reporting on getting values from the driver. When we can't get one for the default dumpinfo output. The old driver would succeed for invalid RIDs, while the new driver reports errors. Since the info we're getting from the card/driver doesn't exist for all cards, we just don't report them. Improve error reporting elsewhere now that wi_getval doesn't exit. Also fix a file descriptor leak as a side effect. Reported by: scottl
* style.Makefile(5)obrien2003-04-041-2/+1
|
* Start whining to stderr when people use obsolete flags. These flagsimp2003-03-041-0/+12
| | | | will be removed. Give terse pointer to ifconfig h0h0 magic to use.
* another obsolete flagimp2003-03-041-0/+6
|
* Correct mistake in T flag: weptxkey is the replacementimp2003-03-041-1/+1
|
* Document the obsolete flags as obsolete, with pointers to theirimp2003-03-041-16/+97
| | | | | | | | ifconfig equivalents. This is the first step in removing them from the system. Users of wicontrol to configure the wireless card are strongly encouraged to change their scripts, as sometime in the future all configuration of the cards that isn't in ifconfig will be removed with extreme prejustice.
* - Restore header printing to wi_printaplist()mdodd2003-01-211-34/+59
| | | | | | | | | | | - Move APRATE switch() code to function for clarity. - Conditionally call wi_printaplist() alone if more than one 'L' is preset. - Add the 'Q' flag to suppress printing of extraneous information in wi_printaplist(). - Re-order second getopt() in main(). Reviewed by: imp
* fix -L (scan ap's): use WI_RID_SCAN_APS instead of WI_RDI_SCAN_REQ to startsam2003-01-201-7/+2
| | | | a scan so the driver can use the best/right op for the card
* update for revised wi driver that uses the 802.11 link layer supportsam2003-01-151-105/+140
| | | | Reviewed by: imp
* english(4) police.schweikh2002-12-271-1/+1
|
* mdoc(7) police: markup fixes.ru2002-11-271-2/+5
| | | | Approved by: re
* The symbol for Hertz is Hz.dwmalone2002-11-041-1/+1
|
* Spell 'Temperature' correctly.jhb2002-10-081-1/+1
|
* Warn that hex keys are the most portable.imp2002-08-121-1/+5
| | | | | Submitted by: Gregory Bond <gnb@itga.com.au> Pr: 40872
* Use wi_ltv_domains struct to print domainsimp2002-08-051-7/+5
|
* Add more (possibly useless) information to wicontrol's output (maybeimp2002-08-051-1/+79
| | | | | | | | | | | | | | | | | | | | some of these need to be enabled for an extra verbose mode or something): o Try to print the dBm comms quality. This may or may not be available for your card in your configuration. o Print the PRI Id and STA Id. These are in the raw format, so might be a little hard to read. o Print CardID so that we can know exactly what kind of card the user has (this is important if you download firmware to it). o Regulatory domains are now printed for the card. o Temp range is printed. o If you define WI_EXTRA_INFO you get more garbage than is listed here that you need the manual to decode. o Channel list is now printed in hex for easier decoding. This has lead to my discovery that my US symbol card supports channels 12-14 as well as 1-11, which is not allowed in the us/canada. This ain't pretty, but it isn't horrible either.
* gcc tells me that this isn't a prototype, and it is right :-) Useimp2002-08-031-4/+1
| | | | ANSI decl here. The old K&R one was copied from OpenBSD I think.
* The .Nm utilitycharnier2002-07-141-4/+4
|
* include if_ieee80211.h and if_wireg.h, don't know why that didn't work beforeimp2002-06-241-0/+2
|
* Document -L and -l.imp2002-06-242-3/+92
| | | | | | | Change -l -> -L to match OpenBSD (since we haven't MFC'd it yet). -l will now list stations that are associated with a hostap (preliminary) MFC After: 2 weeks
* As far as I can tell, the maximum packet size for 802.11b is 2346,dwmalone2002-05-271-2/+2
| | | | | which means that the valid range for the RTS threshold is 0-2347. The default is definitely 2347.
* Remove a stray "t" in the usage message.dwmalone2002-05-271-1/+1
| | | | | | PR: 38605 Submitted by: KOIE Hidetaka <hide@koie.org> MFC after: 1 week
* Change typo, 2347 -> 2047.asmodai2002-04-091-1/+1
| | | | Submitted by: moses
* Integrate airtools. This adds a number of parameters, which I've notimp2002-04-041-5/+119
| | | | | documented yet, the most interesting one is -l, which lists all the access points available.
* Use ansi function definitions.imp2002-03-271-56/+41
| | | | Add const to usage function.
* de __Pimp2002-03-271-19/+19
|
* WARNS= -> WARNS?=ru2001-09-211-1/+1
|
* Make wicontrol WARNS=2 clean. This is mostly just adding const to things.brooks2001-09-052-24/+35
|
* Removed duplicate VCS ID tags, as per style(9).ru2001-08-131-9/+7
|
* mdoc(7) police: fix markup and a SYNOPSIS bug from revision 1.24.ru2001-08-101-98/+150
|
* Incorporate feedback about the level of security that WEP gives you:imp2001-08-101-8/+19
| | | | | | | | | | Not much, but it is better than nothing as it discourages the extremely lazy. Please read the actual text (the last text was softer than the commit message about it) before giving me feedback. Also, in the last commit I also tagged the newly optional elements in the command line as optional.
* Add a note that says:imp2001-08-091-20/+69
| | | | | | | | | | | | WEP IS INSECURE. DO NOT USE IT. and point people to details on the attack: http://www.cs.rice.edu/~astubble/wep/wep_attack.html and recommend people use ipsec instead if possible. Approved by: kris Mandoc police: Please do your worst. I'd like to merge similar text into ancontrol and ifconfig.
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-0/+1
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
OpenPOWER on IntegriCloud