summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason <jason@openbsd.org>1998-09-08 04:44:37 +0000
committerjason <jason@openbsd.org>1998-09-08 04:44:37 +0000
commitfc53f56cf611f67a80eb170424b06c938dc36584 (patch)
treeb652a60db66abdb808b870a05ab26dbee343b57e
parentDon't assume realloc() can take NULL as first arg. Yacc needs to generate portable code... (diff)
downloadwireguard-openbsd-fc53f56cf611f67a80eb170424b06c938dc36584.tar.xz
wireguard-openbsd-fc53f56cf611f67a80eb170424b06c938dc36584.zip
ifmedia-fied man page
-rw-r--r--share/man/man4/man4.sparc/hme.431
1 files changed, 25 insertions, 6 deletions
diff --git a/share/man/man4/man4.sparc/hme.4 b/share/man/man4/man4.sparc/hme.4
index 4104e2bf775..dcf3316145f 100644
--- a/share/man/man4/man4.sparc/hme.4
+++ b/share/man/man4/man4.sparc/hme.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: hme.4,v 1.2 1998/07/15 04:42:29 jason Exp $
+.\" $OpenBSD: hme.4,v 1.3 1998/09/08 04:44:37 jason Exp $
.\"
.\" Copyright (c) 1998 Jason L. Wright (jason@thought.net)
.\" All rights reserved.
@@ -62,20 +62,39 @@ network.
.Pp
When a
.Nm
-interface is brought up, it will attempt to auto-negotiate the link speed.
-The speeds, in order of attempt, are:
+interface is brought up, by default, it will attempt to auto-negotiate the
+link speed and duplex. The speeds, in order of attempt, are:
100Mb/s Full Duplex, 100Mb/s Half Duplex, 10 Mb/s Full Duplex, and
10 Mb/s Half Duplex.
+.Pp
+The
+.Nm
+supports several media types, which are selected via the
+.Xr ifconfig 8
+command.
+The supported media types are:
+.Bl -tag -width xxxxxxxxxxxxxx -offset indent
+.It media autoselect
+Attempt to autoselect the media type (default)
+.It media 100baseTX mediaopt full-duplex
+Use 100baseTX, full duplex
+.It media 100baseTX Op mediaopt half-duplex
+Use 100baseTX, half duplex
+.It media 10baseT mediaopt full-duplex
+Use 10baseT, full duplex
+.It media 10baseT Op mediaopt half-duplex
+Use 10baseT, half duplex
+.El
.Sh SEE ALSO
+.Xr ifconfig 8 ,
+.Xr ifmedia 4 ,
.Xr ie 4 ,
.Xr le 4 ,
.Xr intro 4 ,
.Xr inet 4 ,
.Xr arp 4
-.Sh BUGS
-The autonegotiation process is not as robust as it should be.
.Sh HISTORY
Support for the
.Nm
first appeared in
-.Ox 2.3
+.Ox 2.3 .