aboutsummaryrefslogtreecommitdiff
path: root/release/picobsd
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>1999-08-23 11:02:08 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>1999-08-23 11:02:08 +0000
commitd4c9c82f8d7fdedfa0c8b8ba5681d93ec2dd144d (patch)
treebd017cd5fa3e6f08416189711305e49c5d0a04fc /release/picobsd
parent42fd4cf364a10feacf68c8cfc8ad9305f64b6e4a (diff)
downloadsrc-d4c9c82f8d7fdedfa0c8b8ba5681d93ec2dd144d.tar.gz
src-d4c9c82f8d7fdedfa0c8b8ba5681d93ec2dd144d.zip
Add missing file from previous commit
Notes
Notes: svn path=/head/; revision=50212
Diffstat (limited to 'release/picobsd')
-rw-r--r--release/picobsd/net/floppy.tree/etc/rc.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/release/picobsd/net/floppy.tree/etc/rc.conf b/release/picobsd/net/floppy.tree/etc/rc.conf
new file mode 100644
index 000000000000..bd1745b4e7b1
--- /dev/null
+++ b/release/picobsd/net/floppy.tree/etc/rc.conf
@@ -0,0 +1,25 @@
+#!/bin/sh
+# $Id: rc.conf.en,v 1.2 1999/08/22 21:44:30 dwhite dead $
+swapfile="NO" # Set to name of swapfile if aux swapfile desired.
+### Network configuration sub-section ######################
+### Basic network options: ###
+hostname="pico.mydomain.edu" # Set this!
+firewall="NO" # firewall type (see /etc/rc.firewall) or NO
+tcp_extensions="NO" # Allow RFC1323 & RFC1644 extensions (or NO).
+network_interfaces="lo0" # List of network interfaces (lo0 is loopback).
+ifconfig_lo0="inet 127.0.0.1" # default loopback device configuration.
+#ifconfig_lo0_alias0="inet 127.0.0.254 netmask 0xffffffff" # Sample alias entry.
+### Network daemons options: ###
+inetd_enable="YES" # Run the network daemon dispatcher (or NO)
+inetd_flags="" # Optional flags to inetd
+snmpd_enable="YES" # Run the SNMP daemon (or NO)
+snmpd_flags="-C -c /etc/snmpd.conf" # Optional flags to snmpd
+### Network routing options: ###
+defaultrouter="NO" # Set to default gateway (or NO).
+static_routes="" # Set to static route list (or leave empty).
+gateway_enable="NO" # Set to YES if this host will be a gateway.
+arpproxy_all="" # replaces obsolete kernel option ARP_PROXYALL.
+### Allow local configuration override at the very end here ##
+if [ -f /etc/rc.conf.local ]; then
+ . /etc/rc.conf.local
+fi