Correctly form the delete route/route6 request.
[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 # Send a gratiuitous ARP for bind address
57 #set send_garp no
58
59 # Gateway address given to clients
60 #set peer_address 0.0.0.0
61
62 # Default throttle rate in kb/s
63 #set throttle_speed 0
64
65 # Number of buckets to allocate for throttling
66 #set throttle_buckets 3000
67
68 # If set to true, dump current speed to stderr every second
69 #set dump_speed no
70
71 # Number of packets to read from tun/udp/cluster fd when select
72 # returns readable
73 #set multi_read_count 10
74
75 # Set scheduling priority of process to SCHED_FIFO
76 #set scheduler_fifo no
77
78 # Lock pages into memory
79 #set lock_pages no
80
81 # Maximum number of host unreachable packets to send per second
82 #set icmp_rate 0
83
84 # Maximum number of downstream packets per 0.1s to handle for each
85 # session (0 = ulimited)
86 #set packet_limit 0
87
88 # Cluster multicast address, interface
89 #set cluster_address 239.192.13.13
90 #set cluster_interface eth0
91
92 # Cluster multicast TTL
93 #set cluster_mcast_ttl 1
94
95 # Cluster timers (1/10th second)
96 #set cluster_hb_interval 5
97 #set cluster_hb_timeout 150
98
99 # Minimum number of slaves before master withdraws routes
100 #set cluster_master_min_adv 1
101
102 # IPv6 address prefix
103 #set ipv6_prefix ::
104
105 # Drop/kill sessions
106 #load plugin "sessionctl"
107
108 # Throttle/snoop based on RADIUS
109 #load plugin "autothrottle"
110 #load plugin "autosnoop"
111
112 # Control throttle/snoop with nsctl
113 #load plugin "throttlectl"
114 #load plugin "snoopctl"
115
116 # Punt RX speed if not supplied
117 #load plugin "setrxspeed"
118
119 # Remove domain from username
120 #load plugin "stripdomain"
121
122 # Walled garden
123 #load plugin "garden"