summaryrefslogtreecommitdiff
path: root/share/man
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2005-08-13 23:07:36 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2005-08-13 23:07:36 +0000
commit3e26db8b80884b54e4cd1f206cb9ffa12f60f6c4 (patch)
tree80b68c35e4cb7717e76e05baa66e6d03c518574c /share/man
parent587229434e4e0122ff8fb7bdee60b5a7616ef131 (diff)
Manpage for art(4) driver. Help and OK jmc@, OK deraadt@
Diffstat (limited to 'share/man')
-rw-r--r--share/man/man4/art.4156
1 files changed, 156 insertions, 0 deletions
diff --git a/share/man/man4/art.4 b/share/man/man4/art.4
new file mode 100644
index 00000000000..de29e4b8f23
--- /dev/null
+++ b/share/man/man4/art.4
@@ -0,0 +1,156 @@
+.\" $OpenBSD: art.4,v 1.1 2005/08/13 23:07:35 claudio Exp $
+.\"
+.\" Copyright (c) 2005 Internet Business Solutions AG, Zurich, Switzerland
+.\" Written by: Claudio Jeker <jeker@accoom.net>
+.\"
+.\" Permission to use, copy, modify, and distribute this software for any
+.\" purpose with or without fee is hereby granted, provided that the above
+.\" copyright notice and this permission notice appear in all copies.
+.\"
+.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+.\"
+.\"
+.Dd July 9, 2005
+.Dt ART 4
+.Os
+.Sh NAME
+.Nm art
+.Nd Accoom Networks Artery T1/E1 Network driver
+.Sh SYNOPSIS
+.Cd "musycc* at pci?"
+.Cd "ebus* at pci?"
+.Cd "art* at musycc?"
+.Sh DESCRIPTION
+The
+.Nm
+device driver supports the Accoom Networks Artery Series Network
+cards.
+This includes the following models:
+.Pp
+.Bl -item -offset indent -compact
+.It
+Accoom Artery Single T1/E1 PCI
+.It
+Accoom Artery Dual T1/E1 PCI
+.El
+.Pp
+The following media types (as given to
+.Xr ifconfig 8 )
+are supported:
+.Bl -tag -width "media E1-G.704-CRC4" -offset 3n
+.It Cm media No T1
+Set T1, B8ZS ESF operation.
+.It Cm media No T1-AMI
+Set T1, AMI SF operation.
+.It Cm media No E1
+Set E1, HDB3, G.703 clearchannel operation.
+.It Cm media No E1-G.704
+Set E1, HDB3, G.704 structured operation without CRC4 checksum.
+.It Cm media No E1-G.704-CRC4
+Set E1, HDB3, G.704 structured operation with CRC4 checksum.
+.El
+.Pp
+If no media type is set, the
+.Nm
+driver places the card into E1-G.704-CRC4 mode.
+.Pp
+The
+.Nm
+driver supports the following media options for all available media types:
+.Bl -tag -width "mediaopt ppp" -offset 3n
+.It Cm mediaopt No ppp
+Use PPP line protocol.
+.El
+.Pp
+If no media options are set,
+the card defaults to cHDLC (Cisco High-Level Data Link Control) with 32-bit
+HDLC CRC checksum.
+.Pp
+It is possible to change the timeslot range for the following media types:
+.Pp
+.Bl -item -offset indent -compact
+.It
+T1
+.It
+T1-AMI
+.It
+E1-G.704
+.It
+E1-G.704-CRC4
+.El
+.Pp
+Use
+.Xr ifconfig 8
+to change the timeslot range.
+.Pp
+For example:
+.Pp
+Enable all possible channels for this card:
+.Pp
+.Dl # ifconfig art0 timeslot all
+.Pp
+Enable channels 1-31 for this card:
+.Pp
+.Dl # ifconfig art0 timeslot 1-31
+.Pp
+Enable channels 1-15, 16-31 for this card:
+.Pp
+.Dl # ifconfig art0 timeslot 1-15,16-31
+.Pp
+If no timeslots are configured, the
+.Nm
+driver configures the card to use all possible channels.
+.Pp
+It is possible to change the clock mode of the interface with
+.Xr ifconfig 8 .
+To use the internal clock as clock source for the line, use
+.Em master
+mode.
+.Pp
+For example:
+.Pp
+.Dl # ifconfig art0 media E1-G.704 mode master
+.Pp
+The default mode recovers the clock from the incomming line signal.
+This can be explicitly set by using the
+.Em autoselect
+mode.
+.Pp
+For example:
+.Pp
+.Dl # ifconfig art0 media E1-G.704 mode autoselect
+.Sh DIAGNOSTICS
+.Bl -diag
+.It "art%d: device timeout"
+The device has stopped responding to the network
+.It "art%d: internal FIFO underflow"
+The internal FIFO got empty while transmitting a packet.
+This may indicate a PCI bus congestion.
+.It "art%d: internal FIFO overflow"
+The internal FIFO overflowed while receiving a packet.
+This may indicate a PCI bus congestion.
+.It "art%d: Failed to malloc memory"
+There are not enough mbufs available for allocation.
+.El
+.Sh SEE ALSO
+.Xr ifmedia 4 ,
+.Xr pci 4 ,
+.Xr sppp 4 ,
+.Xr hostname.if 5 ,
+.Xr ifconfig 8
+.Sh HISTORY
+The
+.Nm
+device driver first appeared in
+.Ox 3.8 .
+.Sh AUTHORS
+The
+.Nm
+device driver was written by Claudio Jeker and Andre Oppermann.
+This manual page was written by Claudio Jeker.