#
# Configuration for floppyfw
#
# Fill in the blanks.
#
# For configuring of modules to use : /modules.lst
# For configuring logging: /syslogd.cfg
# For configuring network interface cards (usually not necessary): /syslinux.cfg
# For configuring firewall rules and incoming traffic: /firewall.ini
#
#
# Outside network:
#
#
# DHCP is the hook for the DHCP-client for the outside interface. 
# If used, you may have hangups of connections when the client has
# to get a new IP-address.
#
#OUTSIDE_IP=
OUTSIDE_IP=192.168.1.2
#
# eth0 default device.
#
OUTSIDE_DEV=eth0
#
# Not nescessary to set these if you are using DHCP
#
OUTSIDE_NETMASK=255.255.255.0
OUTSIDE_BROADCAST=192.168.1.255
#
# 
# Your inside network, this has 10.42.42.* set as default, this is 
# addresses assigned for internal networks according to RFC 1918.
#
# eth1 is the default device for the internal network.
#
INSIDE_DEV=eth1
INSIDE_IP=192.168.101.1
INSIDE_NETWORK=192.168.101.0
INSIDE_NETMASK=255.255.255.0
INSIDE_BROADCAST=192.168.101.255

# Extra client-only subnet.
#
# Comment out the device to disable that subnet
#
INSIDE_DEV2=eth2
INSIDE_IP2=192.168.102.1
INSIDE_NETWORK2=192.168.102.0
INSIDE_NETMASK2=255.255.255.0
INSIDE_BROADCAST2=192.168.102.255
#
INSIDE_DEV3=eth3
INSIDE_IP3=192.168.103.1
INSIDE_NETWORK3=192.168.103.0
INSIDE_NETMASK3=255.255.255.0
INSIDE_BROADCAST3=192.168.103.255
#
INSIDE_DEV4=eth4
INSIDE_IP4=192.168.104.1
INSIDE_NETWORK4=192.168.104.0
INSIDE_NETMASK4=255.255.255.0
INSIDE_BROADCAST4=192.168.104.255
#
INSIDE_DEV5=eth5
INSIDE_IP5=192.168.105.1
INSIDE_NETWORK5=192.168.105.0
INSIDE_NETMASK5=255.255.255.0
INSIDE_BROADCAST5=192.168.105.255

#
# Misc
# These are not nescessary to set if you are using DHCP.
#
DEFAULT_GATEWAY=192.168.1.1
NAME_SERVER_IP1=212.54.64.170
NAME_SERVER_IP2=212.54.64.171
DOMAIN=homebase.dk
HOSTNAME=nimbus

#
# Servers with port forwarding
#
# ftp, ssh, web, ident, ldap, mail and afpovertcp (AppleShare/IP)
SERVER_IP=192.168.101.2
SERVER_PORTS="21 22 80 113 389,636 25,110,143,220,993,995 548,12000,12001,12002,12003,12004,12005"
#
# FileMaker
SERVER_IP2=192.168.101.3
SERVER_PORTS2="5003"



#
# (y)es or (n)o
#
OPEN_SHELL=y
ONLY_8M=n

# 
# Turning on syslogd and klogd. 
# This is a nice thing but will eat CPU which is why it is turned 
# off by default.
#
USE_SYSLOG=y

# This SYSLOG does not use syslogd.conf so we have to set things here.
# Flags: 
# Log to /dev/tty3 instead of /var/log/messages which aren't exactly a 
# good idea on a ramdisk.
# -O /dev/tty3
# Log to network. host:port
# -R 10.42.42.42:514
# Log to both network and file:
# -L
# --MARK-- 0 is no mark.
# -m 0
SYSLOG_FLAGS="-m 360 -O /dev/tty3"
[ ${SERVER_IP} ] && SYSLOG_FLAGS="${SYSLOG_FLAGS} -R ${SERVER_IP}:514"

