source: hybrid/branches/releng-9.0/nanobsd/files/etc/rc.conf@ 10382

Last change on this file since 10382 was 10382, checked in by rick, 13 years ago

Named/Bind configuration for hybrid setup.

  • Property svn:eol-style set to LF
File size: 1.6 KB
Line 
1## Building options
2dumpdev="NO" # No kernel dumps as we don't have a place to
3 # store them
4ipv6_network_interfaces="NONE" # No IPv6 support for now, near feature... ;-)
5
6# NTP server needs working config with WL network or internet on boot
7# so some warnings might pop up, but no harm
8ntpdate_enable="YES"
9ntpd_enable="YES"
10ntpd_sync_on_start="YES"
11ntpd_flags="-p /var/run/ntpd.pid -f /var/db/ntp.drift"
12
13# We need no running mail server
14sendmail_enable="NONE"
15
16# Don't let syslog accept input from other remote hosts
17syslogd_enable="YES"
18syslogd_flags="-s -A -c"
19
20# Remote login without DNS checking as it might not also be functionable
21# -u0 prevent sshd from making DNS requests unless the authentication mechanism
22# or configuration requires it.
23sshd_enable="YES"
24sshd_flags="-u0"
25
26# Don't update the motd as it not writeable, the update_nanobsd_motd is a
27# simple wrapper found at /usr/local/etc/rc.d supporting this featureg
28update_motd="NO"
29update_nanobsd_motd="YES"
30
31# Monitoring deamons
32nrpe2_enable="YES"
33snmpd_enable="YES"
34snmpd_flags="-a -LF w /var/log/snmpd.log"
35
36# HTTP(S) proxy server
37tinyproxy_enable="YES"
38
39# Make sure generated ssh keys are saved
40nanobsd_save_sshkeys_enable="YES"
41
42## Port extentions
43# Serve our clients some pretty cool IP address to at least get connected
44# Also some low-memory footprint dns resolver
45dnsmasq_enable="YES"
46named_auto_forward="YES"
47named_enable="NO"
48
49## WL ports extentions
50thttpd_enable="YES"
51http302_enable="YES"
52
53# Make sure generated ssh keys are saved
54nanobsd_save_sshkeys_enable="YES"
55
56#Hybrid
57openvpn_enable="YES"
58openvpn_if="tap"
Note: See TracBrowser for help on using the repository browser.