]> git.infradead.org Git - users/dwmw2/vpnc-scripts.git/blob - xinetd.netns.conf
On newer versions of Windows, need `validate=no` when adding DNS servers
[users/dwmw2/vpnc-scripts.git] / xinetd.netns.conf
1 #
2 # This is the master xinetd configuration file. Settings in the
3 # default section will be inherited by all service configurations
4 # unless explicitly overridden in the service configuration. See
5 # xinetd.conf in the man pages for a more detailed explanation of
6 # these attributes.
7
8 defaults
9 {
10 # The next two items are intended to be a quick access place to
11 # temporarily enable or disable services.
12 #
13 #       enabled         =
14 #       disabled        =
15
16 # Define general logging characteristics.
17         log_type        = SYSLOG daemon info 
18         log_on_failure  = HOST
19         log_on_success  = PID HOST DURATION EXIT
20
21 # Define access restriction defaults
22 #
23 #       no_access       =
24 #       only_from       =
25 #       max_load        = 0
26         cps             = 50 10
27         instances       = 50
28         per_source      = 10
29
30 # Address and networking defaults
31 #
32 #       bind            =
33 #       mdns            = yes
34         v6only          = no
35
36 # setup environmental attributes
37 #
38 #       passenv         =
39         groups          = yes
40         umask           = 002
41
42 # Generally, banners are not used. This sets up their global defaults
43 #
44 #       banner          =
45 #       banner_fail     =
46 #       banner_success  =
47 }
48
49 service smtp
50 {
51         disable = no
52         port = 25
53         socket_type = stream
54         protocol = tcp
55         wait = no
56         user = root
57         server = /usr/bin/nc
58         server_args = smtp.company.internal 25
59 #       bind = fec0::1
60 }
61
62 service imaps
63 {
64         disable = no
65         port = 993
66         socket_type = stream
67         protocol = tcp
68         wait = no
69         user = root
70         server = /usr/bin/nc
71         server_args = imap.company.internal 993
72 #       bind = fec0::1
73 }
74