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