Statistics
| Branch: | Tag: | Revision:

root / tools / kvm-ifup.in @ f299ca21

History | View | Annotate | Download (1.9 kB)

1
#!/bin/sh
2
#
3

    
4
# Copyright (C) 2011 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
	# Connect the interface to the bridge
40
	brctl addif $BRIDGE $INTERFACE
41
else
42
	if [ -z "$IP" ]; then
43
		echo "Routed NIC but no IP address specified"
44
		exit 1
45
	fi
46

    
47
	# Route traffic targeted at the IP to the interface
48
	if [ -n "$LINK" ]; then
49
		while ip rule del dev $INTERFACE; do :; done
50
		ip rule add dev $INTERFACE table $LINK
51
		ip route replace $IP table $LINK proto static dev $INTERFACE
52

    
53
	else
54
		ip route replace $IP proto static dev $INTERFACE
55
	fi
56

    
57
	if [ -d "/proc/sys/net/ipv4/conf/$INTERFACE" ]; then
58
		echo 1 > /proc/sys/net/ipv4/conf/$INTERFACE/proxy_arp
59
		echo 1 > /proc/sys/net/ipv4/conf/$INTERFACE/forwarding
60
	fi
61

    
62
	if [ -d "/proc/sys/net/ipv6/conf/$INTERFACE" ]; then
63
		echo 1 > /proc/sys/net/ipv6/conf/$INTERFACE/proxy_ndp
64
		echo 1 > /proc/sys/net/ipv6/conf/$INTERFACE/forwarding
65
	fi
66
fi