ipv6 Lab 3 : IPV6 Routing RIPng
LAB 3
Di lab kali ini kita menggunakan topologi seperti diatas, kita akan menjalankan routing tipe RIP menggunakan IPV6.
Konfigurasi ipv6 address dasar
R1
R1(config)#ipv6 unicast-routingR1(config)#int f0/0
R1(config-if)#ipv6 address 12::1/126
R1(config-if)#no shutdown
R1(config-if)#int lo0
R1(config-if)#ipv6 address 1::1/128
R2(config)#ipv6 unicast-routing R2
R2(config)#int f0/0
R2(config-if)#ipv6 address 12::2/126
R2(config-if)#no shutdown
R2(config-if)#int f0/1
R2(config-if)#ipv6 address 23::2/126
R2(config-if)#no shutdown
R2(config-if)#int lo0
R2(config-if)#ipv6 address 2::2/128
R3(config)#ipv6 unicast-routing R3
R3(config)#int f0/0
R3(config-if)#ipv6 address 23::3/126
R3(config-if)#no shutdown
R3(config-if)#int lo0
R3(config-if)#ipv6 address 3::3/128
R1(config)#interface f0/0 Konfigurasikan RIP pada masing-masing interface
R1
R1(config-if)#ipv6 rip IDN enable
R1(config-if)#exit
R1(config)#!
R1(config)#interface lo0
R1(config-if)#ipv6 rip IDN enable
R1(config-if)#exit
R2(config)#interface f0/0 R2
R2(config-if)#ipv6 rip IDN enable
R2(config-if)#exit
R2(config)#interface f0/1
R2(config-if)#ipv6 rip IDN enable
R2(config-if)#exit
R2(config)#interface lo0
R2(config-if)#ipv6 rip IDN enable
R2(config-if)#exit
R3(config)#interface f0/0 R3
R3(config-if)#ipv6 rip IDN enable
R3(config-if)#exit
R3(config)#interface lo0
R3(config-if)#ipv6 rip IDN enable
R3(config-if)#exit
R1(config)#do sh ipv6 route rip R1
R 2::2/128 [120/2]
via FE80::C802:7FF:FE3B:8, FastEthernet0/0
R 3::3/128 [120/3]
via FE80::C802:7FF:FE3B:8, FastEthernet0/0
R 23::/126 [120/2]
via FE80::C802:7FF:FE3B:8, FastEthernet0/0
R1(config)#do ping 2::2 Lakukan test ping
R1
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/17/48 ms
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3::3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/34/40 ms
IPv6 Routing Protocol is "connected"
IPv6 Routing Protocol is "rip IDN"
Interfaces:
Loopback0
FastEthernet0/0
Redistribution:
None
RIP process "IDN", port 521, multicast-group FF02::9, pid 261
Administrative distance is 120. Maximum paths is 16
Updates every 30 seconds, expire after 180
Holddown lasts 0 seconds, garbage collect after 120
Split horizon is on; poison reverse is off
Default routes are not generated
Periodic updates 26, trigger updates 4
Interfaces:
Loopback0
FastEthernet0/0
Redistribution:
None
RIP Routing Protocol debugging is on
R1#
*Dec 7 11:17:22.891: RIPng: Packet waiting
*Dec 7 11:17:22.891: RIPng: response received from FE80::C802:7FF:FE26:8 on FastEthernet0/0 for IDN
*Dec 7 11:17:22.891: src=FE80::C802:7FF:FE26:8 (FastEthernet0/0)
*Dec 7 11:17:22.891: dst=FF02::9
*Dec 7 11:17:22.891: sport=521, dport=521, length=92
*Dec 7 11:17:22.891: command=2, version=1, mbz=0, #rte=4
*Dec 7 11:17:22.891: tag=0, metric=1, prefix=12::/126
*Dec 7 11:17:22.891: tag=0, metric=1, prefix=23::/126
*Dec 7 11:17:22.891: tag=0, metric=1, prefix=2::2/128
*Dec 7 11:17:22.891: tag=0, metric=2, prefix=3::3/128
R1#
*Dec 7 11:17:29.399: RIPng: Next RIB walk in 173492
Comments
Post a Comment