yanet-platform / yanet

A high performance framework for forwarding traffic based on DPDK
Other
165 stars 17 forks source link

NAT46 CLAT #78

Closed taitov closed 5 months ago

taitov commented 7 months ago

https://www.juniper.net/documentation/us/en/software/junos/interfaces-next-gen-services/topics/concept/nat-464xlat-usf.html

Make translation IPv4 to IPv6 like:

[ src: 10.0.0.1, dst: 20.20.20.20 ] -> CLAT -> [ src: 2000:abcd::10.0.0.1, dst: 2000:ffff::20.20.20.20 ]

And IPv6 to IPv4:

[ src: 2000:ffff::20.20.20.20, dst: 2000:abcd::10.0.0.1 ] -> CLAT -> [ src: 20.20.20.20, dst: 10.0.0.1 ]

Support:

taitov commented 5 months ago

Done