81d65f0b3d
Previously, eth0 was set as the nova flat interface. This interface is used to bridge VM traffic between instances and should not have an IP. It's a problem when you associate an interface with an IP to the FLAT_INTERFACE. Change-Id: I38c516094430e2d55b1b4c047a1bbcfe711a2dff
26 lines
820 B
Bash
Executable File
26 lines
820 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /opt/kolla/config-nova.sh
|
|
|
|
# Configure eth1 as a physcial interface for nova flat network
|
|
cat > /etc/sysconfig/network-scripts/ifcfg-$FLAT_INTERFACE <<EOF
|
|
DEVICE="$FLAT_INTERFACE"
|
|
BOOTPROTO="none"
|
|
ONBOOT="yes"
|
|
TYPE="Ethernet"
|
|
EOF
|
|
|
|
/usr/sbin/ifup $FLAT_INTERFACE
|
|
|
|
cfg=/etc/nova/nova.conf
|
|
|
|
crudini --set $cfg DEFAULT network_manager nova.network.manager.FlatDHCPManager
|
|
crudini --set $cfg DEFAULT firewall_driver nova.virt.libvirt.firewall.IptablesFirewallDriver
|
|
crudini --set $cfg DEFAULT network_size 254
|
|
crudini --set $cfg DEFAULT allow_same_net_traffic False
|
|
crudini --set $cfg DEFAULT multi_host True
|
|
crudini --set $cfg DEFAULT send_arp_for_ha True
|
|
crudini --set $cfg DEFAULT share_dhcp_address True
|
|
crudini --set $cfg DEFAULT force_dhcp_release True
|
|
crudini --set $cfg DEFAULT flat_network_bridge br100
|