You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
Due to #1863 and the upstream change vishvananda/netlink#248, interfaces with a /31 subnet have a broadcast address automatically calculated and assigned. Since /31 subnets are for point to point links, the network and broadcast addresses are used by the two end points.
With the auto-assigned broadcast address, /31 addressed interfaces do not successfully pass traffic.
It appears an upstream PR to correct the behavior has been proposed here: vishvananda/netlink#496.
/31 links are useful to minimize IP address usage, in a layer 3 topology from leaf switch to hosts.
Example of current behavior:
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 52:54:00:83:52:f2 brd ff:ff:ff:ff:ff:ff
inet 192.168.98.2/31 brd 192.168.98.3 scope global eth2
valid_lft forever preferred_lft forever
Example of correct config via:
$ ip addr del 192.168.98.2/31 brd 192.168.98.3 dev eth2
$ ip addr add 192.168.98.2/31 dev eth2
4: eth2: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 52:54:00:83:52:f2 brd ff:ff:ff:ff:ff:ff
inet 192.168.98.2/31 scope global eth2
valid_lft forever preferred_lft forever
The text was updated successfully, but these errors were encountered:
RancherOS Version: (ros os version) 1.5.2
Where are you running RancherOS? Bare-metal.
Due to #1863 and the upstream change vishvananda/netlink#248, interfaces with a /31 subnet have a broadcast address automatically calculated and assigned. Since /31 subnets are for point to point links, the network and broadcast addresses are used by the two end points.
With the auto-assigned broadcast address, /31 addressed interfaces do not successfully pass traffic.
It appears an upstream PR to correct the behavior has been proposed here: vishvananda/netlink#496.
/31 links are useful to minimize IP address usage, in a layer 3 topology from leaf switch to hosts.
Example of current behavior:
Example of correct config via:
The text was updated successfully, but these errors were encountered: