Page MenuHomeFreeBSD

nat64: Get the IPv4 address from a NAT64 address when comparing addresses in a ICMP translate
AbandonedPublic

Authored by nc on Feb 17 2020, 9:43 PM.
Referenced Files
Unknown Object (File)
Jan 11 2024, 5:27 AM
Unknown Object (File)
Dec 24 2023, 4:53 PM
Unknown Object (File)
Dec 23 2023, 11:23 AM
Unknown Object (File)
Dec 23 2023, 10:49 AM
Unknown Object (File)
Dec 22 2023, 10:12 PM
Unknown Object (File)
Dec 16 2023, 9:59 AM
Unknown Object (File)
Nov 25 2023, 3:13 PM
Unknown Object (File)
Nov 17 2023, 12:58 PM

Details

Reviewers
ae
Summary

nat64: Get the IPv4 address from an IPv6 NAT64 address when comparing a source address with a destination address in an ICMP translate.

Submitted by: Neel Chauhan <neel AT neelc DOT org>

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

ae requested changes to this revision.Feb 18 2020, 8:15 AM

The patch is not correct. IPv4 address can be embedded in different places depending from configuration.

This revision now requires changes to proceed.Feb 18 2020, 8:15 AM
nc edited the summary of this revision. (Show Details)

Here, I also compare the destination addresses. Is this what you want?

In D23737#521593, @neel_neelc.org wrote:

Here, I also compare the destination addresses. Is this what you want?

No, take a look at RFC 6052 p2.2..

Also, how did test your changes? :)
NAT64 currently is not widely used, thus changes here can break something and you will know about breakage when it will be not so easy to fix, e.g. after release.

I decided to use the existing function nat64_extract_ip4() to extract the IPv4 and removed my nat64_get_ip4().

I'm new to the FreeBSD TCP/IP stack, sorry.