use ipv6 global unicast address cc00:101:101::/64 as ipv6 nat address #130
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.
Currently we use IPV6 unique local address(ULA)
fc00:101:101::/64
as out ipv6 NAT address. However, some OSs(i.e. Android) or programs prefer IPV4 address to IPV6 ULA for dual stack domain connection.The priority for these OSs and programs is
IPV6 global unicast address > IPV4 > IPV6 unique local address
.Using an IPV6 unique local address as NAT address can force these OSs to use IPv6 for dual stack domain, which solves the problem.
This PR change
fc00:101:101::/64
tocc00:101:101::/64
. This address block isn't allocated by IANA so it is safe to use it here.