From 96dbf833c9108cd144bceb1909e989c8d11fe89f Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sat, 26 Jul 2008 15:09:32 +0000 Subject: [PATCH] Add some standard examples to the wireless driver manual pages and adjust the few which already had examples. Reviewed-by: sephe --- share/man/man4/acx.4 | 41 +++++++++++++++++++++++++++++++++++-- share/man/man4/ath.4 | 35 +++++++++++++++++++++++--------- share/man/man4/bwi.4 | 41 +++++++++++++++++++++++++++++++++++-- share/man/man4/iwi.4 | 16 +++++++-------- share/man/man4/iwl.4 | 30 ++++++++++++++++++++------- share/man/man4/ral.4 | 28 ++++++++++++++++++++------ share/man/man4/rtw.4 | 47 +++++++++++++++++++++++++++---------------- share/man/man4/rum.4 | 28 ++++++++++++++++++++------ share/man/man4/ural.4 | 28 ++++++++++++++++++++------ 9 files changed, 230 insertions(+), 64 deletions(-) diff --git a/share/man/man4/acx.4 b/share/man/man4/acx.4 index bfaaf72a7b..2d16a0cb40 100644 --- a/share/man/man4/acx.4 +++ b/share/man/man4/acx.4 @@ -28,9 +28,9 @@ .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $DragonFly: src/share/man/man4/acx.4,v 1.12 2008/02/06 08:21:22 sephe Exp $ +.\" $DragonFly: src/share/man/man4/acx.4,v 1.13 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd February 6, 2008 +.Dd July 26, 2008 .Dt ACX 4 .Os .Sh NAME @@ -120,6 +120,43 @@ WESTELL A90-200WG-01 ACX111 CardBus b/g ZyXEL G-160 ACX111 CardBus b/g ZyXEL G-360 EE ACX111 PCI b/g .El +.Sh EXAMPLES +Join an existing BSS network (i.e., connect to an access point): +.Pp +.Dl "ifconfig acx0 inet 192.168.0.20 netmask 0xffffff00" +.Pp +Join a specific BSS network with network name +.Dq Li my_net : +.Pp +.Dl "ifconfig acx0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" +.Pp +Join a specific BSS network with 64 bit WEP encryption: +.Bd -literal -offset indent +ifconfig acx0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x1234567890 weptxkey 1 +.Ed +.Pp +Join a specific BSS network with 128 bit WEP encryption: +.Bd -literal -offset indent +ifconfig acx0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig acx0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig acx0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: +.Bd -literal -offset indent +ifconfig acx0 down -debug up +.Ed .Sh FILES The firmware for the adapter is not shipped with .Dx diff --git a/share/man/man4/ath.4 b/share/man/man4/ath.4 index dc5a09d260..d4340bbe0e 100644 --- a/share/man/man4/ath.4 +++ b/share/man/man4/ath.4 @@ -30,9 +30,9 @@ .\" THE POSSIBILITY OF SUCH DAMAGES. .\" .\" $FreeBSD: /repoman/r/ncvs/src/share/man/man4/ath.4,v 1.40 2006/05/12 17:58:11 keramida Exp $ -.\" $DragonFly: src/share/man/man4/ath.4,v 1.8 2008/02/01 08:18:36 hasso Exp $ +.\" $DragonFly: src/share/man/man4/ath.4,v 1.9 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd July 13, 2006 +.Dd July 26, 2008 .Dt ATH 4 .Os .Sh NAME @@ -125,7 +125,7 @@ A list of cards that are supported can be found at .Pp .Pa http://customerproducts.atheros.com/customerproducts . .Sh EXAMPLES -Join an existing BSS network (ie: connect to an access point): +Join an existing BSS network (i.e., connect to an access point): .Pp .Dl "ifconfig ath0 inet 192.168.0.20 netmask 0xffffff00" .Pp @@ -134,17 +134,32 @@ Join a specific BSS network with network name .Pp .Dl "ifconfig ath0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" .Pp -Join a specific BSS network with WEP encryption: +Join a specific BSS network with 64 bit WEP encryption: .Bd -literal -offset indent ifconfig ath0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x8736639624 + wepmode on wepkey 0x1234567890 weptxkey 1 .Ed .Pp -Join/create an 802.11b IBSS network with network name -.Dq Li my_net : +Join a specific BSS network with 128 bit WEP encryption: +.Bd -literal -offset indent +ifconfig ath0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig ath0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig ath0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: .Bd -literal -offset indent -ifconfig ath0 inet 192.168.0.22 netmask 0xffffff00 ssid my_net \e - mode 11b mediaopt adhoc +ifconfig ath0 down -debug up .Ed .\".Pp .\"Create an 802.11g host-based access point: @@ -156,7 +171,7 @@ ifconfig ath0 inet 192.168.0.22 netmask 0xffffff00 ssid my_net \e .\"Create an 802.11a host-based access point with WEP enabled: .\".Bd -literal -offset indent .\"ifconfig ath0 inet 192.168.0.10 netmask 0xffffff00 ssid my_ap \e -.\" wepmode on wepkey 0x1234567890 mode 11a mediaopt hostap +.\" wepmode on wepkey 0x1234567890 weptxkey 1 mode 11a mediaopt hostap .\".Ed .\".Pp .\"Create a host-based wireless bridge to fxp0: diff --git a/share/man/man4/bwi.4 b/share/man/man4/bwi.4 index 6b75f9a34a..d3908bdb1f 100644 --- a/share/man/man4/bwi.4 +++ b/share/man/man4/bwi.4 @@ -28,9 +28,9 @@ .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $DragonFly: src/share/man/man4/bwi.4,v 1.8 2008/05/01 12:34:06 sephe Exp $ +.\" $DragonFly: src/share/man/man4/bwi.4,v 1.9 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd September 16, 2007 +.Dd July 26, 2008 .Dt BWI 4 .Os .Sh NAME @@ -83,6 +83,43 @@ Buffalo WLI-PCI-G54S BCM4306 PCI b/g Dell Wireless 1470 BCM4318 Mini PCI b/g Dell Truemobile 1400 BCM4309 Mini PCI b/g .El +.Sh EXAMPLES +Join an existing BSS network (i.e., connect to an access point): +.Pp +.Dl "ifconfig bwi0 inet 192.168.0.20 netmask 0xffffff00" +.Pp +Join a specific BSS network with network name +.Dq Li my_net : +.Pp +.Dl "ifconfig bwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" +.Pp +Join a specific BSS network with 64 bit WEP encryption: +.Bd -literal -offset indent +ifconfig bwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x1234567890 weptxkey 1 +.Ed +.Pp +Join a specific BSS network with 128 bit WEP encryption: +.Bd -literal -offset indent +ifconfig bwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig bwi0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig bwi0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: +.Bd -literal -offset indent +ifconfig bwi0 down -debug up +.Ed .Sh FILES The firmware for the adapter is not shipped with .Dx diff --git a/share/man/man4/iwi.4 b/share/man/man4/iwi.4 index ebc04210e3..6ef54b4e2b 100644 --- a/share/man/man4/iwi.4 +++ b/share/man/man4/iwi.4 @@ -28,9 +28,9 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $DragonFly: src/share/man/man4/iwi.4,v 1.12 2008/02/01 21:40:53 swildner Exp $ +.\" $DragonFly: src/share/man/man4/iwi.4,v 1.13 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd March 1, 2005 +.Dd July 26, 2008 .Os .Dt IWI 4 .Sh NAME @@ -59,7 +59,7 @@ for more details on how to load firmware. For more (general) information on configuring this device, see .Xr ifconfig 8 . .Sh EXAMPLES -Join an existing BSS network (ie: connect to an access point): +Join an existing BSS network (i.e., connect to an access point): .Pp .Dl "ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00" .Pp @@ -68,19 +68,19 @@ Join a specific BSS network with network name .Pp .Dl "ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" .Pp -Join a specific BSS network with 64 bits WEP encryption: +Join a specific BSS network with 64 bit WEP encryption: .Bd -literal -offset indent ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x1234567890 + wepmode on wepkey 0x1234567890 weptxkey 1 .Ed .Pp -Join a specific BSS network with 128bits WEP encryption: +Join a specific BSS network with 128 bit WEP encryption: .Bd -literal -offset indent ifconfig iwi0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x01020304050607080910111213 + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 .Ed .Pp -To join or create an IBSS network, use something like: +Join/create an 802.11b IBSS network: .Bd -literal -offset indent ifconfig iwi0 192.168.0.20 netmask 0xffffff00 ssid my_net \e mediaopt adhoc diff --git a/share/man/man4/iwl.4 b/share/man/man4/iwl.4 index b7ee2682cd..7ccadf69a7 100644 --- a/share/man/man4/iwl.4 +++ b/share/man/man4/iwl.4 @@ -29,9 +29,9 @@ .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $DragonFly: src/share/man/man4/iwl.4,v 1.1 2008/03/09 11:04:35 swildner Exp $ +.\" $DragonFly: src/share/man/man4/iwl.4,v 1.2 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd March 9, 2008 +.Dd July 26, 2008 .Os .Dt IWL 4 .Sh NAME @@ -77,7 +77,7 @@ The firmware files have to reside in .Pa /etc/firmware/iwl/2100/1.3 and will be loaded when the interface is brought up. .Sh EXAMPLES -Join an existing BSS network (ie: connect to an access point): +Join an existing BSS network (i.e., connect to an access point): .Pp .Dl "ifconfig iwl0 inet 192.168.0.20 netmask 0xffffff00" .Pp @@ -86,16 +86,32 @@ Join a specific BSS network with network name .Pp .Dl "ifconfig iwl0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" .Pp -Join a specific BSS network with 64 bits WEP encryption: +Join a specific BSS network with 64 bit WEP encryption: .Bd -literal -offset indent ifconfig iwl0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x1234567890 + wepmode on wepkey 0x1234567890 weptxkey 1 .Ed .Pp -Join a specific BSS network with 128bits WEP encryption: +Join a specific BSS network with 128 bit WEP encryption: .Bd -literal -offset indent ifconfig iwl0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x01020304050607080910111213 + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig iwl0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig iwl0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: +.Bd -literal -offset indent +ifconfig iwl0 down -debug up .Ed .\".Sh DIAGNOSTICS .\".Bl -diag diff --git a/share/man/man4/ral.4 b/share/man/man4/ral.4 index 4c0b7e0a5e..24e9ab7021 100644 --- a/share/man/man4/ral.4 +++ b/share/man/man4/ral.4 @@ -14,9 +14,9 @@ .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .\" $FreeBSD: src/share/man/man4/ral.4,v 1.10 2006/03/13 21:24:28 damien Exp $ -.\" $DragonFly: src/share/man/man4/ral.4,v 1.6 2007/09/16 19:06:26 swildner Exp $ +.\" $DragonFly: src/share/man/man4/ral.4,v 1.7 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd May 20, 2006 +.Dd July 26, 2008 .Os .Dt RAL 4 .Sh NAME @@ -172,16 +172,32 @@ Join a specific BSS network with network name .Pp .Dl "ifconfig ral0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" .Pp -Join a specific BSS network with 40-bit WEP encryption: +Join a specific BSS network with 64 bit WEP encryption: .Bd -literal -offset indent ifconfig ral0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x1234567890 weptxkey 1 + wepmode on wepkey 0x1234567890 weptxkey 1 .Ed .Pp -Join a specific BSS network with 104-bit WEP encryption: +Join a specific BSS network with 128 bit WEP encryption: .Bd -literal -offset indent ifconfig ral0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig ral0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig ral0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: +.Bd -literal -offset indent +ifconfig ral0 down -debug up .Ed .Sh DIAGNOSTICS .Bl -diag diff --git a/share/man/man4/rtw.4 b/share/man/man4/rtw.4 index 1bf8e8ea75..8f6c95f6bb 100644 --- a/share/man/man4/rtw.4 +++ b/share/man/man4/rtw.4 @@ -1,6 +1,6 @@ .\" $NetBSD: rtw.4,v 1.3 2005/09/09 14:11:39 drochner Exp $ .\" $OpenBSD: rtw.4,v 1.18 2005/06/09 09:03:38 jmc Exp $ -.\" $DragonFly: src/share/man/man4/rtw.4,v 1.6 2007/07/04 16:52:40 swildner Exp $ +.\" $DragonFly: src/share/man/man4/rtw.4,v 1.7 2008/07/26 15:09:32 swildner Exp $ .\" .\" Copyright (c) 2004 Jonathan Gray .\" @@ -16,7 +16,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd September 3, 2006 +.Dd July 26, 2008 .Dt RTW 4 .Os .Sh NAME @@ -214,28 +214,41 @@ The following adapters should work: .It Li "VCTnet PC-11B1" Ta CardBus .El .Sh EXAMPLES -.\"Create a host-based access point on boot: -.\".Bd -literal -offset indent -.\"# ifconfig inet 192.168.1.1 netmask 0xffffff00 media autoselect \e -.\" mediaopt hostap ssid my_net chan 11 -.\".Ed -.\".Pp -Configure rtw0 for WEP, using hex key -.Dq 0x1deadbeef1 : +Join an existing BSS network (i.e., connect to an access point): +.Pp +.Dl "ifconfig rtw0 inet 192.168.0.20 netmask 0xffffff00" +.Pp +Join a specific BSS network with network name +.Dq Li my_net : +.Pp +.Dl "ifconfig rtw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" +.Pp +Join a specific BSS network with 64 bit WEP encryption: +.Bd -literal -offset indent +ifconfig rtw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x1234567890 weptxkey 1 +.Ed +.Pp +Join a specific BSS network with 128 bit WEP encryption: +.Bd -literal -offset indent +ifconfig rtw0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: .Bd -literal -offset indent -# ifconfig rtw0 nwkey 0x1deadbeef1 +ifconfig rtw0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc .Ed .Pp -Return rtw0 to its default settings: +To debug a network setup, you may wish to enable interface debugging: .Bd -literal -offset indent -# ifconfig rtw0 -bssid -chan media autoselect \e - ssid "" -nwkey +ifconfig rtw0 down debug up .Ed .Pp -Join an existing BSS network, -.Dq my_net : +To disable debugging, you may simply use: .Bd -literal -offset indent -# ifconfig rtw0 192.168.1.1 netmask 0xffffff00 ssid my_net +ifconfig rtw0 down -debug up .Ed .Sh SEE ALSO .Xr arp 4 , diff --git a/share/man/man4/rum.4 b/share/man/man4/rum.4 index 95c28930d3..5d8e3fa87d 100644 --- a/share/man/man4/rum.4 +++ b/share/man/man4/rum.4 @@ -1,5 +1,5 @@ .\" $OpenBSD: rum.4,v 1.16 2006/10/19 16:53:48 jsg Exp $ -.\" $DragonFly: src/share/man/man4/rum.4,v 1.9 2008/01/14 19:27:11 josepht Exp $ +.\" $DragonFly: src/share/man/man4/rum.4,v 1.10 2008/07/26 15:09:32 swildner Exp $ .\" .\" Copyright (c) 2005, 2006 .\" Damien Bergamini @@ -16,7 +16,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd November 26, 2006 +.Dd July 26, 2008 .Os .Dt RUM 4 .Sh NAME @@ -147,16 +147,32 @@ Join a specific BSS network with network name .Pp .Dl "ifconfig rum0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" .Pp -Join a specific BSS network with 40-bit WEP encryption: +Join a specific BSS network with 64 bit WEP encryption: .Bd -literal -offset indent ifconfig rum0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x1234567890 weptxkey 1 + wepmode on wepkey 0x1234567890 weptxkey 1 .Ed .Pp -Join a specific BSS network with 104-bit WEP encryption: +Join a specific BSS network with 128 bit WEP encryption: .Bd -literal -offset indent ifconfig rum0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig rum0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig rum0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: +.Bd -literal -offset indent +ifconfig rum0 down -debug up .Ed .Sh DIAGNOSTICS .Bl -diag diff --git a/share/man/man4/ural.4 b/share/man/man4/ural.4 index 8bfa6c2ab7..5587838001 100644 --- a/share/man/man4/ural.4 +++ b/share/man/man4/ural.4 @@ -14,9 +14,9 @@ .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" .\" $FreeBSD: src/share/man/man4/ural.4,v 1.11 2006/10/07 18:18:40 flz Exp $ -.\" $DragonFly: src/share/man/man4/ural.4,v 1.7 2007/09/16 19:06:26 swildner Exp $ +.\" $DragonFly: src/share/man/man4/ural.4,v 1.8 2008/07/26 15:09:32 swildner Exp $ .\" -.Dd November 26, 2006 +.Dd July 26, 2008 .Os .Dt URAL 4 .Sh NAME @@ -143,16 +143,32 @@ Join a specific BSS network with network name .Pp .Dl "ifconfig ural0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net" .Pp -Join a specific BSS network with 40-bit WEP encryption: +Join a specific BSS network with 64 bit WEP encryption: .Bd -literal -offset indent ifconfig ural0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x1234567890 weptxkey 1 + wepmode on wepkey 0x1234567890 weptxkey 1 .Ed .Pp -Join a specific BSS network with 104-bit WEP encryption: +Join a specific BSS network with 128 bit WEP encryption: .Bd -literal -offset indent ifconfig ural0 inet 192.168.0.20 netmask 0xffffff00 ssid my_net \e - wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 + wepmode on wepkey 0x01020304050607080910111213 weptxkey 1 +.Ed +.Pp +Join/create an 802.11b IBSS network: +.Bd -literal -offset indent +ifconfig ural0 192.168.0.20 netmask 0xffffff00 ssid my_net \e + mediaopt adhoc +.Ed +.Pp +To debug a network setup, you may wish to enable interface debugging: +.Bd -literal -offset indent +ifconfig ural0 down debug up +.Ed +.Pp +To disable debugging, you may simply use: +.Bd -literal -offset indent +ifconfig ural0 down -debug up .Ed .Sh DIAGNOSTICS .Bl -diag -- 2.41.0