Task 1 :- Configure Topology given pic
Task 2 :- Configure IPv6 given topology
Task 3 :- Configure Loopback given pic
Task 4 :- Configure RIPng 
Task 5 :- Check Cummunication R1 To R2

---------------------------------------------------------------------------------------------------------------------------------------

 
 Task 1 :- Configure Topology given pic 
 
---------------------------------------------------------------------------------------------------------------

 
 Task 2 :- Configure IPv6 given topology

R1(config)#int
R1(config)#interface fa 0/0
R1(config-if)#IPV6 address 2000::1/64

R1(config-if)#
R1(config-if)#no shutdown
R1(config-if)#exit


R2
R2(config)#interface fa 0/0
R2(config-if)#

R2(config-if)#ipv6 address 2000::2/64
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#


------------------------------------------------------------------------------------------------------------------------------------
  Task 3 :- Configure Loopback given pic

R1(config)#interface loopback 0
R1(config-if)#ipv6 address 1111::1/64
R1(config-if)#exit
R1(config-if)

R2
R2(config)#interface loopback 0
R2(config-if)#ipv6 address 2222::2/64
R2(config-if)#exit
--------------------------------------------------------------------------------------------------------------
 Task 4 :- Configure RIPng

R1
R1(config)#ipv6 unicast-routing 
R1(config-if)#ipv6 rip ccna enable
R1(config-if)#
R1(config-if)#exit


R1(config)#interface fa 0/0
R1(config-if)#

R1(config-if)#ipv6 rip ccna enable
R1(config-if)#exit


 
R1(config)#interface fa 0/0
R1(config-if)#

R1(config-if)#ipv6 rip ccna enable
R1(config-if)#exit


R2

R2(config)#ipv6 unicast-routing 
R2(config-if)#ipv6 rip ccna enable
R2(config-if)#
R2(config-if)#exit

 
R1(config)#interface fa 0/0
R1(config-if)#

R1(config-if)#ipv6 rip ccna enable
R1(config-if)#exit


R2(config)#interface loopback 0
R2(config-if)#

R2(config-if)#ipv6 rip ccna enable
R2(config-if)#exit 


-------------------------------------------------------------------------------------------------------------------------------------

 Task 5 :- Check Cummunication R1 To R2

R1 Routing table

R1#show ipv6 route
IPv6 Routing Table - 6 entries
Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP
       U - Per-user Static route, M - MIPv6
       I1 - ISIS L1, I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary
       O - OSPF intra, OI - OSPF inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
       ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
       D - EIGRP, EX - EIGRP external
C   1111::/64 [0/0]
     via ::, Loopback0
L   1111::1/128 [0/0]
     via ::, Loopback0
C   2000::/64 [0/0]
     via ::, FastEthernet0/0
L   2000::1/128 [0/0]
     via ::, FastEthernet0/0
R   2222::/64 [120/2]
     via FE80::C001:FFF:FE1C:0, FastEthernet0/0

L   FF00::/8 [0/0]
     via ::, Null0
R1# 


ping R1 to R2

R1#ping 2222::2

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2222::2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/36/84 ms
R1#


-------------------------------------------------------------------------------------------------------------------------------------