Difference between revisions of "NAT-PT IPv6"

From Teknologisk videncenter
Jump to: navigation, search
m
m (Links)
Line 17: Line 17:
 
*[http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-nat_trnsln_ps6350_TSD_Products_Configuration_Guide_Chapter.html Cisco NAT-PT guide]
 
*[http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-nat_trnsln_ps6350_TSD_Products_Configuration_Guide_Chapter.html Cisco NAT-PT guide]
 
**[http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-nat_trnsln_ps6350_TSD_Products_Configuration_Guide_Chapter.html Som PDF]
 
**[http://www.cisco.com/en/US/docs/ios/ipv6/configuration/guide/ip6-nat_trnsln_ps6350_TSD_Products_Configuration_Guide_Chapter.html Som PDF]
 +
*[http://tomicki.net/ipv6.router.php DNS proxy]
 
{{Source cli}}
 
{{Source cli}}
 
[[Category:IPv6]]
 
[[Category:IPv6]]

Revision as of 08:05, 15 December 2011

Basic NAT-PT configuration

When pinging from inside IPv6 network in the example below with an address to fc00:abcd::172.16.5.66 the NAT-PT will translate the IPv6 packet coming on fa0/1 to a IPv4 packet with destination 172.16.5.66 on fa0/0.

ipv6 nat prefix fc00:abcd::/96
!
interface fastethernet 0/0
description IPv4 only network
ip address 172.16.4.16
ipv6 nat
!
interface fastethernet 0/1
description IPv6 only network
ipv6 address 2001:16db:dd85:1000::/64 eui64
ipv6 nat

Links