- MEMBERI NAMA HOSTNAME DAN MEMASUKAN IP ADDRESS
Ø ROUTER 1
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1
R1(config)#int fa0/0
R1(config-if)#ip add 172.16.3.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#exit
R1(config)#int s2/0
R1(config-if)#ip add 172.16.2.1 255.255.255.0
R1(config-if)#clock rate 64000
R1(config-if)#no shut
Ø ROUTER 2
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R2
R2(config)#int fa0/0
R2(config-if)#ip add 172.16.1.1 255.255.255.0
R2(config-if)#no shut
R2(config-if)#exit
R2(config)#int s2/0
R2(config-if)#ip add 172.16.2.2 255.255.255.0
R2(config-if)#no shut
R2(config)#int s3/0
R2(config-if)#ip add 192.168.1.2 255.255.255.0
R2(config-if)#clock rate 64000
R2(config-if)#no shut
Ø ROUTER3
Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R3
R3(config)#int fa 0/0
R3(config-if)#ip add 192.168.2.1 255.255.255.0
R3(config-if)#no shut
R3(config-if)#exit
R3(config)#int s3/0
R3(config-if)#ip add 192.168.1.1 255.255.255.0
R3(config-if)#no shut
- MENGENALKAN MASING-MASING JARINGAN DENGAN MENGGUNAKAN ROUTER STATIS
Ø ROUTER1
R1#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)#ip route 0.0.0.0 0.0.0.0 s2/0
R1(config)#exit
%SYS-5-CONFIG_I: Configured from console by console
R1#wr mem
Building configuration...
[OK]
Ø ROUTER2
R2#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R2(config)#ip route 172.16.3.0 255.255.255.0 s2/0
R2(config)#ip route 192.168.2.0 255.255.255.0 s3/0
R2(config)#^Z
%SYS-5-CONFIG_I: Configured from console by console
R2#wr mem
Building configuration...
[OK]
Ø ROUTER3
R3#conf t
Enter configuration commands, one per line. End with CNTL/Z.
R3(config)#ip route 0.0.0.0 0.0.0.0 s3/0
R3(config)#exit
%SYS-5-CONFIG_I: Configured from console by console
R3#wr mem
Building configuration...
[OK]
- MEMERIKSA KONEKSI DENGAN PERINTAH PING
- MEMERIKSA KONEKSI DENGAN PERINTAH TRACEROUTE
Ø ROUTER1
R1#traceroute 172.16.1.0
Type escape sequence to abort.
Tracing the route to 172.16.1.0
1 172.16.2.2 31 msec 31 msec 32 msec
R1#traceroute 192.168.2.0
Type escape sequence to abort.
Tracing the route to 192.168.2.0
1 172.16.2.2 31 msec 32 msec 31 msec
2 192.168.1.1 47 msec 62 msec 62 msec
Ø ROUTER2
R2#traceroute 192.168.2.0
Type escape sequence to abort.
Tracing the route to 192.168.2.0
1 192.168.1.1 47 msec 32 msec 16 msec
R2#traceroute 172.16.3.0
Type escape sequence to abort.
Tracing the route to 172.16.3.0
1 172.16.2.1 31 msec 32 msec 31 msec
Ø ROUTER3
R3#traceroute 172.16.1.0
Type escape sequence to abort.
Tracing the route to 172.16.1.0
1 192.168.1.2 31 msec 32 msec 31 msec
R3#traceroute 172.16.3.0
Type escape sequence to abort.
Tracing the route to 172.16.3.0
1 192.168.1.2 31 msec 31 msec 31 msec
2 172.16.2.1 47 msec 63 msec 47 msec
- MEMERIKSA KONEKSI DENGAN MENGGUNAKAN PERINTAH SHOW IP ROUTE
Ø ROUTER1
R1#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 0.0.0.0 to network 0.0.0.0
172.16.0.0/24 is subnetted, 2 subnets
C 172.16.2.0 is directly connected, Serial2/0
C 172.16.3.0 is directly connected, FastEthernet0/0
S* 0.0.0.0/0 is directly connected, Serial2/0
Ø ROUTER2
R2#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.1.0 is directly connected, FastEthernet0/0
C 172.16.2.0 is directly connected, Serial2/0
S 172.16.3.0 is directly connected, Serial2/0
C 192.168.1.0/24 is directly connected, Serial3/0
S 192.168.2.0/24 is directly connected, Serial3/0
Ø ROUTER3
R3#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 0.0.0.0 to network 0.0.0.0
C 192.168.1.0/24 is directly connected, Serial3/0
C 192.168.2.0/24 is directly connected, FastEthernet0/0
S* 0.0.0.0/0 is directly connected, Serial3/0
- MEMERIKSA KONEKSI DENGAN MENGGUNAKAN PERINTAH SHOW IP INTERFACE BRIEF
Ø ROUTER1
R1#show ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 172.16.3.1 YES manual up up
FastEthernet1/0 unassigned YES manual administratively down down
Serial2/0 172.16.2.1 YES manual up up
Serial3/0 unassigned YES manual administratively down down
FastEthernet4/0 unassigned YES manual administratively down down
FastEthernet5/0 unassigned YES manual administratively down down
Ø ROUTER2
R2#show ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 172.16.1.1 YES manual up up
FastEthernet1/0 unassigned YES manual administratively down down
Serial2/0 172.16.2.2 YES manual up up
Serial3/0 192.168.1.2 YES manual up up
FastEthernet4/0 unassigned YES manual administratively down down
FastEthernet5/0 unassigned YES manual administratively down down
Ø ROUTER3
R3#show ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.2.1 YES manual up up
FastEthernet1/0 unassigned YES manual administratively down down
Serial2/0 unassigned YES manual administratively down down
Serial3/0 192.168.1.1 YES manual up up
FastEthernet4/0 unassigned YES manual administratively down down
FastEthernet5/0 unassigned YES manual administratively down down
- MEMERIKSA KONEKSI DENGAN MENGGUNAKAN PERINTAH SHOW CDP NEIGHBORS DETAIL
Ø ROUTER1
R1#show cdp neighbors detail
Device ID: Switch
Entry address(es):
Platform: cisco PT3000, Capabilities: Switch
Interface: FastEthernet0/0, Port ID (outgoing port): FastEthernet0/1
Holdtime: 165
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT3000 Software (PT3000-I6Q4L2-M), Version 12.1(22)EA4, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 12-May-06 17:19 by pt_team
advertisement version: 2
Duplex: full
---------------------------
Device ID: R2
Entry address(es):
IP address : 172.16.2.2
Platform: cisco PT1000, Capabilities: Router
Interface: Serial2/0, Port ID (outgoing port): Serial2/0
Holdtime: 171
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT1000 Software (PT1000-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2005 by cisco Systems, Inc.
Compiled Wed 27-Apr-04 19:01 by miwang
advertisement version: 2
Duplex: full
Ø ROUTER2
R2#show cdp neighbors detail
Device ID: Switch
Entry address(es):
Platform: cisco PT3000, Capabilities: Switch
Interface: FastEthernet0/0, Port ID (outgoing port): FastEthernet0/1
Holdtime: 157
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT3000 Software (PT3000-I6Q4L2-M), Version 12.1(22)EA4, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 12-May-06 17:19 by pt_team
advertisement version: 2
Duplex: full
---------------------------
Device ID: R1
Entry address(es):
IP address : 172.16.2.1
Platform: cisco PT1000, Capabilities: Router
Interface: Serial2/0, Port ID (outgoing port): Serial2/0
Holdtime: 121
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT1000 Software (PT1000-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2005 by cisco Systems, Inc.
Compiled Wed 27-Apr-04 19:01 by miwang
advertisement version: 2
Duplex: full
---------------------------
Device ID: R3
Entry address(es):
IP address : 192.168.1.1
Platform: cisco PT1000, Capabilities: Router
Interface: Serial3/0, Port ID (outgoing port): Serial3/0
Holdtime: 152
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT1000 Software (PT1000-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2005 by cisco Systems, Inc.
Compiled Wed 27-Apr-04 19:01 by miwang
advertisement version: 2
Duplex: full
Ø ROUTER3
R3#show cdp neighbors detail
Device ID: Switch
Entry address(es):
Platform: cisco PT3000, Capabilities: Switch
Interface: FastEthernet0/0, Port ID (outgoing port): FastEthernet0/1
Holdtime: 149
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT3000 Software (PT3000-I6Q4L2-M), Version 12.1(22)EA4, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 12-May-06 17:19 by pt_team
advertisement version: 2
Duplex: full
---------------------------
Device ID: R2
Entry address(es):
IP address : 192.168.1.2
Platform: cisco PT1000, Capabilities: Router
Interface: Serial3/0, Port ID (outgoing port): Serial3/0
Holdtime: 171
Version :
Cisco Internetwork Operating System Software
IOS (tm) PT1000 Software (PT1000-I-M), Version 12.2(28), RELEASE SOFTWARE (fc5)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2005 by cisco Systems, Inc.
Compiled Wed 27-Apr-04 19:01 by miwang
advertisement version: 2
Duplex: full
Tidak ada komentar:
Posting Komentar