/mandos/release

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

« 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: (237.7.89 trunk)
  • mto: This revision was merged to the branch mainline in revision 290.
  • 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
 
38
42
 
39
43
case "$1" in
40
44
    start)
41
 
        /usr/sbin/brctl addbr "$BRIDGE"
42
 
        for port in $PORTS; do
43
 
            /usr/sbin/brctl addif "$BRIDGE" "$port"
 
45
        "$brctl" addbr "$BRIDGE"
 
46
        for address in $PORT_ADDRESSES; do
 
47
            interface=`addrtoif "$address"`
 
48
            "$brctl" addif "$BRIDGE" "$interface"
 
49
            ip link set dev "$interface" up
44
50
        done
45
 
        ip link set up "$BRIDGE"
 
51
        ip link set dev "$BRIDGE" up
 
52
        sleep "$DELAY"
46
53
        if [ -n "$IPADDRS" ]; then
47
54
            for ipaddr in $IPADDRS; do
48
55
                ip addr add "$ipaddr" dev "$BRIDGE"
55
62
        fi
56
63
        ;;
57
64
    stop)
58
 
        ip link set down "$BRIDGE"
59
 
        for port in $PORTS; do
60
 
            /usr/sbin/brctl delif "$BRIDGE" "$port"
 
65
        ip link set dev "$BRIDGE" down
 
66
        for address in $PORT_ADDRESSES; do
 
67
            interface=`addrtoif "$address"`
 
68
            ip link set dev "$interface" down
 
69
            "$brctl" delif "$BRIDGE" "$interface"
61
70
        done
62
 
        /usr/sbin/brctl delbr "$BRIDGE"
 
71
        "$brctl" delbr "$BRIDGE"
63
72
        ;;
64
73
    files)
65
74
        echo /bin/ip