2015-11-28 14:25:29 +00:00
|
|
|
[broker]
|
|
|
|
; IP address the broker will listen and accept tunnels on
|
|
|
|
address={{ ansible_default_ipv4.address }}
|
|
|
|
; Ports where the broker will listen on
|
|
|
|
port={{ sn_l2tp_tb_port }}
|
|
|
|
; Interface with that IP address
|
|
|
|
interface=eth0
|
|
|
|
; Maximum number of cached cookies, required for establishing a
|
|
|
|
; session with the broker
|
|
|
|
max_cookies=1024
|
|
|
|
; Maximum number of tunnels that will be allowed by the broker
|
2015-12-03 21:01:23 +00:00
|
|
|
max_tunnels=50
|
2015-11-28 14:25:29 +00:00
|
|
|
; Tunnel port base
|
|
|
|
port_base=15000
|
|
|
|
; Tunnel id base
|
|
|
|
tunnel_id_base=100
|
|
|
|
; Tunnel timeout interval in seconds
|
|
|
|
tunnel_timeout=60
|
|
|
|
; Should PMTU discovery be enabled
|
|
|
|
pmtu_discovery=false
|
|
|
|
; Namespace (for running multiple brokers); note that you must also
|
|
|
|
; configure disjunct ports, and tunnel identifiers in order for
|
|
|
|
; namespacing to work
|
|
|
|
namespace=troisdorf
|
|
|
|
|
|
|
|
[log]
|
|
|
|
; Log filename
|
|
|
|
filename=/var/log/tunneldigger-broker.log
|
|
|
|
; Verbosity
|
|
|
|
verbosity=DEBUG
|
|
|
|
; Should IP addresses be logged or not
|
|
|
|
log_ip_addresses=false
|
|
|
|
|
|
|
|
[hooks]
|
|
|
|
; Arguments to the session.{up,pre-down,down} hooks are as follows:
|
|
|
|
;
|
|
|
|
; <tunnel_id> <session_id> <interface> <mtu> <endpoint_ip> <endpoint_port> <local_port>
|
|
|
|
;
|
|
|
|
; Arguments to the session.mtu-changed hook are as follows:
|
|
|
|
;
|
|
|
|
; <tunnel_id> <session_id> <interface> <old_mtu> <new_mtu>
|
|
|
|
;
|
|
|
|
|
|
|
|
; Called after the tunnel interface goes up
|
|
|
|
session.up=/srv/tunneldigger/bataddif.sh
|
|
|
|
; Called just before the tunnel interface goes down
|
|
|
|
session.pre-down=/srv/tunneldigger/batdelif.sh
|
|
|
|
; Called after the tunnel interface goes down
|
|
|
|
session.down=
|
|
|
|
; Called after the tunnel MTU gets changed because of PMTU discovery
|
|
|
|
session.mtu-changed=
|