link fixing 2
[rrq/rrqnet.git] / rrqnet-ifupdown.sh.8.adoc
1 rrqnet-ifupdown.sh(8)
2 =====================
3 :doctype: manpage
4 :revdate: {sys:date "+%Y-%m-%d %H:%M:%S"}
5
6 NAME
7 ----
8 rrqnet-ifupdown.sh - script for managing rrqnet virtual cables with
9 iup and ifdown
10
11 SYNOPSIS
12 --------
13  ln -s /etc/rrqnet/ifupdown.sh /etc/network/if-post-down.d/rrqnet
14  ln -s /etc/rrqnet/ifupdown.sh /etc/network/if-pre-up.d/rrqnet
15
16 DESCRIPTION
17 -----------
18
19 */etc/rrqnet/ifupdown.sh* is a utility script for managing +rrqnet+
20 virtual cables via +/etc/network/interfaces+ declarations. In normal
21 use the script is set up as "pre-up" and "post-down" scripts by means
22 of links from +/etc/network/if-pre-up.d/rrqnet+ and from
23 +/etc/network/if-post-down.d/rrqnet+. It will then be invoked by
24 +ifup+ and +ifdown+ for handling the +rrqnet+ declarations and bring
25 up or tear down +rrqnet+ virtual cable plugs over +tap+ interfaces.
26
27 An +rrqnet+ virtual cable uses a +tap+ interface at each cable end
28 host, and a service process (aptly named +rrqnet+) to tunnel the +tap+
29 network traffic over UDP. Each +rrqnet+ process acts as a networking
30 switch that facilitates level 2 connectivity among all its end points
31 with packet routing according to the destination Ethernet machine
32 addresses.
33
34 This script handles the special purpose "option codes" for the IFACE
35 stanzas that are used for declaring the +rrqnet+ daemon configuration
36 to for the +tap+ interface for its virtual cabling. I.e., the IFACE
37 stanza is made for the tap interface and it includes one or more of
38 these +rrqnet+ options.
39
40 The list of IFACE options for +rrqnet+ are:
41
42 *rrqnet_port* _port_::
43
44 This IFACE option is required both as way of marking that the stanza
45 is for an +rrqnet+ virtual cable +tap+, and to declare which UDP port
46 the +rrqnet+ daemon should listen on for incoming cabling.
47
48 *rrqnet_remote* _remote_::
49
50 This IFACE option is used for declaring the remote connection details.
51 Refer to +rrqnet+ man page for the full specification. Multiple
52 remotes for a single +rrqnet+ daemon are declared by using multiple
53 +rrqnet_remote+ lines.
54
55 *rrqnet_options* _options_::
56
57 This IFACE option is used for declaring any additional +rrqnet+ daemon
58 settings ([-4] [-B n] [-T n] [-m mcast]). Refer to the +rrqnet+ man
59 page for the full specification.
60
61 *rrqnet_log* _level_ _pathname_::
62
63 This IFACE option is used for declaring the log level as one of +-v+,
64 +-vv+ or +-vvv+, and to nominate the log file. If omitted, all the
65 +rrqnet+ daemon output will be directed to +/dev/null+. If __pathname_
66 is of the form "facility.priority", then stderr is sent to +syslog+.
67 Otherwise, stderr is appended to the nominated file.
68
69 *rrqnet_bridge* _bridge_::
70
71 This IFACE option is only used to make the +tap+ (once created) to be
72 made a "port" of the nominated preceding +bridge+ interface. The same
73 things is achieved by including the +tap+ in the +bridge_ports+ list
74 of the bridge, provided that the +tap+ is created before the bridge.
75
76 EXAMPLES
77 --------
78
79 The following is a configuration example:
80
81 ----
82 iface mynet0 inet static
83     address 10.0.0.2/24
84     broadcast 10.0.0.255
85     rrqnet_port 3636
86     rrqnet_options -4 -B 10 -T 1
87     rrqnet_remote 111.222.333.444:3636=/sec/mynet.key
88     rrqnet_log -v /var/log/mynet0.log
89 ----
90
91 The above example declares a virtual cable plug for UDP port +3636+
92 tunneling through host +111.222.333.444+ port +3636+ where the local
93 +tap+ +mynet0+ has ipv4 address +10.0.0.2+. The +rrqnet_port+ option
94 marks the stanza as an ++rrqnet+ virtual cabling set up which then is
95 duly handled by +rrqnet-ifupdown.sh+.
96
97 The +rrqnet_options+ in the example tells the +rrqnet+ process to use
98 an ipv4-only socket, 10 packet buffers and a single delivery thread.
99 If left out, the default is to use an ipv6 socket, 10 bufffers and 5
100 threads.
101
102 NOTES
103 -----
104
105 This script creates the +tap+ interface if needed, and brings it up.
106 Thereafter, if so configured the +tap+ is added to the +bridge+, and
107 then the +rrqnet+ virtual cable process is started under a +daemon+
108 supervision.
109
110 Note that the +rrqnet+ virtual cable requires UDP networking for its
111 tunnel traffic. The tunnel packets will have a UDP header in addition
112 to the orignal packet, which means that packets grow with some 28/48
113 (ipv4/6) bytes.
114
115 SEE ALSO
116 --------
117
118  *brctl(8)* - ethernet bridge administration
119  *daemon(1)* - turns other processes into daemons
120  *interfaces(5)* - network interface configuration for ifup and ifdown
121  *rrqnet(8)* - packet tunneling over UDP, multiple channels
122  
123 AUTHOR
124 ------
125 Ralph Rönnquist <ralph.ronnquist@gmail.com>