]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - share/man/man4/urndis.4
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / share / man / man4 / urndis.4
1 .\" Copyright (c) 2010 Michael Knudsen <mk@openbsd.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\"
8 .\"    - Redistributions of source code must retain the above copyright
9 .\"      notice, this list of conditions and the following disclaimer.
10 .\"    - Redistributions in binary form must reproduce the above
11 .\"      copyright notice, this list of conditions and the following
12 .\"      disclaimer in the documentation and/or other materials provided
13 .\"      with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 .\" "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23 .\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
25 .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 .\" POSSIBILITY OF SUCH DAMAGE.
27 .\"
28 .\" $OpenBSD: urndis.4,v 1.15 2013/07/16 16:05:49 schwarze Exp $
29 .\"
30 .\" $FreeBSD$
31 .\"
32 .Dd September 25, 2014
33 .Dt URNDIS 4
34 .Os
35 .Sh NAME
36 .Nm urndis
37 .Nd USB Remote NDIS Ethernet device
38 .Sh SYNOPSIS
39 To compile this driver into the kernel,
40 place the following lines in your
41 kernel configuration file:
42 .Bd -ragged -offset indent
43 .Cd "device ehci"
44 .Cd "device uhci"
45 .Cd "device ohci"
46 .Cd "device xhci"
47 .Cd "device usb"
48 .Cd "device miibus"
49 .Cd "device uether"
50 .Cd "device urndis"
51 .Ed
52 .Pp
53 Alternatively, to load the driver as a
54 module at boot time, place the following line in
55 .Xr loader.conf 5 :
56 .Bd -literal -offset indent
57 if_urndis_load="YES"
58 .Ed
59 .Sh DESCRIPTION
60 The
61 .Nm
62 driver provides Ethernet access over Remote NDIS (RNDIS),
63 allowing mobile devices such as phones and tablets to provide network access.
64 It is often referred to as USB tethering,
65 and in most cases must be explicitly enabled on the device.
66 .Pp
67 .Nm
68 should work with any USB RNDIS devices,
69 such as those commonly found on Android devices.
70 It does not support different media types or options.
71 For more information on configuring this device, see
72 .Xr ifconfig 8 .
73 .Sh SEE ALSO
74 .Xr arp 4 ,
75 .Xr cdce 4 ,
76 .Xr ipheth 4 ,
77 .Xr netintro 4 ,
78 .Xr usb 4 ,
79 .Xr ifconfig 8
80 .Sh HISTORY
81 The
82 .Nm
83 device driver first appeared in
84 .Ox 4.7 .
85 The first
86 .Fx
87 release to include it was
88 .Fx 9.3 .
89 .Sh AUTHORS
90 .An -nosplit
91 The
92 .Nm
93 driver was written by
94 .An Jonathan Armani Aq Mt armani@openbsd.org ,
95 .An Michael Knudsen Aq Mt mk@openbsd.org ,
96 and
97 .An Fabien Romano Aq Mt fabien@openbsd.org .
98 It was ported to
99 .Fx
100 by
101 .An Hans Petter Selasky Aq Mt hps@FreeBSD.org .