Statistics
| Branch: | Tag: | Revision:

root / kvm-ifup @ 73c2276d

History | View | Annotate | Download (1.4 kB)

1
#!/bin/bash
2

    
3
# This is an example of a Ganeti kvm ifup script that configures network
4
# interfaces based on the initial deployment of the Okeanos project
5

    
6
source /etc/default/snf-network
7
source /usr/lib/snf-network/common.sh
8

    
9
FROM=FROM${INTERFACE^^}
10
TO=TO${INTERFACE^^}
11

    
12
try clear_routed_setup_ipv4
13
try clear_routed_setup_ipv6
14
try clear_routed_setup_firewall
15
try clear_ebtables
16
try clear_nfdhcpd
17

    
18
if [ "$MODE" = "routed" ]; then
19
  TABLE=$LINK
20
  ip link set $INTERFACE addr $TAP_CONSTANT_MAC up
21
  INDEV=$INTERFACE
22
  DROPDHCPREQCMD="iptables -A FORWARD -i $INTERFACE -p udp --dport 67 -j DROP"
23
elif [ "$MODE" = "bridged" ]; then
24
  ip link set $INTERFACE up
25
  brctl addif $BRIDGE $INTERFACE
26
  INDEV=$BRIDGE
27
  try init_ebtables
28
  DROPDHCPREQCMD="runlocked $RUNLOCKED_OPTS ebtables -A $FROM -p ipv4 --ip-protocol udp --ip-destination-port 67 -j DROP"
29
fi
30

    
31

    
32
for tag in $NETWORK_TAGS; do
33
  case $tag in
34
  $IP_LESS_ROUTED_TAG)
35
    try routed_setup_ipv4
36
    try routed_setup_ipv6
37
    try routed_setup_firewall
38
  ;;
39
  $NFDHCPD_TAG)
40
    # Drop unicast BOOTP/DHCP packets
41
    $DROPDHCPREQCMD
42
    try setup_nfdhcpd
43
  ;;
44
  $MAC_FILTERED_TAG)
45
    try setup_ebtables
46
  ;;
47
  $MASQ_TAG)
48
    try setup_masq
49
  ;;
50
  $DNS_TAG)
51
    get_rev4_info "$IP"
52
    get_eui64 "$MAC" "$SUBNET6"
53
    get_rev6_info "$EUI64"
54
    $SNF_NETWORK_LOG $0 "update dns for $GANETI_INSTANCE_NAME $IP $EUI64"
55
    update_all add
56
  ;;
57

    
58
  esac
59
done
60

    
61
exit 0