Monday, February 6, 2012

IPV6 EIGRP V6

EIGRPV6 OVERVIEW
-----------------
SImilar in operation to EIGRP
 - transport via protocol 88 to unicast & multicast FF02::A
Enabled at link level
   ipv6 eigrp [ASN]
Global process disabled by default
   - no shutdown under global process
   - IPV4 formateed router id needed
int fa0/0.146
ipv6 eigrp 1
ipv6 router eigrp 1
no shut
sh ipv6 eigrp neighbors
sh ipv6 eigrp topology

EIGRPv6 use the router configuration command “distribute-list prefix-list” to perform route filtering; and when configuring route filtering the “route-map” command is not supported
LAB
----

r5
---

OK so we enable eigrp on the interface
r5(config)#int s0/0/0
r5(config-if)#ipv6 eigrp 1

enable the router eigrp and do a no shut
r5(config)#ipv6 router eigrp 1
r5(config-rtr)#no shut
r5(config-rtr)#

r1
---
r1(config)#int s0/0
r1(config-if)#ipv6 eigrp 1
r1(config-if)#exit
r1(config)#ipv6 erouter eigrp 1
                ^
% Invalid input detected at '^' marker.
r1(config)#ipv6 router eigrp 1
r1(config-rtr)#no shut
r1(config-rtr)#

r1(config)#int lo0
r1(config-if)#ipv6 eigrp 1
r1(config-if)#

r2
---
r2(config)#int s0/0
r2(config-if)#ipv6 eigrp 1
r2(config-if)#int lo0
r2(config-if)#ipv6 eigrp 1
r2(config-if)#exit
r2(config)#ipv6 router eigrp 1
r2(config-rtr)#no shut
r2(config-rtr)#
*Mar  1 07:48:13.967: %DUAL-5-NBRCHANGE: IPv6-EIGRP(0) 1: Neighbor FE80::213:19FF:FED6:F4D2 (Serial0/0) is up: new adjacency

r2#sh ipv6 eigrp neig
IPv6-EIGRP neighbors for process 1
H   Address                 Interface       Hold Uptime   SRTT   RTO  Q  Seq
                                            (sec)         (ms)       Cnt Num
0   Link-local address:     Se0/0            167 00:00:21    1  5000  1  0
    FE80::213:19FF:FED6:F4D2
r2#sh ipv6 eigrp top
IPv6-EIGRP Topology Table for AS(1)/ID(12.12.12.12)
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,
       r - reply Status, s - sia Status
P 2001:2:2:2::2/128, 1 successors, FD is 128256
        via Connected, Loopback0
P 2001:155::/64, 1 successors, FD is 2169856
        via Connected, Serial0/0


r2#sh ipv6 route
IPv6 Routing Table - 5 entries
Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP
       U - Per-user Static route
       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
LC  2001:2:2:2::2/128 [0/0]
     via ::, Loopback0
C   2001:155::/64 [0/0]
     via ::, Serial0/0
L   2001:155::2/128 [0/0]
     via ::, Serial0/0
L   FE80::/10 [0/0]
     via ::, Null0
L   FF00::/8 [0/0]
     via ::, Null0

r5
---

R5 is not getting the routes the only way i could get the routes was to do a map to
the link local address
r5#sh run int s0/0/0
Building configuration...
Current configuration : 569 bytes
!
interface Serial0/0/0
 ip address 155.0.0.5 255.255.255.0
 encapsulation frame-relay
 ipv6 address 2001:155::5/64
 ipv6 eigrp 1
 frame-relay map ipv6 FE80::21A:A2FF:FE64:DF80 502 broadcast
 frame-relay map ipv6 FE80::20D:28FF:FE70:2040 501 broadcast
 frame-relay map ipv6 2001:155::2 502 broadcast
 frame-relay map ipv6 2001:1:1:1::1 501
 frame-relay map ipv6 2001:155::1 501 broadcast
 frame-relay map ip 155.0.0.4 504 broadcast
 frame-relay map ip 155.0.0.1 501 broadcast
 frame-relay map ip 155.0.0.3 503 broadcast
 frame-relay map ip 155.0.0.2 502 broadcast
end

r5#sh ipv6 route
IPv6 Routing Table - 6 entries
Codes: C - Connected, L - Local, S - Static, R - RIP, B - BGP
       U - Per-user Static route
       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
D   2001:1:1:1::1/128 [90/2297856]
     via FE80::20D:28FF:FE70:2040, Serial0/0/0
D   2001:2:2:2::2/128 [90/2297856]
     via FE80::21A:A2FF:FE64:DF80, Serial0/0/0
C   2001:155::/64 [0/0]
     via ::, Serial0/0/0
L   2001:155::5/128 [0/0]
     via ::, Serial0/0/0
L   FE80::/10 [0/0]
     via ::, Null0
L   FF00::/8 [0/0]
     via ::, Null0
r5#

notice how the routes recurse to the link local address not the global addresses

r5(config)#int s0/0/0
r5(config-if)#no ipv6 split-horizon eigrp 1
r5(config-if)#



No comments:

Post a Comment