Now, some of you maybe wondering, why did he write an narrative on how to enable Eigrpv6 on a Cisco Router, when I already know how to do that?
Well, to reply your question, enabling Eigrp on a router that is running on an Ipv6 network, is slightly dissimilar from enabling Eigrp on a router that is running on an Ipv4 network.
Cisco Router
Meaning, a router that is running on an Ipv6 network, had Eigrp (Eigrpv6) enabled per interface, instead of globally like a router running on an Ipv4 network would. So, in other words, when enabling Eigrpv6 on a Cisco router, you don't need to use the "network" command when the router is in Router Configuration Mode.
Instead you'll need to perform the following steps:
1. Router>enable
2. Router#configure terminal
3. Router(config)#ipv6 unicast-routing
4. Router(config)#interface type number
5. Router(config-if)#ipv6 enable
6. Router(config-if)#ipv6 eigrp as-number
7. Router(config-if)#no shutdown
8. Router(config-if)#ipv6 router eigrp as-number
9. Router(config-router)#router-id ip-address
10. Router(config-router)#no shutdown
11. Router(config-router)#exit
12. Router(config)#exit
13. Router#copy run start
Steps Explained:
Step #1
1. Router>enable
Puts router into Privileged Exec mode.
Step #2
2. Router#configure terminal
Puts router into Global configuration mode.
Step #3
3. Router(config)#ipv6 unicast-routing
Configures the router to route Ipv6 packets
Step #4
4. Router(config)#interface fastethernet 0/0
Specifies the fastethernet 0/0 interface on which Eigrpv6 is to be configured.
Step #5
5. Router(config-if)#ipv6 enable
Enables Ipv6 processing on the fastethernet 0/0 interface.
Step #6
6. Router(config-if)#ipv6 eigrp 1
Enables the Eigrp for Ipv6 process on the fastethernet 0/0 interface.
Step #7
7. Router(config-if)#no shutdown
Starts the Eigrp for Ipv6 protocol (process) without changing any per-interface configuration.
Step #8
8. Router(config-if)#ipv6 router eigrp 1
Puts the router into router configuration mode and creates an Eigrp for Ipv6 routing process.
Step #9
9. Router(config-router)#router-id ip-address
Enables the router to use a fixed router Id. (Remember each router Id must be unique)
Step #10
10. Router(config-router)#no shutdown
Put the Eigrpv6 routing process in "no shutdown" mode in order to start the Eigrpv6 process.
Step #11
11. Router(config-router)#exit
Returns the router to Global configuration mode
Step #12
12. Router(config)#exit
Returns the router to Privileged Exec mode.
Step #13
13. Router#copy run start
Saves the contents of the running-config to local Non -Volatile Random entrance Memory (Nvram).
I invite you to visit my website were you'll find the newest information concerning Cisco Ipv6 fabricate and Implementation Techniques.
To your success,