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
35
for port in $PORTS; do
36
brctl addif "$BRIDGE" "$port"
38
ip link set up "$BRIDGE"
39
if [ -n "$IPADDRS" ]; then
40
for ipaddr in $IPADDRS; do
41
ip addr add "$ipaddr" dev "$BRIDGE"
44
if [ -n "$ROUTES" ]; then
45
for route in $ROUTES; do
46
ip route add "$route" dev "$BRIDGE"
51
ip link set down "$BRIDGE"
52
for port in $PORTS; do
53
brctl delif "$BRIDGE" "$port"