JTO Phase II Data Network & IT Week 3
JOB-AID 5 (Week 3)
5.1 Title: IPv6 Practical.
5.2 Objective:
On completion of this visit/ practical exercise, the participant will be able to:
Understand the configuration of IPv6 Configuration in Cisco routers.
5.3 Set up/Equipments Required:
Network Simulator (Cisco Packet Tracer/GNS3).
5.4 Reports to be taken/ referred:
5.5 Exercise:
Configuration of IPv6:-
INITIAL CONFIGURATION AT ROUTER1
Router> (User Mode)
Router>enable
Router# (Privilege Mode)
Router# configure terminal
Router(config)# (Global Configuration Mode)
Router(config)# hostname ROUTER1
Configuration for assigning an IPv6 address to Fastethernet interface
ROUTER1(config)# interface fastethernet 0/0
ROUTER1(config-if)# (Interface Configuration Mode)
ROUTER1(config-if)# ipv6 address 2001:1111::1/64
ROUTER1(config-if)# ipv6 enable
ROUTER1(config-if)# no shutdown
ROUTER1(config-if)# exit
JTO Phase II (DNIT) Version 1.0 Sep 2021 Page 71 of 144
For Restricted Circulation
JTO Phase II Data Network & IT Week 3
ROUTER1(config)# interface fastethernet 0/1
ROUTER1(config-if)# ipv6 address fc00:1111::1/64
ROUTER1(config-if)# ipv6 enable
ROUTER1(config-if)# no shutdown
ROUTER1(config-if)# ^Z
ROUTER1# wr ( for saving the configuration )
INITIAL CONFIGURATION AT ROUTER2
Router> (User Mode)
Router>enable
Router# (Privilege Mode)
Router# configure terminal
Router(config)# (Global Configuration Mode)
Router(config)# hostname ROUTER2
Configuration for assigning an IPv6 address to Fastethernet interface
ROUTER2(config)# interface fastethernet 0/0
ROUTER2(config-if)# (Interface Configuration Mode)
ROUTER2(config-if)# ipv6 address 2001:2222::1/64
ROUTER2(config-if)# ipv6 enable
ROUTER2(config-if)# no shutdown
ROUTER2(config-if)# exit
ROUTER2(config)# interface fastethernet 0/1
ROUTER2(config-if)# ipv6 address fc00:2222::2/64
ROUTER2(config-if)# ipv6 enable
ROUTER2(config-if)# no shutdown
ROUTER2(config-if)# ^Z
ROUTER2# wr ( for saving the configuration )
INITIAL CONFIGURATION AT ROUTER3
Router> (User Mode)
Router>enable
Router# (Privilege Mode)
Router# configure terminal
JTO Phase II (DNIT) Version 1.0 Sep 2021 Page 72 of 144
For Restricted Circulation
JTO Phase II Data Network & IT Week 3
Router(config)# (Global Configuration Mode)
Router(config)# hostname ROUTER2
Configuration for assigning an IPv6 address to Fastethernet interface
ROUTER3(config)# interface fastethernet 0/0
ROUTER3(config-if)# (Interface Configuration Mode)
ROUTER3(config-if)# ipv6 address fc00:1111::2/64
ROUTER3(config-if)# ipv6 enable
ROUTER3(config-if)# no shutdown
ROUTER3(config-if)# exit
ROUTER3(config-if)# interface fastethernet 0/1
ROUTER3(config-if)# ipv6 address fc00:2222::1/64
ROUTER3(config-if)# ipv6 enable
ROUTER3(config-if)# no shutdown
ROUTER3(config-if)# ^Z
ROUTER3(config-if)# wr ( for saving the configuration )
ROUTER3(config-if)# interface fastethernet 1/0
ROUTER3(config-if)# ipv6 address 2001:3333::1/64
ROUTER3(config-if)# ipv6 enable
ROUTER3(config-if)# no shutdown
ROUTER3(config-if)# ^Z
ROUTER3(config-if)# wr ( for saving the configuration
JTO Phase II (DNIT) Version 1.0 Sep 2021 Page 73 of 144
For Restricted Circulation
JTO Phase II Data Network & IT Week 3
Sample lab for Static Routing
Configure the Routing Process
Router1(Config)#ipv6 unicast-routing
Router1(Config)#ipv6 route 2001:2222::/64 fc00:1111::2
Router1(Config)# ipv6 route 2001:3333::/64 fc00:1111::2
Router1(Config)#ipv6 route fc00:2222::/64 fc00:1111::2
Router1(Config)#end
Router1#wr
Router2(Config)#ipv6 unicast-routing
Router2(Config)# ipv6 route 2001:1111::/64 fc00:2222::1
Router2(Config)# ipv6 route 2001:3333::/64 fc00:2222::1
Router2(Config)# ipv6 route fc00:1111::/64 fc00:2222::1
Router2(Config)#end
Router2#wr
JTO Phase II (DNIT) Version 1.0 Sep 2021 Page 80 of 144
For Restricted Circulation
JTO Phase II Data Network & IT Week 3
Router3(Config)#ip routing
Router3(Config)# ipv6 route 2001:1111::/64 fc00:1111::1
Router3(Config)# ipv6 route 2001:2222::/64 fc00:2222::2
Router3(Config)#end
Router3#wr
Observations :
After configuration of static routing give the following command at each router and check the
Routing table.
Router# show ipv6 route
Check the end to end connectivity using ping ipv6 addresses from one PC to other.
Use default Routing At Router 1 and Router 2
As the routers are end routers, remove the static routes given at Router1, Router2 and configure
as following.
Router1(Config)#ipv6 unicast- routing
Router1(Config)# ipv6 route ::/0 fc00:1111::2
Router2(Config)#ipv6 unicast- routing
Router2(Config)# ipv6 route ::/0 fc00:2222::1
Observations :
After configuration of default routing give the following command at each router and check the
Routing table.
Router# show ipv6 route
Check the end to end connectivity using ping ipv6 addresses from one PC to other.
JTO Phase II (DNIT) Version 1.0 Sep 2021 Page 81 of 144
For Restricted Circulation
JTO Phase II Data Network & IT Week 3
Sample lab for RIPng Routing Protocol
JTO Phase II (DNIT) Version 1.0 Sep 2021 Page 82 of 144
For Restricted Circulation
JTO Phase-II Data Network & IT Week 3
RIPng configuration on Router 1
Router1(Config)#ipv6 unicast-routing
Router1(Config)#ipv6 router rip RIPng
Router1(Config-router)#exit
Router1(Config)#interface fa0/0
Router1(Config-if)#ipv6 enable
Router1(Config-if)#ipv6 rip RIPng
enable Router1(Config-if)#exit
Router1(Config)#interface s0/3/1:0
Router1(Config-if)#ipv6 enable
Router1(Config-if)#ipv6 rip RIPng
enable Router1(Config-if)#end
Router1#wr
RIPng configuration on Router 2
Router2(Config)#ipv6 unicast-routing
Router2(Config)#ipv6 router rip RIPng
Router2(Config-router)#exit
Router2(Config)#interface fa0/0
Router2(Config-if)#ipv6 enable
Router2(Config-if)#ipv6 rip RIPng
enable Router2(Config-if)#exit
Router2(Config)#interface s0/3/0:0
Router2(Config-if)#ipv6 enable
Router2(Config-if)#ipv6 rip RIPng
enable Router2(Config-if)#end
Router2#wr
RIPng configuration on Router 3
Router3(Config)#ipv6 unicast-routing
Router3(Config)#ipv6 router rip RIPng
Router3(Config-router)#exit
Router3(Config)#interface fa0/0
Router3(Config-if)#ipv6 enable
Router3(Config-if)#ipv6 rip RIPng
enable Router3(Config-if)#exit
Router3(Config)#interface s0/3/0:0
Router3(Config-if)#ipv6 enable
Router3(Config-if)#ipv6 rip RIPng
enable Router3(Config-if)#exit
Router3(Config)#interface s0/2/0:0
Router3(Config-if)#ipv6 enable
Router3(Config-if)#ipv6 rip RIPng
enable Router3(Config-if)#end
Router3#wr
JTO Phase-II (DNIT) Version 1.0 Sep 2021 Page 83 of 144
For Restricted Circulation
JTO Phase-II Data Network & IT Week 3
Observations :
After configuration of RIPng routing protocol give the following command at each router and
check the Routing table.
Router# show ipv6 route
Check the end to end connectivity using ping ipv6 addresses from one PC to other.
Sample lab for OSPFv3 Routing Protocol
OSPFv3 configuration on Router 1
Router1(Config)#ipv6 unicast-routing
Router1(Config)#ipv6 router ospf 1
Router1(Config-router)#router-id
1.1.1.1 Router1(Config-router)#no
shutdown Router1(Config-router)#exit
Router1(Config)#interface fa0/0
Router1(Config-if)#ipv6 enable
Router1(Config-if)#ipv6 ospf 1 area 0
JTO Phase-II (DNIT) Version 1.0 Sep 2021 Page 84 of 144
For Restricted Circulation
JTO Phase-II Data Network & IT Week 3
Router1(Config-if)#exit
Router1(Config)#interface s0/3/1:0
Router1(Config-if)#ipv6 enable
Router1(Config-if)#ipv6 ospf 1 area
0 Router1(Config-if)#end
Router1#wr
OSPFv3 configuration on Router 2
Router2(Config)#ipv6 unicast-routing
Router2(Config)#ipv6 router ospf 1
Router2(Config-router)#router-id
2.2.2.2 Router2(Config-router)#no
shutdown Router2(Config-router)#exit
Router2(Config)#interface fa0/0
Router2(Config-if)#ipv6 enable
Router2(Config-if)#ipv6 ospf 1 area 0
Router2(Config-if)#exit
Router2(Config)#interface s0/3/0:0
Router2(Config-if)#ipv6 enable
Router2(Config-if)#ipv6 ospf 1 area 0
Router2(Config-if)#end
Router2#wr
Router3(Config)#ipv6 unicast-routing
Router3(Config)#ipv6 router ospf 1
Router3(Config-router)#router-id
3.3.3.3 Router3(Config-router)#no
shutdown Router3(Config-router)#exit
Router3(Config)#interface fa0/0
Router3(Config)#ipv6 enable
Router3(Config-if)#ipv6 ospf 1 area 0
Router3(Config-if)#exit
Router3(Config)#interface s0/3/0:0
Router3(Config-if)#ipv6 enable
Router3(Config-if)#ipv6 ospf 1 area 0
Router3(Config-if)#exit
JTO Phase-II (DNIT) Version 1.0 Sep 2021 Page 85 of 144
For Restricted Circulation
JTO Phase-II Data Network & IT Week 3
Router3(Config)#interface s0/2/0:0
Router3(Config-if)#ipv6 enable
Router3(Config-if)#ipv6 ospf 1 area
0 Router3(Config-if)#end
Router3#wr
Observations :
After configuration of OSPFv3 routing protocol give the following command at each router
and check the Neighbor / Topology / Routing tables.
Router# show ipv6 route
Router# show ipv6 ospf
neighbor Router# show ipv6
ospf database
Check the end to end connectivity using ping ipv6 addresses from one PC to other.
5.6 Learning Outcome:(to be filled by participants)
JTO Phase-II (DNIT) Version 1.0 Sep 2021 Page 86 of 144
For Restricted Circulation