Bug 1723365
| Summary: | OVS not handling properly multicast traffic | ||
|---|---|---|---|
| Product: | Red Hat OpenStack | Reporter: | Miguel Angel Nieto <mnietoji> |
| Component: | openvswitch | Assignee: | Open vSwitch development team <ovs-team> |
| Status: | CLOSED NOTABUG | QA Contact: | Roee Agiman <ragiman> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 13.0 (Queens) | CC: | apevec, chrisw, rhos-maint |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2019-06-25 13:21:58 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Miguel Angel Nieto
2019-06-24 11:28:08 UTC
I have changed ovs configuration removing bonding and it works properly, so the problem is the dpdk bond. With this configuration it is working
Bridge "br-link0"
Controller "tcp:127.0.0.1:6633"
is_connected: true
fail_mode: secure
Port "dpdk0"
Interface "dpdk0"
type: dpdk
options: {dpdk-devargs="0000:05:00.2"}
Port "dpdk1"
Interface "dpdk1"
type: dpdk
options: {dpdk-devargs="0000:05:00.3"}
Port "phy-br-link0"
Interface "phy-br-link0"
type: patch
options: {peer="int-br-link0"}
Port "br-link0"
tag: 513
Interface "br-link0"
type: internal
ovs-appctl mdb/show br-int
port VLAN GROUP Age
6 1 226.1.1.1 1
1 1 querier 0
In the physical switch
root> show igmp snooping membership
Instance: default-switch
Vlan: vlan655
Learning-Domain: default
Interface: xe-0/0/16.0, Groups: 1
Group: 226.1.1.1
Group mode: Exclude
Source: 0.0.0.0
Last reported by: 10.20.155.107
Group timeout: 7 Type: Dynamic
Interface: xe-0/0/17.0, Groups: 0
There is no problem with bond, igmp queries were being dropped because they were arriving through the not active port in the bonding. It is the expected behaviour. If I change the active port with the following command, then it works properly ovs-appctl bond/set-active-slave dpdkbond0 dpdk0 |