Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VS] ARP packets are being dropped on the VS Image When used as a L2 device #11381

Closed
vivekrnv opened this issue Jul 7, 2022 · 1 comment · Fixed by #11585
Closed

[VS] ARP packets are being dropped on the VS Image When used as a L2 device #11381

vivekrnv opened this issue Jul 7, 2022 · 1 comment · Fixed by #11585
Assignees

Comments

@vivekrnv
Copy link
Contributor

vivekrnv commented Jul 7, 2022

Description

Steps to reproduce the issue:

  1. Topology: HA <-> Eth0, HB <-> Eth4
  2. config vlan add 10
  3. config vlan member add 10 Ethernet0 -u
  4. config vlan member add 10 Ethernet4 -u
  5. Assign IP addresses in the same network to HA & HB
  6. Ping HB from HA

Describe the results you received:

  • ARP request is being dropped by the VS
  • This is because of the ebtable rules configured.

These rules might be required on the real HW but these shouldn't be there for VS

-A FORWARD -p ARP -j DROP
-A FORWARD -p 802_1Q --vlan-encap ARP -j DROP

Describe the results you expected:

ARP shouldn't be dropped

Work-Around:

To allow ARP frames forwarded via the switch, please, remove corresponding ebtables entries:

sudo ebtables -D FORWARD -p 802_1Q --vlan-encap ARP -j DROP
sudo ebtables -D FORWARD -p ARP -j DROP
@prsunny
Copy link
Contributor

prsunny commented Jul 26, 2022

This can be fixed by bypassing for the KVM image. Can be checked for platform in build_debian.sh or docker_image_ctl.j2. Request help from community.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants