Enable IPv6 ULA, SLAAC Router Advertisements, NAT66, and E2E validation - #3104
Open
sferrogoo wants to merge 1 commit into
Open
Enable IPv6 ULA, SLAAC Router Advertisements, NAT66, and E2E validation#3104sferrogoo wants to merge 1 commit into
sferrogoo wants to merge 1 commit into
Conversation
… and E2E validation * Add IPv6 Unique Local Address (ULA) subnets fd00:cf:22::/64 (cvd-wbr) and fd00:cf:24::/64 (cvd-ebr) to cuttlefish-host-resources defaults and init script. * Configure dnsmasq to broadcast IPv6 Router Advertisements for guest SLAAC autoconfiguration. * Implement native nftables masquerading (NAT66) and forwarding rules in cuttlefish-host-resources.init. * Add nftables dependency in base/debian/control. * Add E2E network integration test in //cvd/network_tests:network_tests verifying SLAAC IP acquisition, guest-to-host dual-stack communication, and pure IPv6-only operation.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This change adds complete IPv6 support for Cuttlefish instances on the host and validates guest dual-stack and pure IPv6-only operation.
IPv6 Unique Local Addresses (ULA):
fd00:cf:22::/64oncvd-wbrandfd00:cf:24::/64oncvd-ebr./etc/default/cuttlefish-host-resources.Router Advertisements (SLAAC):
dnsmasqto broadcast SLAAC Router Advertisements for autonomous in-guest address assignment.NAT66 & Forwarding:
nftablesmasquerading and forwarding rules incuttlefish-host-resources.init.nftablespackage dependency tocuttlefish-baseindebian/control.Automated E2E Integration Testing:
//cvd/network_tests:network_testsverifying guest SLAAC acquisition, guest-to-host dual-stack communication, and 100% pure IPv6-only functionality after flushing IPv4.