-
Story
-
Resolution: Unresolved
-
Normal
-
None
-
None
-
rhel-sst-network-management
-
ssg_networking
-
None
-
False
-
-
Yes
-
None
-
-
None
-
None
-
Enhancement
-
-
Proposed
-
None
Goal
As a user of a multi-interface node (OCP), I want to configure secondary interface to allow forwarding sysctl (sysctl -w "net.ipv4.conf.eth2.forward=1") in order metallb LBs to work.
Acceptance Criteria
A list of verification conditions, successful functional tests, or expected outcomes in order to declare this story/task successfully completed.
- Verify X
- Verify Y
- Verify Z
Given that default forwarding is not set (sysctl -w "net.ipv4.ip_forward=0")
I apply this nmstate config
--- interfaces: - name: eth1 type: ethernet state: up ipv4: address: - ip: 192.0.2.251 prefix-length: 24 dhcp: false enabled: true sysctl: # using the name defined in # https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt forwarding: true
and I see the packets entering the eth1 are processed by forwarding rules (e.g. iptables-nft forward chain)
- is blocked by
-
RHEL-59083 Add support for per-interface IP forwarding in NetworkManager
- In Progress