Bump Standard to Version 3.8.2 (no further changes)
[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 # Latest change: Don Okt 12 10:50:51 CEST 2006 [mika]
7 ################################################################################
8
9 # configuration for grml-router:
10 # IPTABLES=/sbin/iptables       # the iptables binary
11 OUTDEV='auto'                   # outgoing device [auto|default|eth0|...]
12
13 # configuration for grml-bridge:
14 # BRCTL=/usr/sbin/brctl         # the brctl binary
15 BRIDGE_NAME='br0'               # name used for the bridge
16 BRIDGE_DEVICES='eth0 eth1'      # the devices used for bilding the bridge
17 STP='on'                        # enable STP (Spanning-Tree Protocol)? on|off
18 BRIDGE_CONFIG='DHCP'            # Use DHCP, Fixed IP or Ipless? DHCP|FIXED|NONE
19 BRIDGE_IP="192.168.1.1/24"      # ip address used for bridge
20
21 # configuration for grml-ap:
22 # AP_DEVICE='wlan0'             # device used as access point
23 # AP_ESSID='grml-ap'            # set essid of accesspoint, by default (if unset) it's grml-ap
24 # AP_ENC='secretkey'            # use encryption? 'off' deactivates encryption
25                                 # (default), any other value is used as WEP encr. key
26 # ATH_MODE=2                    # mode for ath device
27
28 ## END OF FILE #################################################################