nrelease - fix/improve livecd
[dragonfly.git] / usr.bin / vknet / vknet.1
CommitLineData
cf4f0088
MD
1.\"
2.\" Copyright (c) 2008 The DragonFly Project. All rights reserved.
fb3c2c0c 3.\"
cf4f0088
MD
4.\" This code is derived from software contributed to The DragonFly Project
5.\" by Matthew Dillon <dillon@backplane.com>
fb3c2c0c 6.\"
cf4f0088
MD
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
fb3c2c0c 10.\"
cf4f0088
MD
11.\" 1. Redistributions of source code must retain the above copyright
12.\" notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\" notice, this list of conditions and the following disclaimer in
15.\" the documentation and/or other materials provided with the
16.\" distribution.
17.\" 3. Neither the name of The DragonFly Project nor the names of its
18.\" contributors may be used to endorse or promote products derived
19.\" from this software without specific, prior written permission.
fb3c2c0c 20.\"
cf4f0088
MD
21.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23.\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24.\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25.\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26.\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31.\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
fb3c2c0c 33.\"
e34536f9 34.\" $DragonFly: src/usr.bin/vknet/vknet.1,v 1.4 2008/07/21 23:42:23 swildner Exp $
cf4f0088
MD
35.\"
36.Dd May 27, 2008
4041d919 37.Dt VKNET 1
cf4f0088
MD
38.Os
39.Sh NAME
40.Nm vknet
41.Nd create a bridged network between two hosts over
083f1589 42.Xr ssh 1
cf4f0088
MD
43.Sh SYNOPSIS
44.Nm
45.Op Fl C
46.Op Fl b Ar local-bridge
47.Op Fl B Ar remote-bridge
f72c50b3 48.Op Fl r Ar delay Ns Op : Ns Ar retries
cf4f0088 49.Ar local-spec
f72c50b3 50.Oo Ns Ar user Ns @ Oc Ns Ar host Ns Op : Ns Ar remote-spec
cf4f0088 51.Nm
f72c50b3 52.Fl S
cf4f0088 53.Op Fl b Ar local-bridge
f72c50b3 54.Ar local-spec
cf4f0088
MD
55.Sh DESCRIPTION
56The
57.Nm
58utility connects the local machine's network to the remote machine's
59network over a SSH connection.
60.Pp
f72c50b3
TN
61The local and remote specification typically supplies a path to a
62.Nm vknetd
63socket such as
64.Pa /var/run/vknet ,
cf4f0088
MD
65but may also specify a
66.Xr tap 4
67interface or the
f72c50b3 68.Cm auto
cf4f0088
MD
69keyword to automatically allocate a
70.Xr tap 4
71interface.
f72c50b3
TN
72.Ar remote-spec
73defaults to
74.Pa /var/run/vknet .
cf4f0088 75.Pp
083f1589 76If a TAP interface is used on any given side it can be bridged on that
cf4f0088
MD
77side.
78.Pp
79If a unix domain socket path is specified
80.Nm
81connects to use via the SOCK_SEQPACKET socket type.
82.Xr vknetd 8
f72c50b3
TN
83sockets cannot be bridged (but you don't want to anyway because
84.Nm vknetd
cf4f0088
MD
85is already typically connected to a potentially bridged TAP interface).
86.Pp
87The following options are available:
88.Bl -tag -width flag
89.It Fl C
90Request that
91.Xr ssh 1
92compress the connection.
93.It Fl b Ar local-bridge
94Specify that the local specification, which must be a TAP interface or
f72c50b3 95.Cm auto ,
cf4f0088
MD
96be bridged to the specified bridge.
97.It Fl B Ar remote-bridge
98Specify that the remote specification, which must be a TAP interface or
f72c50b3 99.Cm auto ,
cf4f0088 100be bridged to the specified bridge on the remote side.
f72c50b3 101.It Fl r Ar delay Ns Op : Ns Ar retries
cf4f0088 102If the link cannot be established or is lost, delay the specified number
f72c50b3
TN
103of seconds and retry.
104If no retry limit is specified an unlimited number of retries will be made.
cf4f0088
MD
105.It Fl S
106This option is used by the
107.Nm
083f1589 108run on the remote side of the
e34536f9 109.Xr ssh 1
f72c50b3
TN
110link to use stdin and stdout as its remote specification.
111This option is typically not specified manually.
cf4f0088 112.El
cf4f0088
MD
113.Sh REQUIREMENTS
114You may have to load the
115.Ar if_tap
116and/or
117.Ar if_bridge
118modules, or run
119.Xr vknetd 8
120to provide an interconnect to the local and remote machine's nework.
121.Sh FILES
f72c50b3 122.Bl -tag -width ".Pa /var/run/vknet" -compact
cf4f0088
MD
123.It Pa /dev/tap*
124TAP interface used to route packets from userland providers back into the
f72c50b3
TN
125real machine.
126If not otherwise specified an unused TAP interface will be selected.
cf4f0088 127.Pp
f72c50b3 128.It Pa /var/run/vknet
cf4f0088
MD
129Socket
130.Nm
131typically connects to, established by
132.Xr vknetd 8 .
133.El
a68e0df0 134.Sh EXAMPLES
f72c50b3 135.Dl "vknet -r 5 /var/run/vknet myhomesystem:/var/run/vknet"
a68e0df0 136.Pp
f72c50b3 137.Dl "vknet -r 5 -b bridge0 -B bridge0 auto myhomesystem:auto"
cf4f0088 138.Sh SEE ALSO
f72c50b3
TN
139.Xr ssh 1 ,
140.Xr bridge 4 ,
141.Xr tap 4 ,
3fc0dfa2 142.Xr vke 4 ,
cf4f0088 143.Xr vkernel 7 ,
cf4f0088
MD
144.Xr vknetd 8
145.Sh HISTORY
146The
147.Nm
148command was written by Matthew Dillon and first appeared in
149.Dx 1.13
150in May 2008.
a68e0df0
SW
151.Sh BUGS
152There are currently no known bugs.