ipv6 Lab 4 : IPV6 Routing OSPFv3 Dasar Konfig

 LAB 4

kali ini kita akan ngelab ipv6, yang membedakan dengan lab sebelumnya adalah, kalau sebelumnya kita routingnya menggunakan RIP, sekarang kita akan menggunakan routing tipe OSPF...

Topologinya masih sama seperti sebelumnya.

Hapus terlebih dahulu konfigurasi RIP sebelumnya 

R1-R2-R3 

R1(config)#no ipv6 router rip IDN 

R2(config)#no ipv6 router rip IDN 

R3(config)#no ipv6 router rip IDN 

Konfigurasikan OSPFv3 

R1
R1(config)#ipv6 router ospf 10
R1(config-rtr)#
*Dec  7 11:45:10.671: %OSPFv3-4-NORTRID: OSPFv3 process 10 could not pick a router-id,
please configure manually
R1(config-rtr)#router-id 1.1.1.1
R1(config-rtr)#ex
R1(config)#int f0/0
R1(config-if)#ipv6 ospf 10 area 0
R1(config-if)#ex
R1(config)#int lo0
R1(config-if)#ipv6 ospf 10 area 0
R1(config-if)#ex

R2

R2(config)#ipv6 router ospf 10
R2(config-rtr)#
*Dec  7 11:47:45.419: %OSPFv3-4-NORTRID: OSPFv3 process 10 could not pick a router-id,
please configure manually
R2(config-rtr)#router-id 2.2.2.2
R2(config-rtr)#ex
R2(config)#int f0/0
R2(config-if)#ipv6 ospf 10 area 0
R2(config-if)#int
*Dec  7 11:48:10.775: %OSPFv3-5-ADJCHG: Process 10, Nbr 1.1.1.1 on FastEthernet0/0 from LOADING to FULL, Loading Done
R2(config-if)#ex
R2(config)#int f0/1
R2(config-if)#ipv6 ospf 10 area 0
R2(config-if)#ex
R2(config)#int lo0
R2(config-if)#ipv6 ospf 10 area 0
R2(config-if)#ex

R3

R3(config)#ipv6 router ospf 10
R3(config-rtr)#
*Dec  7 11:49:33.867: %OSPFv3-4-NORTRID: OSPFv3 process 10 could not pick a router-id,
please configure manually
R3(config-rtr)#router-id 3.3.3.3
R3(config-rtr)#ex
R3(config)#int f0/0
R3(config-if)#ipv6 ospf 10 area 0
R3(config-if)#
*Dec  7 11:49:57.715: %OSPFv3-5-ADJCHG: Process 10, Nbr 2.2.2.2 on FastEthernet0/0 from LOADING to FULL, Loading Done
R3(config-if)#ex
R3(config)#int lo0
R3(config-if)#ipv6 ospf 10 area 0
R3(config-if)#ex

Cek Routing Table

R1

R1(config)#do sh ipv6 route ospf
IPv6 Routing Table - Default - 7 entries
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route
       B - BGP, M - MIPv6, R - RIP, I1 - ISIS L1
       I2 - ISIS L2, IA - ISIS interarea, IS - ISIS summary, D - EIGRP
       EX - EIGRP external
       O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
       ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
O   2::2/128 [110/1]
     via FE80::C802:7FF:FE26:8, FastEthernet0/0
O   3::3/128 [110/2]
     via FE80::C802:7FF:FE26:8, FastEthernet0/0
O   23::/126 [110/2]
     via FE80::C802:7FF:FE26:8, FastEthernet0/0

R2

R2#sh ipv6 ospf neighbor

Neighbor ID     Pri   State           Dead Time   Interface ID    Interface
3.3.3.3           1   FULL/BDR        00:00:34    4               FastEthernet0/1
1.1.1.1           1   FULL/DR         00:00:33    4               FastEthernet0/0


R2#sh ipv6 ospf database

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

                Router Link States (Area 0)

ADV Router      Age         Seq#        Fragment ID  Link count  Bits
1.1.1.1         301         0x80000004  0            1           None
2.2.2.2         194         0x80000005  0            2           None
3.3.3.3         179         0x80000002  0            1           None

                Net Link States (Area 0)

ADV Router      Age         Seq#        Link ID    Rtr count
1.1.1.1         301         0x80000001  4          2
2.2.2.2         194         0x80000001  5          2

                Link (Type-8) Link States (Area 0)

ADV Router      Age         Seq#        Link ID    Interface
2.2.2.2         288         0x80000001  5          Fa0/1
3.3.3.3         195         0x80000001  4          Fa0/1
1.1.1.1         424         0x80000001  4          Fa0/0
2.2.2.2         300         0x80000001  4          Fa0/0

                Intra Area Prefix Link States (Area 0)

ADV Router      Age         Seq#        Link ID    Ref-lstype  Ref-LSID
1.1.1.1         301         0x80000003  0          0x2001      0
1.1.1.1         303         0x80000001  4096       0x2002      4
2.2.2.2         195         0x80000003  0          0x2001      0
2.2.2.2         195         0x80000001  5120       0x2002      5
3.3.3.3         180         0x80000001  0          0x2001      0

R1

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


Comments