add cluster_mcast_ttl
[l2tpns.git] / etc / startup-config.default
1 # Debugging level
2 set debug 3
3
4 # Log file: comment out to use stderr, use "syslog:facility" for syslog
5 set log_file "/var/log/l2tpns"
6
7 # Write pid to this file
8 set pid_file "/var/run/l2tpns.pid"
9
10 # Shared secret with LAC
11 set l2tp_secret "secret"
12
13 # PPP counter and timer values
14 #set ppp_restart_time 3
15 #set ppp_max_configure 10
16 #set ppp_max_failure 5
17
18 # Only 2 DNS server entries are allowed
19 set primary_dns 10.0.0.1
20 set secondary_dns 10.0.0.2
21
22 # Can have multiple radius server entries, but ony one radius secret
23 set primary_radius 10.0.0.3
24 #set primary_radius_port 1645
25 #set secondary_radius 0.0.0.0
26 #set secondary_radius_port 1645
27 set radius_secret "secret"
28
29 # Acceptable authentication types (pap, chap) in order of preference
30 #set radius_authtypes "pap"
31
32 # Turn on or off Radius Accounting
33 #set radius_accounting no
34
35 # Port for DAE RADIUS requests
36 #set radius_dae_port 3799
37
38 # Allow multiple logins for the same username
39 #set allow_duplicate_users no
40
41 # Write usage accounting files into specified directory
42 set accounting_dir "/var/run/l2tpns/acct"
43
44 # Listen address for L2TP
45 #set bind_address 1.1.1.1
46
47 # Send a gratiuitous ARP for bind address
48 #set send_garp no
49
50 # Gateway address given to clients
51 #set peer_address 0.0.0.0
52
53 # Default throttle rate in kb/s
54 #set throttle_speed 0
55
56 # Number of buckets to allocate for throttling
57 #set throttle_buckets 3000
58
59 # If set to anything other than 0, setuid when initialised.
60 #set setuid 0
61
62 # If set to true, dump current speed to stderr every second
63 #set dump_speed no
64
65 # Number of packets to read from tun/udp/cluster fd when select
66 # returns readable
67 #set multi_read_count 10
68
69 # Set scheduling priority of process to SCHED_FIFO
70 #set scheduler_fifo no
71
72 # Lock pages into memory
73 #set lock_pages no
74
75 # Maximum number of host unreachable packets to send per second
76 #set icmp_rate 0
77
78 # Maximum number of downstream packets per 0.1s to handle for each
79 # session (0 = ulimited)
80 #set packet_limit 0
81
82 # Cluster multicast address, interface
83 #set cluster_address 239.192.13.13
84 #set cluster_interface eth0
85
86 # Cluster multicast TTL
87 #set cluster_mcast_ttl 1
88
89 # Cluster timers (1/10th second)
90 #set cluster_hb_interval 5
91 #set cluster_hb_timeout 150
92
93 # Minimum number of slaves before master withdraws routes
94 #set cluster_master_min_adv 1
95
96 # Drop/kill sessions
97 #load plugin "sessionctl"
98
99 # Throttle/snoop based on RADIUS
100 #load plugin "autothrottle"
101 #load plugin "autosnoop"
102
103 # Control throttle/snoop with nsctl
104 #load plugin "throttlectl"
105 #load plugin "snoopctl"
106
107 # Punt RX speed if not supplied
108 #load plugin "setrxspeed"
109
110 # Remove domain from username
111 #load plugin "stripdomain"
112
113 # Walled garden
114 #load plugin "garden"