root/floppyfw/files/config.bridge

Revision 1, 2.2 KB (checked in by root, 6 years ago)

First post

Line 
1#
2# Configuration for panicfw
3
4# $Id: config.bridge,v 1.1.1.1 2004/08/31 13:33:28 thomasez Exp $
5
6#
7# Fill in the blanks.
8#
9
10# For configuring of modules to use,
11# this includes the network interfaces: /modules.lst
12
13# For configuring extra network interfaces and firewall rules
14# you may use network.ini
15
16#
17# Physical device layout:
18#
19# In the files /etc/outside.info and /etc/inside.info you will see
20# OUTSIDDE_DEVICE and INSIDE_DEVICE, those are the logical devices used by
21# firewall.init and friends..
22#
23# If you have only one network card you can set INSIDE_DEV to eth0:0
24# and it will use ip aliasing to make it all work.
25#
26OUTSIDE_DEV=eth0
27INSIDE_DEV=eth1
28
29#
30# List of ports you will open up from the outside and inwards on ALL
31# Machines. All ports, except 135 to 139 and 445 (all related to NetBIOS)
32# are open outwards.
33#
34ALLOW_INCOMING=22
35
36#
37# Password can be created in many ways. Youhave two (three) options,
38# DES_PASSWORD will accept a crypted strong
39# PASSWORD will accept a strong (the specific root password).
40
41# This will give you "ffw" as login password.
42# DES_PASSWORD=nCLm5JgCK0G5U
43PASSWORD=
44
45#
46# Done! Your floppyfw should already work by now.
47# Save this file and give it a shot !
48#
49#=============================================================================
50
51
52
53#-----------------------------------------------------------------------------
54
55#
56# Defaults and switches:
57#
58
59HOSTNAME=floppyfw
60DOMAIN=floppyfwsecured.com
61
62#
63# And for the logging the scripts use:
64# Default works for most purposes.
65#
66DEBUG_LOG="/dev/vc/3"
67
68#
69# Turning on syslogd and klogd.
70# This is a nice thing but will eat CPU which is why it is turned
71# off by default.
72# The firewall.ini file is where you can turn on logging of rejected packages.
73#
74USE_SYSLOG=n
75
76# Uncomment to log to /dev/vc/4 instead of /var/log/messages
77# which aren't exactly a good idea on a ramdisk.
78SYSLOG_TTY="-O $DEBUG_LOG"
79# Or the another virtual console than the other messages:
80# SYSLOG_TTY="-O /dev/vc/4"
81
82# Uncomment to log to network. host:port
83# SYSLOG_NET="-R 10.42.42.42:514"
84
85# Uncomment to not print a mark
86# SYSLOG_MARK="-m 0"
87
88[ "$SYSLOG_TTY" -a "$SYSLOG_NET" ] && SYSLOG_BOTH="-L"
89SYSLOG_FLAGS="$SYSLOG_MARK $SYSLOG_TTY $SYSLOG_NET $SYSLOG_BOTH"
90
Note: See TracBrowser for help on using the browser.