/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to network-hooks.d/bridge

  • Committer: teddy at recompile
  • Date: 2011-12-31 13:25:58 UTC
  • mto: This revision was merged to the branch mainline in revision 541.
  • Revision ID: teddy@recompile.se-20111231132558-z0dh7qgofgctmgri
* network-hooks.s/bridge: Don't use interface names directly; search
                          for interface names using their address.
  (addrtoif): New function.
* network-hooks.s/bridge.conf (PORTS): Removed.
  (PORT_ADDRESSES): New.
* network-hooks.s/wireless: Don't use interface names directly; search
                            for interface names using their address.
  (addrtoif): New function.
* network-hooks.s/wireless.conf: Specify address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
CONFIG="$MANDOSNETHOOKDIR/bridge.conf"
17
17
 
18
 
# Read config file, which must set "BRIDGE", "PORTS", and optionally
19
 
# "IPADDRS" and "ROUTES".
 
18
addrtoif(){
 
19
    grep -liFe "$1" /sys/class/net/*/address | sed -e 's,.*/\([^/]*\)/[^/]*,\1,'
 
20
}
 
21
 
 
22
# Read config file, which must set "BRIDGE", "PORT_ADDRESSES", and
 
23
# optionally "IPADDRS" and "ROUTES".
20
24
if [ -e "$CONFIG" ]; then
21
25
    . "$CONFIG"
22
26
fi
23
27
 
24
 
if [ -z "$BRIDGE" -o -z "$PORTS" ]; then
 
28
if [ -z "$BRIDGE" -o -z "$PORT_ADDRESSES" ]; then
25
29
    exit
26
30
fi
27
31
 
39
43
case "$1" in
40
44
    start)
41
45
        "$brctl" addbr "$BRIDGE"
42
 
        for port in $PORTS; do
43
 
            "$brctl" addif "$BRIDGE" "$port"
44
 
            ip link set dev "$port" up
 
46
        for address in $PORT_ADDRESSES; do
 
47
            interface=`addrtoif "$address"`
 
48
            "$brctl" addif "$BRIDGE" "$interface"
 
49
            ip link set dev "$interface" up
45
50
        done
46
51
        ip link set dev "$BRIDGE" up
47
52
        sleep "$DELAY"
58
63
        ;;
59
64
    stop)
60
65
        ip link set dev "$BRIDGE" down
61
 
        for port in $PORTS; do
62
 
            ip link set dev "$port" down
63
 
            "$brctl" delif "$BRIDGE" "$port"
 
66
        for address in $PORT_ADDRESSES; do
 
67
            interface=`addrtoif "$address"`
 
68
            ip link set dev "$interface" down
 
69
            "$brctl" delif "$BRIDGE" "$interface"
64
70
        done
65
71
        "$brctl" delbr "$BRIDGE"
66
72
        ;;