-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ran into an issue where routing on the OCP cluster gets confused by the use of ULA addresses on the machine network. OCP uses ULA addresses for internal networks, OVN kubernetes for example. When using ULA addressing on the machine network there is race when building the routing tables - and in some cases the hosts end up using the wrong source address in outgoing traffic. To fix this, switch to GUA addresses.
- Loading branch information
Showing
5 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# The IPv6 ip subnet, for example: fc00:abcd:abcd:fc00::/64 | ||
# The IPv6 ip subnet, for example: 2620:cf:cf:abcd:abcd:fc00::/64 | ||
NAT64_IPV6_PREFIX={{ cifmw_nat64_ipv6_prefix }} | ||
|
||
# The IPv6 host address, for example: fc00:abcd:abcd:fc00::2 | ||
# The IPv6 host address, for example: 2620:cf:cf:abcd:abcd:fc00::2 | ||
NAT64_HOST_IPV6={{ cifmw_nat64_appliance_ipv6_address }} | ||
|
||
# The IPv6 address used for the tayga tun interface, for example: fc00:abcd:abcd:fc00::3 | ||
# The IPv6 address used for the tayga tun interface, for example: 2620:cf:cf:abcd:abcd:fc00::3 | ||
NAT64_TAYGA_IPV6={{ cifmw_nat64_ipv6_tayga_address }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters