Sabtu, 09 Juni 2012

RIP DAN EIGRP



MENGATUR IP ADDRESS PADA INTERFACE


ROUTER AUSTIN
Router>ena
Router#conf t
Router(config)#hostname AUSTIN
AUSTIN(config)#exit

AUSTIN#conf t
AUSTIN(config)#int fa0/0
AUSTIN(config-if)#ip add 172.16.10.1 255.255.255.0
AUSTIN(config-if)#no shut
AUSTIN(config-if)#exit

AUSTIN(config)#int ser2/0
AUSTIN(config-if)#ip add 172.16.20.1 255.255.255.0
AUSTIN(config-if)#clock rate 64000
AUSTIN(config-if)#no shut
AUSTIN(config-if)#exit

ROUTER HOUSTON
Router>ena
Router#conf t
Router(config)#hostname HOUSTON
HOUSTON(config)#exit

HOUSTON#conf t
HOUSTON(config)#int fa0/0
HOUSTON(config-if)#ip add 172.16.30.1 255.255.255.0
HOUSTON(config-if)#no shut
HOUSTON(config-if)#exit

HOUSTON(config)#int ser2/0
HOUSTON(config-if)#ip add 172.16.20.2 255.255.255.0
HOUSTON(config-if)#no shut
HOUSTON(config-if)#exit



Setting IP address pada PC masing-masing

PC 1
IP Address 172.16.10.10
SM 255.255.255.0

PC 2
IP Address 172.16.30.30
SM 255.255.255.0


KONFIGURASI EIGRP PADA MASING-MASING ROUTER



AUSTIN>ena
AUSTIN#conf t
AUSTIN(config)#router eigrp 100
AUSTIN(config-router)#network 172.16.0.0 0.0.0.255
AUSTIN(config-router)#network 172.16.20.0 0.0.0.255
AUSTIN(config-router)#network 172.16.10.0 0.0.0.255
AUSTIN(config-router)#no auto-summary
AUSTIN(config-router)#variance 1
AUSTIN(config-router)#^Z

AUSTIN#conf t
AUSTIN(config)#router eigrp 10
AUSTIN(config-router)#network 172.16.0.0 0.0.0.255
AUSTIN(config-router)#network 172.16.20.0 0.0.0.255
AUSTIN(config-router)#network 172.16.10.0 0.0.0.255
AUSTIN(config-router)#exit


HOUSTON>ena
HOUSTON#conf t
HOUSTON(config)#router eigrp 100
HOUSTON(config-router)#network 172.16.0.0 0.0.0.255
HOUSTON(config-router)#network 172.16.20.0 0.0.0.255
HOUSTON(config-router)#network 172.16.30.0 0.0.0.255
HOUSTON(config-router)#no auto-summary
HOUSTON(config-router)#variance 1
HOUSTON(config-router)#^Z


HOUSTON#conf t
HOUSTON(config)#router eigrp 10
HOUSTON(config-router)#network 172.16.0.0 0.0.0.255
HOUSTON(config-router)#network 172.16.20.0 0.0.0.255
HOUSTON(config-router)#network 172.16.30.0 0.0.0.255
HOUSTON(config-router)#exit
HOUSTON(config)#exit

PERINTAH PING PADA COMMAND PROMPT

Pada PC1 ping 172.16.10.10

pada PC2 ping 172.16.30.30

MEMBERIKAN PERINTAH SHOW IP ROUTE PADA MAING-MASING ROUTER

Show ip route austin
AUSTIN#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B

- BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter

area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external

type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E -

EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia -

IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

172.16.0.0/24 is subnetted, 3 subnets
C 172.16.10.0 is directly connected, FastEthernet0/0
C 172.16.20.0 is directly connected, Serial2/0
D 172.16.30.0 [90/20514560] via 172.16.20.2, 00:05:43,

Serial2/0


Show ip route houston
HOUSTON#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B

- BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter

area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external

type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E -

EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia -

IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

172.16.0.0/24 is subnetted, 3 subnets
D 172.16.10.0 [90/20514560] via 172.16.20.1, 00:20:24,

Serial2/0
C 172.16.20.0 is directly connected, Serial2/0
C 172.16.30.0 is directly connected, FastEthernet0/0


KONFIGURASI RIP PADA MASING-MASING ROUTER

AUSTIN#conf t
AUSTIN(config)#int fa0/0
AUSTIN(config-if)#ip add 172.16.10.1 255.255.255.0
AUSTIN(config-if)#no shut
AUSTIN(config-if)#exit
AUSTIN(config)#int ser2/0
AUSTIN(config-if)#ip add 172.16.20.1 255.255.255.0
AUSTIN(config-if)#clock rate 64000
AUSTIN(config-if)#no shut
AUSTIN(config-if)#exit
AUSTIN(config)#exit


HOUSTON#conf t
HOUSTON(config)#int fa0/0
HOUSTON(config-if)#ip add 172.16.30.1 255.255.255.0
HOUSTON(config-if)#no shut
HOUSTON(config-if)#exit
HOUSTON(config)#int ser2/0
HOUSTON(config-if)#ip add 172.16.20.2 255.255.255.0
HOUSTON(config-if)#no shut
HOUSTON(config-if)#exit
HOUSTON(config)#exit

MENGENALKAN MASING-MASING JARINGAN MENGGUNAKAN ROUTER STATIS

AUSTIN#conf t
AUSTIN(config)#ip route 172.16.30.0 255.255.255.0 172.16.20.2
AUSTIN(config)#end

HOUSTON#conf t
HOUSTON(config)#ip route 172.16.10.0 255.255.255.0 172.16.20.1
HOUSTON(config)#end

MENGECEK DENGAN MEMBERIKAN PERINTAH SHOW IP ROUTE KEMBALI

ROUTER AUSTIN
AUSTIN#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B

- BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter

area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external

type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E -

EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia -

IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

172.16.0.0/24 is subnetted, 3 subnets
C 172.16.10.0 is directly connected, FastEthernet0/0
C 172.16.20.0 is directly connected, Serial2/0
S 172.16.30.0 [1/0] via 172.16.20.2


ROUTER HOUSTON
HOUSTON#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B

- BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter

area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external

type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E -

EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia -

IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route

Gateway of last resort is not set

172.16.0.0/24 is subnetted, 3 subnets
S 172.16.10.0 [1/0] via 172.16.20.1
C 172.16.20.0 is directly connected, Serial2/0
C 172.16.30.0 is directly connected, FastEthernet0/0

Template by:

Free Blog Templates