bash_completion: Enable extglob while parsing file
[ganeti-local] / tools / kvm-ifup.in
1 #!/bin/bash
2 #
3
4 # Copyright (C) 2011, 2012 Google Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 # 02110-1301, USA.
20
21 if [ -z "$INTERFACE" ]; then
22         echo "No network interface specified"
23         exit 1
24 fi
25
26 if [ -z "$MODE" ]; then
27         echo "MODE not specified"
28         exit 1
29 fi
30
31 # Execute the user-supplied network script, if applicable
32 if [ -x "@SYSCONFDIR@/ganeti/kvm-vif-bridge" ]; then
33         exec @SYSCONFDIR@/ganeti/kvm-vif-bridge
34 fi
35
36 ip link set $INTERFACE up
37
38 if [ "$MODE" = "bridged" ]; then
39         ip link set $INTERFACE mtu $(</sys/class/net/${BRIDGE}/mtu)
40
41         # Connect the interface to the bridge
42         brctl addif $BRIDGE $INTERFACE
43 else
44         if [ -z "$IP" ]; then
45                 echo "Routed NIC but no IP address specified"
46                 exit 1
47         fi
48
49         # Route traffic targeted at the IP to the interface
50         if [ -n "$LINK" ]; then
51                 while ip rule del dev $INTERFACE; do :; done
52                 ip rule add dev $INTERFACE table $LINK
53                 ip route replace $IP table $LINK proto static dev $INTERFACE
54
55         else
56                 ip route replace $IP proto static dev $INTERFACE
57         fi
58
59         if [ -d "/proc/sys/net/ipv4/conf/$INTERFACE" ]; then
60                 echo 1 > /proc/sys/net/ipv4/conf/$INTERFACE/proxy_arp
61                 echo 1 > /proc/sys/net/ipv4/conf/$INTERFACE/forwarding
62         fi
63
64         if [ -d "/proc/sys/net/ipv6/conf/$INTERFACE" ]; then
65                 echo 1 > /proc/sys/net/ipv6/conf/$INTERFACE/proxy_ndp
66                 echo 1 > /proc/sys/net/ipv6/conf/$INTERFACE/forwarding
67         fi
68 fi