Como criar uma ponte OVS em centos (Openstack) interface ipv6

1

Eu estou tentando criar uma rede de pontes ovs para openstack (packstack). Estou encontrando um problema de acordo com a documentação necessária para criar a interface, conforme mostrado abaixo.

/ etc / sysconfig / scripts de rede / ifcfg-br-ex

DEVICE=br-ex
DEVICETYPE=ovs
TYPE=OVSBridge
BOOTPROTO=static
IPADDR=192.168.122.212 # Old eth0 IP since we want the network restart to not 
                       # kill the connection, otherwise pick something outside your dhcp range
NETMASK=255.255.255.0  # your netmask
GATEWAY=192.168.122.1  # your gateway
DNS1=192.168.122.1     # your nameserver
ONBOOT=yes

/ etc / sysconfig / scripts de rede / ifcfg-eth0

DEVICE=eth0
TYPE=OVSPort
DEVICETYPE=ovs
OVS_BRIDGE=br-ex
ONBOOT=yes

A configuração existente no hetzner é a seguinte:

/ etc / sysconfig / scripts de rede / ifcfg-eth0

DEVICE=eth0
ONBOOT=yes
HWADDR=hardware address
BOOTPROTO=none
IPADDR=<public ip>
NETMASK=255.255.255.255
SCOPE="peer <gateway ip>"
IPV6INIT=yes
IPV6ADDR=<ipv6 address>/64
IPV6_DEFAULTGW=fe80::1
IPV6_DEFAULTDEV=eth0

/ etc / sysconfig / scripts de rede / router-eth0

### Hetzner Online GmbH - installimage
# routing for eth0
ADDRESS0=0.0.0.0
NETMASK0=0.0.0.0
GATEWAY0=<gateway ip>

Como configurar o br-ex (OVS bridge) no servidor hetzner onde o gateway da interface eth0 (ipv6) é mencionado em route-eth0?

    
por Pranav 23.09.2016 / 18:09

0 respostas