How many Way Can give IPv6 Address



  • 2001:0000:0000:0000:1200:0000:0000:1221 This is normal Way to Assign IPv6
  • 2001::1200:0000:0000:1221  We can use 0000:0000: like  :: 
  • 2001::1200:0:0:1221      and we can use 0000:0000:  like 0:0
 


1 :- How to Configure Routing protocol in IPv6

R1#
R1#Configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
R1(config)#
R1(config)#ipv6 unicast-routing   
R1(config)#ipv6 router eigrp 1
R1(config-rtr)#
R1(config-rtr)#router-id 1.1.1.1
R1(config-rtr)#exit
R1(config)#interface fastEthernet 0/0
R1(config-if)#ipv6 eigrp 1
R1(config-if)#exit
R1(config)#

2 How  to give Link_local IP

R1(config)#interface fastEthernet 0/0
R1(config-if)#
R1(config-if)#ipv6 address fe80::1 link-local

3 How to give Static IP

R1(config)#
R1(config)#interface fastEthernet 0/0
R1(config-if)#
R1(config-if)#ipv6 address 2222::2/64
R1(config-if)#
R1(config-if)#no shutdown
R1(config-if)#

4 :- How to give Stat less DHCP IP

R1(config)#
R1(config)#interface fastEthernet 0/0
R1(config-if)#ipv6 address 2000::2/64 eui-64
R1(config-if)#
R1(config-if)#no shutdown
R1(config-if)#