Pages

network cisco ccna gns3 certification arteq

network cisco ccna gns3 certification arteq
a network runs through it

Search insearchofthecert

Monday, September 24, 2012

ipv6 love cont...

you know what's coming...


configure ospf area 0 between r2 and r3...

r2

ipv6 router ospf 1
router-id 2.2.2.2

int lo0
ipv6 ospf 1 area 0

int f0/0
ipv6 ospf 1 area 0

r3

ipv6 router ospf 1
router-id 3.3.3.3

int lo0
ipv6 ospf 1 area 0

int f0/0
ipv6 ospf 1 area 0


that was easy...

r2#sh ipv6 ospf neigh

            OSPFv3 Router with ID (2.2.2.2) (Process ID 1)

Neighbor ID     Pri   State           Dead Time   Interface ID    Interface
3.3.3.3           1   FULL/DR         00:00:37    2               FastEthernet0/0



r3#sh ipv6 ospf neigh

            OSPFv3 Router with ID (3.3.3.3) (Process ID 1)

Neighbor ID     Pri   State           Dead Time   Interface ID    Interface
2.2.2.2           1   FULL/BDR        00:00:32    2               FastEthernet0/0

add ripNg to r1

ipv6 router rip ripper

int lo0
ipv6 rip ripper enable
int s1/0
ipv6 rip ripper enable

and add ripNg to r2

ipv6 router rip ripper


int s1/0
ipv6 rip ripper enable

r2#sh ipv6 route | excl L
IPv6 Routing Table - default - 9 entries
       EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination
       NDr - Redirect, O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1
C   2001::/64 [0/0]
     via Serial1/0, directly connected
     via Serial1/0, receive
R   2001:1111::/64 [120/2]
     via FE80::C805:BFF:FEF0:8, Serial1/0
C   2002::/64 [0/0]
     via FastEthernet0/0, directly connected
     via FastEthernet0/0, receive
C   2002:2222::/64 [0/0]
O   2003:3333::1/128 [110/1]
     via FE80::C808:BFF:FEF0:8, FastEthernet0/0
     via Null0, receive

r1#sh ipv6 route | excl L
IPv6 Routing Table - default - 5 entries
       EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination
       NDr - Redirect, O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1
C   2001::/64 [0/0]
     via Serial1/0, directly connected
     via Serial1/0, receive
C   2001:1111::/64 [0/0]
     via Null0, receive

go ahead and redistribute rip into ospf and ospf into rip...

r2

ipv6 router ospf 1
redistrib rip ripper include-conn

ipv6 router rip ripper
redistrib ospf 1 metric 5

r1#sh ipv6 route | excl L
IPv6 Routing Table - default - 6 entries
       EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination
       NDr - Redirect, O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1
C   2001::/64 [0/0]
     via Serial1/0, directly connected
     via Serial1/0, receive
C   2001:1111::/64 [0/0]
R   2003:3333::1/128 [120/6]
     via FE80::C806:BFF:FEF0:8, Serial1/0
     via Null0, receive

r3#sh ipv6 route | excl L
IPv6 Routing Table - default - 10 entries
       EX - EIGRP external, ND - ND Default, NDp - ND Prefix, DCE - Destination
       NDr - Redirect, O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1
OE2 2001::/64 [110/20]
     via FE80::C806:BFF:FEF0:8, FastEthernet0/0
OE2 2001:1111::/64 [110/20]
     via FE80::C806:BFF:FEF0:8, FastEthernet0/0
C   2002::/64 [0/0]
     via FastEthernet0/0, directly connected
     via FastEthernet0/0, receive
O   2002:2222::1/128 [110/1]
     via FE80::C806:BFF:FEF0:8, FastEthernet0/0
C   2003::/64 [0/0]
     via FastEthernet0/1, directly connected
     via FastEthernet0/1, receive
C   2003:3333::/64 [0/0]
     via Null0, receive

having fun yet?

No comments:

Post a Comment