]> git.llucax.com Git - software/pymin.git/blob - doc/config-examples/pymin.devel.ini
Move ip_forward activation to a function.
[software/pymin.git] / doc / config-examples / pymin.devel.ini
1
2 ; all configuration variables in the DEFAULT section are inherited by all
3 ; other sections, so it's a good place to add common variables and default
4 ; values
5 [DEFAULT]
6 ; this are helper variables, not used by pymin (used for interpolation in
7 ; other variables)
8 pymind-data-dir = var/lib/pymin
9 pymind-config-dir = %(pymind-data-dir)s/config
10 pymind-pickle-dir = %(pymind-data-dir)s/pickle
11 ; this variables are used by pymin's services, and are reasonable defaults
12 pickle-dir = %(pymind-pickle-dir)s/%(__name__)s
13 config-dir = %(pymind-config-dir)s/%(__name__)s
14
15 ; pymind daemon configuration
16 [pymind]
17 ; IP and port where pymind should listen for commands
18 bind-addr = 0.0.0.0
19 bind-port = 9999
20 ; services plug-ins to use
21 services = dhcp qos firewall nat ppp vpn ip dns proxy vrrp
22 ; directories where to find those plug-ins
23 services-dirs = services
24
25
26
27 ; SERVICES CONFIGURATION
28 ; ----------------------
29 ;
30 ; all following sections are for services configuration, a section per service
31
32 [firewall]
33 ; use the pickle-dir and config-dir values provided by DEFAULT section
34
35 [nat]
36 ; use the pickle-dir value provided by DEFAULT section
37
38 [ppp]
39 ; use the pickle-dir value provided by DEFAULT section
40 ; helper variable, not used by pymin
41 config-base-dir    = %(config-dir)s/%(__name__)s
42 ; variables used by pymin
43 config-options-dir = %(config-base-dir)s
44 config-pap-dir     = %(config-base-dir)s
45 config-chap-dir    = %(config-base-dir)s
46 config-peers-dir   = %(config-base-dir)s/peers
47
48 [ip]
49 ; use the pickle-dir and config-dir values provided by DEFAULT section
50
51 [dns]
52 ; use the pickle-dir value provided by DEFAULT section
53 config-named-dir = %(config-dir)s
54 config-zones-dir = %(config-dir)s/zones
55
56 [dhcp]
57 ; use the pickle-dir and config-dir values provided by DEFAULT section
58
59 [proxy]
60 ; use the pickle-dir and config-dir values provided by DEFAULT section
61
62 [vrrp]
63 ; use the pickle-dir and config-dir values provided by DEFAULT section
64 pid-dir = /tmp
65
66 [vpn]
67 ; use the pickle-dir and config-dir values provided by DEFAULT section
68
69 [qos]
70 ; use the pickle-dir and config-dir values provided by DEFAULT section
71
72 ; vim: set filetype=dosini :