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.10 by pcg, Thu Mar 17 22:24:31 2005 UTC vs.
Revision 1.18 by pcg, Thu Aug 7 17:30:27 2008 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
122the link is very stable lower values (e.g. C<2>) might work
123nicely. Values near or below C<1> makes no sense whatsoever.
124
125The default should be working ok for most links but will result in low
126throughput if packet loss is high.
127
75=item if-up = relative-or-absolute-path 128=item if-up = relative-or-absolute-path
76 129
77Sets the path of a script that should be called immediately after the 130Sets the path of a script that should be called immediately after the
78network interface is initialized (but not neccessarily up). The following 131network interface is initialized (but not neccessarily up). The following
79environment variables are passed to it (the values are just examples): 132environment variables are passed to it (the values are just examples).
133
134Variables that have the same value on all nodes:
80 135
81=over 4 136=over 4
82 137
83=item CONFBASE=/etc/gvpe 138=item CONFBASE=/etc/gvpe
84 139
85The configuration base directory. 140The configuration base directory.
86 141
87=item IFNAME=vpn0 142=item IFNAME=vpn0
88 143
89The interface to initialize. 144The network interface to initialize.
145
146=item IFTYPE=native # or tincd
147
148=item IFSUBTYPE=linux # or freebsd, darwin etc..
149
150The interface type (C<native> or C<tincd>) and the subtype (usually the
151OS name in lowercase) that this GVPE was configured for. Can be used to
152select the correct syntax to use for network-related commands.
90 153
91=item MTU=1436 154=item MTU=1436
92 155
93The MTU to set the interface to. You can use lower values (if done 156The MTU to set the interface to. You can use lower values (if done
94consistently on all hosts), but this is usually ineffective. 157consistently on all hosts), but this is usually ineffective.
95 158
159=item NODES=5
160
161The number of nodes in this GVPE network.
162
163=back
164
165Variables that are node-specific and with values pertaining to the node
166running this GVPE:
167
168=over 4
169
170=item IFUPDATA=string
171
172The value of the configuration directive C<if-up-data>.
173
96=item MAC=fe:fd:80:00:00:01 174=item MAC=fe:fd:80:00:00:01
97 175
98The MAC address to set the interface to. The script *must* set the 176The MAC address the network interface has to use.
99interface MAC to this value. You will most likely use one of these:
100 177
101 ip link set $IFNAME address $MAC mtu $MTU up # GNU/Linux 178Might be used to initialize interfaces on platforms where GVPE does not
102 ifconfig $IFNAME ether $MAC mtu $MTU up # FreeBSD 179do this automatically. Please see the C<gvpe.osdep(5)> manpage for
103 180platform-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 181
114=item NODENAME=branch1 182=item NODENAME=branch1
115 183
116The nickname of the current node, as passed to the gvpe daemon. 184The nickname of the node.
117 185
118=item NODEID=1 186=item NODEID=1
119 187
120The numerical node id of the current node. The first node mentioned in the 188The 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. 189node mentioned in the config file gets ID 1, the second ID 2 and so on.
122 190
123=back 191=back
124 192
193In addition, all node-specific variables (except C<NODEID>) will be
194available with a postfix of C<_nodeid>, which contains the value for that
195node, e.g. the C<MAC_1> variable contains the MAC address of node #1, while
196the C<NODENAME_22> variable contains the name of node #22.
197
125Here is a simple if-up script: 198Here is a simple if-up script:
126 199
127 #!/bin/sh 200 #!/bin/sh
128 ip link set $IFNAME address $MAC mtu $MTU up 201 ip link set $IFNAME up
129 [ $NODENAME = branch1 ] && ip addr add 10.0.0.1 dev $IFNAME 202 [ $NODENAME = branch1 ] && ip addr add 10.0.0.1 dev $IFNAME
130 [ $NODENAME = branch2 ] && ip addr add 10.1.0.1 dev $IFNAME 203 [ $NODENAME = branch2 ] && ip addr add 10.1.0.1 dev $IFNAME
131 ip route add 10.0.0.0/8 dev $IFNAME 204 ip route add 10.0.0.0/8 dev $IFNAME
132 205
133More complicated examples (using routing to reduce arp traffic) can be 206More complicated examples (using routing to reduce arp traffic) can be
228argument to the gvpe daemon. 301argument to the gvpe daemon.
229 302
230=item node-up = relative-or-absolute-path 303=item node-up = relative-or-absolute-path
231 304
232Sets a command (default: no script) that should be called whenever a 305Sets a command (default: no script) that should be called whenever a
233connection is established (even on rekeying operations). In addition 306connection is established (even on rekeying operations). In addition to
234to the variables passed to C<if-up> scripts, the following environment 307all the variables passed to C<if-up> scripts, the following environment
235variables will be set: 308variables will be set:
236 309
237=over 4 310=over 4
238 311
239=item DESTNODE=branch2 312=item DESTNODE=branch2
300 373
301=head2 NODE SPECIFIC SETTINGS 374=head2 NODE SPECIFIC SETTINGS
302 375
303The following settings are node-specific, that is, every node can have 376The following settings are node-specific, that is, every node can have
304different settings, even within the same gvpe instance. Settings that are 377different settings, even within the same gvpe instance. Settings that are
305executed before the first node section set the defaults, settings that are 378set before the first node section set the defaults, settings that are
306executed within a node section only apply to the given node. 379set within a node section only apply to the given node.
307 380
308=over 4 381=over 4
382
383=item allow-direct = nodename
384
385Allow direct connections to this node. See C<deny-direct> for more info.
309 386
310=item compress = yes|true|on | no|false|off 387=item compress = yes|true|on | no|false|off
311 388
312Wether to compress data packets sent to this host (default: C<yes>). 389Wether to compress data packets sent to this host (default: C<yes>).
313Compression is really cheap even on slow computers and has no size 390Compression is really cheap even on slow computers and has no size
316=item connect = ondemand | never | always | disabled 393=item connect = ondemand | never | always | disabled
317 394
318Sets the connect mode (default: C<always>). It can be C<always> (always 395Sets the connect mode (default: C<always>). It can be C<always> (always
319try to establish and keep a connection to the given host), C<never> 396try to establish and keep a connection to the given host), C<never>
320(never initiate a connection to the given host, but accept connections), 397(never initiate a connection to the given host, but accept connections),
321C<ondemand> (try to establish a connection on the first packet sent, and 398C<ondemand> (try to establish a connection when there are outstanding
322take it down after the keepalive interval) or C<disabled> (node is bad, 399packets in the queue and take it down after the keepalive interval) or
323don't talk to it). 400C<disabled> (node is bad, don't talk to it).
401
402=item deny-direct = nodename | *
403
404Deny direct connections to the specified node (or all nodes when C<*>
405is given). Only one node can be specified, but you can use multiple
406C<allow-direct> and C<deny-direct> statements. This only makes sense in
407networks with routers, as routers are required for indirect connections.
408
409Sometimes, a node cannot reach some other nodes for reasons of network
410connectivity. For example, a node behind a firewall that only allows
411conenctions to/from a single other node in the network. In this case one
412should specify C<deny-direct = *> and C<allow-direct = othernodename> (the other
413node I<must> be a router for this to work).
414
415The algorithm to check wether a connection may be direct is as follows:
416
4171. Other node mentioned in a C<allow-direct>? If yes, allow the connection.
418
4192. Other node mentioned in a C<deny-direct>? If yes, deny direct connections.
420
4213. Allow the connection.
422
423That is, C<allow-direct> takes precedence over C<deny-direct>.
424
425The check is done in both directions, i.e. both nodes must allow a direct
426connection before one is attempted, so you only need to specify connect
427limitations on one node.
324 428
325=item dns-domain = domain-suffix 429=item dns-domain = domain-suffix
326 430
327The DNS domain suffix that points to the DNS tunnel server for this node. 431The DNS domain suffix that points to the DNS tunnel server for this node.
328 432
387protocol is enabled automatically). 491protocol is enabled automatically).
388 492
389NOTE: Please specify C<enable-udp = yes> if you want t use it even though 493NOTE: Please specify C<enable-udp = yes> if you want t use it even though
390it might get switched on automatically, as some future version might 494it might get switched on automatically, as some future version might
391default to another default protocol. 495default to another default protocol.
496
497=item hostname = hostname | ip [can not be defaulted]
498
499Forces the address of this node to be set to the given dns hostname or ip
500address. It will be resolved before each connect request, so dyndns should
501work fine. If this setting is not specified and a router is available,
502then the router will be queried for the address of this node. Otherwise,
503the connection attempt will fail.
504
505=item icmp-type = integer
506
507Sets the type value to be used for outgoing (and incoming) packets sent
508via the ICMP transport.
509
510The default is C<0> (which is C<echo-reply>, also known as
511"ping-replies"). Other useful values include C<8> (C<echo-request>, a.k.a.
512"ping") and C<11> (C<time-exceeded>), but any 8-bit value can be used.
513
514=item if-up-data = value
515
516The value specified using this directive will be passed to the C<if-up>
517script in the environment variable C<IFUPDATA>.
392 518
393=item inherit-tos = yes|true|on | no|false|off 519=item inherit-tos = yes|true|on | no|false|off
394 520
395Wether to inherit the TOS settings of packets sent to the tunnel when 521Wether to inherit the TOS settings of packets sent to the tunnel when
396sending packets to this node (default: C<yes>). If set to C<yes> then 522sending packets to this node (default: C<yes>). If set to C<yes> then
403retries to establish a connection to this node. When a connection cannot 529retries to establish a connection to this node. When a connection cannot
404be established, gvpe uses exponential backoff capped at this value. It's 530be established, gvpe uses exponential backoff capped at this value. It's
405sometimes useful to set this to a much lower value (e.g. C<120>) on 531sometimes useful to set this to a much lower value (e.g. C<120>) on
406connections to routers that usually are stable but sometimes are down, to 532connections to routers that usually are stable but sometimes are down, to
407assure quick reconnections even after longer downtimes. 533assure quick reconnections even after longer downtimes.
534
535=item max-ttl = seconds
536
537Expire packets that couldn't be sent after this many seconds
538(default: C<60>). Gvpe will normally queue packets for a node without an
539active connection, in the hope of establishing a connection soon. This
540value specifies the maximum lifetime a packet will stay in the queue, if a
541packet gets older, it will be thrown away.
542
543=item max-queue = positive-number
544
545The maximum number of packets that will be queued (default: C<512>)
546for this node. If more packets are sent then earlier packets will be
547expired. See C<max-ttl>, above.
408 548
409=item router-priority = 0 | 1 | positive-number>=2 549=item router-priority = 0 | 1 | positive-number>=2
410 550
411Sets the router priority of the given host (default: C<0>, disabled). If 551Sets the router priority of the given host (default: C<0>, disabled). If
412some host tries to connect to another host without a hostname, it asks 552some host tries to connect to another host without a hostname, it asks
467 607
468gvpe(5), gvpe(8), gvpectrl(8). 608gvpe(5), gvpe(8), gvpectrl(8).
469 609
470=head1 AUTHOR 610=head1 AUTHOR
471 611
472Marc Lehmann <gvpe@plan9.de> 612Marc Lehmann <gvpe@schmorp.de>
473 613

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines