Release new version 0.6.0
[grml-network.git] / routersetup
1 # Filename:      /etc/grml/routersetup
2 # Purpose:       configuration file for grml-router, grml-bridge and grml-ap
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see http://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2.
6 ################################################################################
7
8 # configuration for grml-router:
9 # IPTABLES=/sbin/iptables       # the iptables binary
10 OUTDEV='auto'                   # outgoing device [auto|default|eth0|...]
11
12 # configuration for grml-bridge and grml-sniff:
13 # BRCTL=/usr/sbin/brctl         # the brctl binary
14 BRIDGE_NAME='br0'               # name used for the bridge
15 BRIDGE_DEVICES='eth0 eth1'      # the devices used for bilding the bridge
16 STP='on'                        # enable STP (Spanning-Tree Protocol)? on|off
17 BRIDGE_CONFIG='DHCP'            # Use DHCP, Fixed IP or Ipless? DHCP|FIXED|NONE
18 BRIDGE_IP="192.168.1.1/24"      # ip address used for bridge
19
20 # configuration for grml-ap:
21 # AP_DEVICE='wlan0'             # device used as access point
22 # AP_ESSID='grml-ap'            # set essid of accesspoint, by default (if unset) it's grml-ap
23 # AP_ENC='secretkey'            # use encryption? 'off' deactivates encryption
24                                 # (default), any other value is used as WEP encr. key
25 # ATH_MODE=2                    # mode for ath device
26
27 ## END OF FILE #################################################################