CertCities.com -- The Ultimate Site for Certified IT Professionals
Register today for a Free Sponsored Tech Library Webcast and you could WIN! Share share | bookmark | e-mail
  Microsoft®
  Cisco®
  Security
  Oracle®
  A+/Network+"
  Linux/Unix
  More Certs
  Newsletters
  Salary Surveys
  Forums
  News
  Exam Reviews
  Tips
  Columns
  Features
  PopQuiz
  RSS Feeds
  Press Releases
  Contributors
  About Us
  Search
 

Advanced Search
  Free Newsletter
  Sign-up for the #1 Weekly IT
Certification News
and Advice.
Subscribe to CertCities.com Free Weekly E-mail Newsletter
CertCities.com

See What's New on
Redmondmag.com!

Cover Story: IE8: Behind the 8 Ball

Tech-Ed: Let's (Third) Party!

A Secure Leap into the Cloud

Windows Mobile's New Moves

SQL Speed Secrets


CertCities.com
Let us know what you
think! E-mail us at:



 
 
...Home ... Editorial ... Columns ..Column Story Saturday: April 5, 2014


 Link State Update  
Eric Quinn
Eric Quinn


 IPv6: The New IOS
What you'll need to understand about IPv6 support to make it work in your internetwork.
by Eric Quinn , courtesy of TCPMag.com
4/9/2001 -- Cisco has been playing with IP version 6 for a while now and it appears they're ready to have it join other IOS features in prime time. IOS version 12.2(1)T is supposed to be available for download on April 16th with IP version 6 support. I've been playing with a November 2000 beta release and here's some information in case you were planning on trying it out.

Unlike IP version 4, IP version 6 is disabled by default on your router. In order to turn it on, you treat it like any other non-IP protocol, use the command:

ipv6 unicast-routing
from global configuration mode. From the output below, you can see that there are several things you can configure for IPv6:
R2(config)#ipv6 ?
access-list Configure access lists
hop-limit Configure hop count limit
host Configure static hostnames
icmp Configure ICMP parameters
prefix-list Build a prefix list
route Configure static routes
router Enable an IPV6 routing process
unicast-routing Enable unicast routing

In order to apply an address to an interface in IPv6, you need to remember that version 6 doesn't use decimal addressing like version 4 does; it uses hexidecimal. To make things even more confusing, while the first 96 bits need to be in hex, the last 32 bits may be in decimal. In other words, we're working with two different numeric representations within a single address.
IPv6 addressing is covered in RFC 2373 but the part you need to know here is that in addition to using hex, we separate every 16 bits with a colon. If all 16 bits are zero, then a single 0 may be used, rather than the hex values of 0000. Cisco allows for other addressing methods that the RFC doesn't strictly define.

Below you'll see example help and a sample configuration of IPv6. The big string of numbers is the address--all 128 bits of it--while the "70" is the subnet mask. Most of us wanted the ability to use "/##" for subnet masks; now we have it. Unfortunately, we get it only for v6.
R2(config)#int e0
R2(config-if)#ipv6 ?
IPv6 interface subcommands:
address Configure IPv6 address on interface
enable Enable IPv6 on interface
mtu Set IPv6 Maximum Transmission Unit
nd IPv6 interface Neighbor Discovery
subcommands
rip Configure RIP routing protocol
traffic-filter Access control list for packets
unnumbered Configure IPv6 interface as unnumbered
R2(config-if)#ipv6 address 1111:2222:3333:0:5555:6666:7777:8888 70
As you can see here, IP and IPv6 can coexist on the same interface:
interface Ethernet0
ip address 192.168.1.51 255.255.255.0
ipv6 address 1111:2222:3333:0:5555:6666:7777:8888/70
Routing with IPv6 is going to be something many people will wonder about. You can set up an IPv6 version of RIP, and BGPv4 will support IPv6. But while OSPF for IPv6 is specified in RFC 2740, I haven't seen configuration options on Cisco devices. Just as with IPv4, you can set static routes with IPv6:
R2(config)#ipv6 route 4444::9999/128 e0
You can see from the table below that there are currently only two dynamic routing protocols supported. I expect OSPF to come online shortly.

R2#sh ipv6 route
IPv6 Routing Table - 4 entries
Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP
Timers: Uptime/Expires
L 1111:2222:3333:0:5555:6666:7777:8888/128 [0/0]
via ::, Ethernet0, 00:21:30/never
C 1111:2222:3333:0:5555:6666:7777:8888/70 [0/0]
via ::, Ethernet0, 00:21:30/never
S 4444::9999/128 [1/0]
via ::, Ethernet0, 00:08:50/never
L FE80::/64 [0/0]
via ::, Null0, 00:21:30/never
Configuring BGP for IPv6 is way outside the scope of my column but RIP is easy. You need to set up RIP routing, which we do below. You can also see the commands that you can configure inside, such as split horizon:
R2(config)#ipv6 router rip test
R2(config-rtr-rip)#?
default Set a command to its defaults
distance Administrative distance
distribute-list Filter networks in routing updates
exit Exit from IPv6 RIP configuration mode
no Negate a command or set its defaults
poison-reverse Poison reverse updates
port Port and multicast address
redistribute Routing information redistribution
split-horizon Split horizon updates
timers Basic routing protocol update timers
Notice that there's no network statement? That's because we need to tell an interface to participate in IPv6 RIP. Notice we're using the same word "test" in both places. You can have multiple RIP routing processes running on the router:
R2(config)#int e0
R2(config-if)#ipv6 rip test enable
Once we've configured RIP, we can see its characteristics. If you're familiar with regular RIP, you know that it uses UDP port 520. You can see here that IPv6 RIP uses port 521:
R2#sh ipv6 rip
RIP process "test", port 521, multicast-group FF02::9, pid 49
Administrative distance is 120. Routing table is 0
Updates every 30 seconds, expire after 180
Holddown lasts 180 seconds, garbage collect after 120
Split horizon is on; poison reverse is off
Default routes are not generated
Periodic updates 38, trigger updates 0

IPv6 has lots of things to configure, and the primary thing is to be able to talk to other devices. Not all service providers are connected to the 6Bone. If you want to gain access, your first stop should be www.6bone.net. IPv6 isn't just about new addressing rules; it's also about eliminating security holes and that's going to involve IPSecv6 and IKEv6. Now is a good time to be a network engineer.

Originally published on TCPMag.com, April 2001. Reprinted with permission.

Questions or comments about this article? Post them below!


Eric Quinn, CCNP, CCDP, CCSI, is a security instructor and consultant. He is also co-author of the CCNP Remote Access Exam Cram by Coriolis Press. He writes the “Link State Update” column for TCPmag.com, and is a contributing editor for CertCities.com. Reach him at .

 


More articles by Eric Quinn:

-- advertisement --


There are 14 CertCities.com user Comments for “IPv6: The New IOS”
Page 1 of 2
10/24/02: Syed Wackas Ameen from pakistan-karachi says: hi, ya ipv6 is kool but the problem is that in most part of south east asia ,we still haven't implemented ipv4,so if ne one knows ipv6 officials and clients wont take a chance for implementing,i want to ask a simple question how we can get information about RIPv6
3/3/03: Darko from US says: Can I download IOS with ipv6 support? I currently have IOS 12.2.(13) and does not have ipv6 embedded in it. Thanks
7/27/03: sujan from indore, India says: Its hard to get the IP addresses from the half hex and half decimal fields.One should be very good at Hex and Decimal Conversions
11/15/03: anon mouse from ip packet says: So all the ISP's are going to change their core routers to IPv6, over-night? And there is the webhosting, and the BGP. Can I take that day off, please!
2/15/04: Michele Muscillo from roma - italy says: IPV6 is a great invention. Please tell me, if my intranet IP is 23.249.188.79 and my IPv6 is 2001:1418:12:37b::/64 How can I confiigure my Linux RedHat9 PC.? What should I have to request to my network adm?
3/17/04: Dr. Mahmud from Pakistan says: IPv6 has rapidly become a core ingredient of next generation technologies network. I believe the deployment phase will be most important in places like south-asia where IP addresses will run out first. Besides offering vast addressing spacing and support for various levels of QoS and application level security, IPv6 will fill our lives with enhanced mobile devices and take us from voice communication to video communication potential.
3/17/04: Dr. Mahmud from Pakistan says: IPv6 has rapidly become a core ingredient of next generation technologies network. I believe the deployment phase will be most important in places like south-asia where IP addresses will run out first. Besides offering vast addressing spacing and support for various levels of QoS and application level security, IPv6 will fill our lives with enhanced mobile devices and take us from voice communication to video communication potential.
9/10/05: tamimi says: ya it is easy to say ipv6 is good and to give me advantage , but the problem where is the problem the disadvantage of ipv6, ther is alot also.
1/26/06: Nahas Y from India says: Anybody want to study ipv6, and its configuration , protocol configuration, ...etc , come to BSOFT cochin we provide excellent facilities for CCNA CCNP, CCSP, CCVP CCIE -Routing & Switching CCIE -Security
7/1/13: louis vuitton outlet from [email protected] says: good share. louis vuitton outlet http://www.louisvuittonttoutlet.com
First Page   Next Page   Last Page
Your comment about: “IPv6: The New IOS”
Name: (optional)
Location: (optional)
E-mail Address: (optional)
Comment:
   

-- advertisement (story continued below) --

top