osd-contiki/core/net/ip64
Laurent Deru 10be59cc15 Update nameserver using DHCP info 2017-01-16 14:38:35 +01:00
..
README.md README file for the IP64 module 2014-09-14 21:26:33 +02:00
ip64-addrmap.c Maintain stats about how many packets have been translated from IPv4 to IPv6 and vice versa 2015-05-10 10:36:50 +02:00
ip64-addrmap.h Maintain stats about how many packets have been translated from IPv4 to IPv6 and vice versa 2015-05-10 10:36:50 +02:00
ip64-arp.c NAT64 / DNS64 code for Contiki that makes connecting an IPv6 Contiki network to IPv4 networks really easy 2014-09-14 21:26:23 +02:00
ip64-arp.h NAT64 / DNS64 code for Contiki that makes connecting an IPv6 Contiki network to IPv4 networks really easy 2014-09-14 21:26:23 +02:00
ip64-conf-example.h ip64: Streamlined configuration parameters 2015-09-24 09:27:11 +02:00
ip64-dhcpc.c Remove servername from DHCP request 2017-01-13 13:35:25 +01:00
ip64-dhcpc.h NAT64 / DNS64 code for Contiki that makes connecting an IPv6 Contiki network to IPv4 networks really easy 2014-09-14 21:26:23 +02:00
ip64-dns64.c Added support for DNS64 translation of DNS queries for IPv6 addresses to IPv4 addresses, and the translation of responses from IPv4 to IPv6 2015-05-10 10:36:50 +02:00
ip64-dns64.h Added support for DNS64 translation of DNS queries for IPv6 addresses to IPv4 addresses, and the translation of responses from IPv4 to IPv6 2015-05-10 10:36:50 +02:00
ip64-driver.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-eth-interface.c Fix ip64 warnings 2016-02-04 00:26:54 +01:00
ip64-eth-interface.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-eth.c Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-eth.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-interface.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-ipv4-dhcp.c Update nameserver using DHCP info 2017-01-16 14:38:35 +01:00
ip64-ipv4-dhcp.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-null-driver.c Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-null-driver.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-slip-interface.c Updates IP64 Fallback Interfaces to return ints 2015-09-23 09:20:31 +02:00
ip64-slip-interface.h Minor copyright header fix 2015-05-10 10:36:50 +02:00
ip64-special-ports.c NAT64 / DNS64 code for Contiki that makes connecting an IPv6 Contiki network to IPv4 networks really easy 2014-09-14 21:26:23 +02:00
ip64-special-ports.h NAT64 / DNS64 code for Contiki that makes connecting an IPv6 Contiki network to IPv4 networks really easy 2014-09-14 21:26:23 +02:00
ip64.c Fix ip64 warnings 2016-02-04 00:26:54 +01:00
ip64.h ip64: Streamlined configuration parameters 2015-09-24 09:27:11 +02:00

README.md

The ip64 module lets an IPv6 Contiki network be connected to an IPv4 network without any additional configuration or outside software. The ip64 module runs on the RPL root node and translates outgoing IPv6 packets into IPv4 packets nd incoming IPv4 packets to IPv6 packets.

The ip64 module uses stateful NAT64 (RFC6164) to do the packet translation and DNS64 (RFC6147) to catch DNS requests for IPv6 addresses, turn them into requests for IPv4 addresses, and turn the replies into responses for IPv6 addresses. This allows devices on the inside IPv6 network to connect to named servers on the outside IPv4 network.

The ip64 module hooks into the IPv6 stack via a fallback interface. Any packet that can not be routed into the local RPL mesh will be sent over the fallback interface, where ip64 picks it up, translates it into an IPv4 packet, and sends it over its outgoing interface.

In addition to providing NAT64 and DNS64 services, the ip64 module also performs DHCPv4 to request IPv4 address for devices connected to a medium such as Ethernet. The ip64 module also performs ARP processing to communicate over the Ethernet.

The ip64 module uses a configuration file called ip64-conf.h that specifies what device to use for the IPv4 network. This file is intended to be placed in the platform directory. An example configuration file called ip64-conf-example.h is provided in this directory.