[QUOTE=aspiers;28432]
What other IP in the same subnet are you trying to ping? Did you try examining network traffic from both sides using wireshark or tcpdump?[/QUOTE]
I use network node (br-ex have 192.168.2.51, bind the eth0) to ping compute node(eth4 have 192.168.2.52), and use “tcpdump -i eth4 -c2 icmp” in compute node.
0 packets received by filter.
And run “tcpdump -i eth0” in network node when ping is keeping, no pass-through traffic on eth0, except STP packet generated from switch…
Seems like eth0 have not successfully binded with br-ex.
[QUOTE=aspiers;28446]Could you provide the output of these commands?
ip addr show
brctl show
ip route
iptables -nvL
ethtool eth0[/QUOTE]
Sorry for not replying sooner because the Chinese Dragon Boat Festival consecutive holidays.
network:~ # ip addr show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master ovs-system state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a3 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a4 brd ff:ff:ff:ff:ff:ff
inet6 fe80::21e:67ff:fec6:d6a4/64 scope link
valid_lft forever preferred_lft forever
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a5 brd ff:ff:ff:ff:ff:ff
inet6 fe80::21e:67ff:fec6:d6a5/64 scope link
valid_lft forever preferred_lft forever
5: eth3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a6 brd ff:ff:ff:ff:ff:ff
inet 172.24.12.148/24 brd 172.24.12.255 scope global eth3
valid_lft forever preferred_lft forever
inet6 fe80::21e:67ff:fec6:d6a6/64 scope link
valid_lft forever preferred_lft forever
6: br-ex: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether 42:3b:6b:9e:c9:ab brd ff:ff:ff:ff:ff:ff
inet 192.168.2.51/24 brd 192.168.2.255 scope global br-ex
valid_lft forever preferred_lft forever
inet6 fe80::403b:6bff:fe9e:c9ab/64 scope link
valid_lft forever preferred_lft forever
7: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether 1a:f0:aa:f0:ee:51 brd ff:ff:ff:ff:ff:ff
network:~ # brctl show
If ‘brctl’ is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf brctl
network:~ # zypper install brctl
Refreshing service ‘SUSE_Linux_Enterprise_Server_12_x86_64’.
Retrieving repository ‘Kilo’ metadata …[done]
Building repository ‘Kilo’ cache …[done]
Loading repository data…
Reading installed packages…
‘brctl’ not found in package names. Trying capabilities.
No provider of ‘brctl’ found.
Resolving package dependencies…
Nothing to do.
network:~ # ip route
default via 172.24.12.254 dev eth3 proto dhcp
172.24.12.0/24 dev eth3 proto kernel scope link src 172.24.12.148
192.168.2.0/24 dev br-ex proto kernel scope link src 192.168.2.51
Seems that you have two overlapping br-ex bridges: one via Linux bridge (i.e. native, shown by brctl) and one via openvSwitch (shown by ovs-vsctl). You shouldn’t have both.
BTW this is exactly the kind of grief which SUSE OpenStack Cloud eliminates by doing it all for you
[QUOTE=aspiers;28521]Seems that you have two overlapping br-ex bridges: one via Linux bridge (i.e. native, shown by brctl) and one via openvSwitch (shown by ovs-vsctl). You shouldn’t have both.
BTW this is exactly the kind of grief which SUSE OpenStack Cloud eliminates by doing it all for you ;-)[/QUOTE]
I try “brctl show” in the other openstack kilo network node which was deployed by RDO on RHEL 7.0.
And compare it with my SLE openstack kilo network node’s.
“”"
[root@netwo ~]# brctl show
bridge name bridge id STP enabled interfaces
virbr0 8000.525400223125 yes virbr0-nic
'“”
So, I use the"brctl delbr br-ex" to delete the dummy br setting on SLE, and service openvswitch restart, service network restart.
But still doesn’t work, ping gateway fail.
Would please help me to parse these command results again?
network:~ # ip addr show
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc mq master ovs-system state DOWN group default qlen 1000
link/ether 00:1e:67:c6:d6:a3 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a4 brd ff:ff:ff:ff:ff:ff
inet6 fe80::21e:67ff:fec6:d6a4/64 scope link
valid_lft forever preferred_lft forever
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a5 brd ff:ff:ff:ff:ff:ff
inet6 fe80::21e:67ff:fec6:d6a5/64 scope link
valid_lft forever preferred_lft forever
5: eth3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1e:67:c6:d6:a6 brd ff:ff:ff:ff:ff:ff
inet 172.24.12.148/24 brd 172.24.12.255 scope global eth3
valid_lft forever preferred_lft forever
inet6 fe80::21e:67ff:fec6:d6a6/64 scope link
valid_lft forever preferred_lft forever
7: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether 1a:f0:aa:f0:ee:51 brd ff:ff:ff:ff:ff:ff
11: br-ex: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether 00:1e:67:c6:d6:a3 brd ff:ff:ff:ff:ff:ff
inet 192.168.2.51/24 brd 192.168.2.255 scope global br-ex
valid_lft forever preferred_lft forever
inet6 fe80::4873:25ff:fe71:ff96/64 scope link
valid_lft forever preferred_lft forever
network:~ # brctl show
bridge name bridge id STP enabled interfaces
network:~ # ip route
default via 172.24.12.254 dev eth3 proto dhcp
172.24.12.0/24 dev eth3 proto kernel scope link src 172.24.12.148
192.168.2.0/24 dev br-ex proto kernel scope link src 192.168.2.51