ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/doc/gvpe.conf.5.pod
(Generate patch)

Comparing gvpe/doc/gvpe.conf.5.pod (file contents):
Revision 1.8 by pcg, Mon Mar 7 01:31:26 2005 UTC vs.
Revision 1.13 by pcg, Sat Mar 26 03:16:23 2005 UTC

21=head1 DESCRIPTION 21=head1 DESCRIPTION
22 22
23The gvpe config file consists of a series of lines that contain C<variable 23The gvpe config file consists of a series of lines that contain C<variable
24= value> pairs. Empty lines are ignored. Comments start with a C<#> and 24= value> pairs. Empty lines are ignored. Comments start with a C<#> and
25extend to the end of the line. They can be used on their own lines, or 25extend to the end of the line. They can be used on their own lines, or
26after any directives. Spaces are allowed before or after the C<=> sign or 26after any directives. Whitespace is allowed around the C<=> sign or after
27after values, but not within the variable names or values themselves. 27values, but not within the variable names or values themselves.
28 28
29The only exception to the above is the "on" directive that can prefix any 29The only exception to the above is the "on" directive that can prefix any
30C<name = value> setting and will only "execute" it on the named node, or 30C<name = value> setting and will only "execute" it on the named node, or
31(if the nodename starts with "!") on all nodes except the named one. 31(if the nodename starts with "!") on all nodes except the named one.
32 32
70=item dns-forw-port = port-number 70=item dns-forw-port = port-number
71 71
72The port where the C<dns-forw-host> is to be contacted (default: C<53>, 72The port where the C<dns-forw-host> is to be contacted (default: C<53>,
73which is fine in most cases). 73which is fine in most cases).
74 74
75=item dns-max-outstanding = integer-number-of-requests
76
77The maximum number of outstanding DNS transport requests
78(default: C<100>). GVPE will never issue more requests then the given
79limit without receiving replies. In heavily overloaded situations it might
80help to set this to a low number (e.g. C<3> or even C<1>) to limit the
81number of parallel requests.
82
83The default should be working ok for most links.
84
85=item dns-overlap-factor = float
86
87The DNS transport uses the minimum request latency (B<min_latency>) seen
88during a connection as it's timing base. This factor (default: C<0.5>,
89must be > 0) is multiplied by B<min_latency> to get the maximum sending
90rate (= minimum send interval), i.e. a factor of C<1> means that a new
91request might be generated every B<min_latency> seconds, which means on
92average there should only ever be one outstanding request. A factor of
93C<0.5> means that GVPE will send requests twice as often as the minimum
94latency measured.
95
96For congested or picky dns forwarders you could use a value nearer to or
97exceeding C<1>.
98
99The default should be working ok for most links.
100
101=item dns-send-interval = send-interval-in-seconds
102
103The minimum send interval (= maximum rate) that the DNS transport will
104use to send new DNS requests. GVPE will not exceed this rate even when
105the latency is very low. The default is C<0.01>, which means GVPE will
106not send more than 100 DNS requests per connection per second. For
107high-bandwidth links you could go lower, e.g. to C<0.001> or so. For
108congested or rate-limited links, you might want to go higher, say C<0.1>,
109C<0.2> or even higher.
110
111The default should be working ok for most links.
112
113=item dns-timeout-factor = float
114
115Factor to multiply the C<min_latency> (see C<dns-overlap-factor>) by to
116get request timeouts. The default of C<8> means that the DNS transport
117will resend the request when no reply has been received for longer than
118eight times the minimum (= expected) latency, assuming the request or
119reply has been lost.
120
121For congested links a higher value might be necessary (e.g. C<30>). If the
122link is very stable lower values (e.g. C<2>) might work nicely. Values
123near or below C<1> makes no sense whatsoever.
124
125The default should be working ok for most links.
126
75=item if-up = relative-or-absolute-path 127=item if-up = relative-or-absolute-path
76 128
77Sets the path of a script that should be called immediately after the 129Sets the path of a script that should be called immediately after the
78network interface is initialized (but not neccessarily up). The following 130network interface is initialized (but not neccessarily up). The following
79environment variables are passed to it (the values are just examples): 131environment variables are passed to it (the values are just examples).
132
133Variables that have the same value on all nodes:
80 134
81=over 4 135=over 4
82 136
83=item CONFBASE=/etc/gvpe 137=item CONFBASE=/etc/gvpe
84 138
85The configuration base directory. 139The configuration base directory.
86 140
87=item IFNAME=vpn0 141=item IFNAME=vpn0
88 142
89The interface to initialize. 143The network interface to initialize.
144
145=item IFTYPE=native # or tincd
146
147=item IFSUBTYPE=linux # or freebsd, darwin etc..
148
149The interface type (C<native> or C<tincd>) and the subtype (usually the
150OS name in lowercase) that this GVPE was configured for. Can be used to
151select the correct syntax to use for network-related commands.
90 152
91=item MTU=1436 153=item MTU=1436
92 154
93The MTU to set the interface to. You can use lower values (if done 155The MTU to set the interface to. You can use lower values (if done
94consistently on all hosts), but this is usually ineffective. 156consistently on all hosts), but this is usually ineffective.
95 157
158=item NODES=5
159
160The number of nodes in this GVPE network.
161
162=back
163
164Variables that are node-specific and with values pertaining to the node
165running this GVPE:
166
167=over 4
168
169=item IFUPDATA=string
170
171The value of the configuration directive C<if-up-data>.
172
96=item MAC=fe:fd:80:00:00:01 173=item MAC=fe:fd:80:00:00:01
97 174
98The MAC address to set the interface to. The script *must* set the 175The MAC address the network interface has to use.
99interface MAC to this value. You will most likely use one of these:
100 176
101 ip link set $IFNAME address $MAC mtu $MTU up # GNU/Linux 177Might be used to initialize interfaces on platforms where GVPE does not
102 ifconfig $IFNAME ether $MAC mtu $MTU up # FreeBSD 178do this automatically. Please see the C<gvpe.osdep(5)> manpage for
103 179platform-specific information.
104Please see the C<gvpe.osdep(5)> manpage for platform-specific information.
105
106=item IFTYPE=native # or tincd
107
108=item IFSUBTYPE=linux # or freebsd, darwin etc..
109
110The interface type (C<native> or C<tincd>) and the subtype (usually the os
111name in lowercase) that this gvpe was configured for. Can be used to select
112the correct syntax to use for network-related commands.
113 180
114=item NODENAME=branch1 181=item NODENAME=branch1
115 182
116The nickname of the current node, as passed to the gvpe daemon. 183The nickname of the node.
117 184
118=item NODEID=1 185=item NODEID=1
119 186
120The numerical node id of the current node. The first node mentioned in the 187The numerical node ID of the node running this instance of GVPE. The first
121config file gets ID 1, the second ID 2 and so on. 188node mentioned in the config file gets ID 1, the second ID 2 and so on.
122 189
123=back 190=back
124 191
192In addition, all node-specific variables (except C<NODEID>) will be
193available with a postfix of C<_nodeid>, which contains the value for that
194node, e.g. the C<MAC_1> variable contains the MAC address of node #1, while
195the C<NODENAME_22> variable contains the name of node #22.
196
125Here is a simple if-up script: 197Here is a simple if-up script:
126 198
127 #!/bin/sh 199 #!/bin/sh
128 ip link set $IFNAME address $MAC mtu $MTU up 200 ip link set $IFNAME up
129 [ $NODENAME = branch1 ] && ip addr add 10.0.0.1 dev $IFNAME 201 [ $NODENAME = branch1 ] && ip addr add 10.0.0.1 dev $IFNAME
130 [ $NODENAME = branch2 ] && ip addr add 10.1.0.1 dev $IFNAME 202 [ $NODENAME = branch2 ] && ip addr add 10.1.0.1 dev $IFNAME
131 ip route add 10.0.0.0/8 dev $IFNAME 203 ip route add 10.0.0.0/8 dev $IFNAME
132 204
133More complicated examples (using routing to reduce arp traffic) can be 205More complicated examples (using routing to reduce arp traffic) can be
228argument to the gvpe daemon. 300argument to the gvpe daemon.
229 301
230=item node-up = relative-or-absolute-path 302=item node-up = relative-or-absolute-path
231 303
232Sets a command (default: no script) that should be called whenever a 304Sets a command (default: no script) that should be called whenever a
233connection is established (even on rekeying operations). In addition 305connection is established (even on rekeying operations). In addition to
234to the variables passed to C<if-up> scripts, the following environment 306all the variables passed to C<if-up> scripts, the following environment
235variables will be set: 307variables will be set:
236 308
237=over 4 309=over 4
238 310
239=item DESTNODE=branch2 311=item DESTNODE=branch2
347 419
348The port to bind the DNS tunnel socket to. Must be C<53> on DNS tunnel servers. 420The port to bind the DNS tunnel socket to. Must be C<53> on DNS tunnel servers.
349 421
350=item enable-dns = yes|true|on | no|false|off 422=item enable-dns = yes|true|on | no|false|off
351 423
424See gvpe.protocol(7) for a description of the DNS transport
425protocol. Avoid this protocol if you can.
426
352Enable the DNS tunneling protocol on this node, either as server or as 427Enable the DNS tunneling protocol on this node, either as server or as
353client (only available when gvpe was compiled with C<--enable-dns>). 428client. Support for this transport protocol is only available when gvpe
429was compiled using the C<--enable-dns> option.
354 430
355This is the worst choice of transport protocol with respect to overhead 431=item enable-icmp = yes|true|on | no|false|off
356(overhead cna be 2-3 times higher than the transferred data), and probably 432
357the best choice when tunneling through firewalls. 433See gvpe.protocol(7) for a description of the ICMP transport protocol.
434
435Enable the ICMP transport using icmp packets of type C<icmp-type> on this
436node.
358 437
359=item enable-rawip = yes|true|on | no|false|off 438=item enable-rawip = yes|true|on | no|false|off
360 439
440See gvpe.protocol(7) for a description of the RAW IP transport protocol.
441
361Enable the RAW IPv4 transport using the C<ip-proto> protocol 442Enable the RAW IPv4 transport using the C<ip-proto> protocol
362(default: C<no>). This is the best choice, since the minimum overhead per 443(default: C<no>).
363packet is only 38 bytes, as opposed to UDP's 58 (or TCP's 60+).
364 444
365=item enable-tcp = yes|true|on | no|false|off 445=item enable-tcp = yes|true|on | no|false|off
366 446
447See gvpe.protocol(7) for a description of the TCP transport protocol.
448
367Enable the TCPv4 transport using the C<tcp-port> port 449Enable the TCPv4 transport using the C<tcp-port> port
368(default: C<no>). Support for this horribly unsuitable protocol is only 450(default: C<no>). Support for this transport protocol is only available
369available when gvpe was compiled using the C<--enable-tcp> option. Never 451when gvpe was compiled using the C<--enable-tcp> option.
370use this transport unless you really must, it is very inefficient and
371resource-intensive compared to the other transports (except for DNS, which
372is worse).
373 452
374=item enable-udp = yes|true|on | no|false|off 453=item enable-udp = yes|true|on | no|false|off
454
455See gvpe.protocol(7) for a description of the UDP transport protocol.
375 456
376Enable the UDPv4 transport using the C<udp-port> port (default: C<no>, 457Enable the UDPv4 transport using the C<udp-port> port (default: C<no>,
377unless no other protocol is enabled for a node, in which case this 458unless no other protocol is enabled for a node, in which case this
378protocol is enabled automatically). This is a good general choice since 459protocol is enabled automatically).
379UDP tunnels well through many firewalls.
380 460
381NOTE: Please specify C<enable-udp = yes> if you want t use it even though 461NOTE: Please specify C<enable-udp = yes> if you want t use it even though
382it might get switched on automatically, as some future version might 462it might get switched on automatically, as some future version might
383default to another default protocol. 463default to another default protocol.
464
465=item icmp-type = integer
466
467Sets the type value to be used for outgoing (and incoming) packets sent
468via the ICMP transport.
469
470The default is C<0> (which is C<echo-reply>, also known as
471"ping-replies"). Other useful values include C<8> (C<echo-request>, a.k.a.
472"ping") and C<11> (C<time-exceeded>), but any 8-bit value can be used.
473
474=item if-up-data = value
475
476The value specified using this directive will be passed to the C<if-up>
477script in the environment variable C<IFUPDATA>.
384 478
385=item inherit-tos = yes|true|on | no|false|off 479=item inherit-tos = yes|true|on | no|false|off
386 480
387Wether to inherit the TOS settings of packets sent to the tunnel when 481Wether to inherit the TOS settings of packets sent to the tunnel when
388sending packets to this node (default: C<yes>). If set to C<yes> then 482sending packets to this node (default: C<yes>). If set to C<yes> then

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines