3
# This is an example of a Mandos client network hook. This hook
4
# brings up a bridge interface as specified in a separate
5
# configuration file. To be used, this file and any needed
6
# configuration file(s) should be copied into the
7
# /etc/mandos/network-hooks.d directory.
9
# Copying and distribution of this file, with or without modification,
10
# are permitted in any medium without royalty provided the copyright
11
# notice and this notice are preserved. This file is offered as-is,
12
# without any warranty.
16
CONFIG="$MANDOSNETHOOKDIR/bridge.conf"
18
# Read config file, which must set "BRIDGE", "PORTS", and optionally
19
# "IPADDRS" and "ROUTES".
20
if [ -e "$CONFIG" ]; then
24
if [ -z "$BRIDGE" -o -z "$PORTS" ]; then
28
if [ -n "$DEVICE" -a "$DEVICE" != "$BRIDGE" ]; then
32
for b in /sbin/brctl /usr/sbin/brctl; do
41
"$brctl" addbr "$BRIDGE"
42
for port in $PORTS; do
43
"$brctl" addif "$BRIDGE" "$port"
45
ip link set up "$BRIDGE"
46
if [ -n "$IPADDRS" ]; then
47
for ipaddr in $IPADDRS; do
48
ip addr add "$ipaddr" dev "$BRIDGE"
51
if [ -n "$ROUTES" ]; then
52
for route in $ROUTES; do
53
ip route add "$route" dev "$BRIDGE"
58
ip link set down "$BRIDGE"
59
for port in $PORTS; do
60
"$brctl" delif "$BRIDGE" "$port"
62
"$brctl" delbr "$BRIDGE"