Skip to content
forked from NICMx/Jool

A NAT64 implementation for Linux, using the Netfilter API

Notifications You must be signed in to change notification settings

davidvrdz/NAT64

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This is an implementation of the NAT64 mechanism as described in the RFC6146.
It's being implemented as a Netfilter target module.

module dependencies (modprobe): ipv6, ip_tables, nf_conntrack, nf_conntrack_ipv4

Userspace library:
	To compile: make libxt_nat64.so
	copy library to: /usr/lib/iptables or /usr/lib/xtables

example of usage:
	/* flush the mangle table */
	ip6tables -t mangle --flush
	/* add the new rule */
	ip6tables -t mangle -A PREROUTING -j nat64 --ipdst ::1/64;
	/* look at your new rule */
	ip6tables -t mangle -n -L
	/* test it... */
	E.G. ping6 ::1
	

About

A NAT64 implementation for Linux, using the Netfilter API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published