Postingan

KONFIGURASI VLAN + ROUTING STATIC DI H3C

Gambar
 Topologi: disini saya menggunakan Multi Layer Switch(MLS) H3C 29850 Series, saya akan menggunakan penyebutan MLS-1 untuk S9850-1,dan juga MLS-2/3 pada masing-masing perangkat. konfigurasi hostname dan point-to-point antar MLS pada masing-masing MLS MLS-1: <H3C>system-view System View: return to User View with Ctrl+Z. [H3C]hostname MLS-1 [MLS-1]interface HundredGigE 1/0/1 (interface ke arah MLS-2) [MLS-1-HundredGigE1/0/1]ip address 192.168.100.2 255.255.255.252 [MLS-1-HundredGigE1/0/1]no shutdown [MLS-1-HundredGigE1/0/1]quit MLS-2: <H3C>system-view System View: return to User View with Ctrl+Z. [H3C]hostname MLS-2 [MLS-2]interface HundredGigE 1/0/1  (interface ke arah MLS-1) [MLS-2-HundredGigE1/0/1]ip address 192.168.100.1 255.255.255.252 [MLS-2-HundredGigE1/0/1]no shutdown [MLS-2-HundredGigE1/0/1]quit [MLS-2]interface HundredGigE 1/0/2  (interface ke arah MLS-3) [MLS-2-HundredGigE1/0/2]ip address 192.168.200.1 255.255.255.252 [MLS-2-HundredGigE1/0/2]no shutdow...

ROUTING STATIC Metode Floating

Gambar
 Pasang IP di PC-0 : 192.168.10.10/24                            PC-1  : 192.168.30.10/24 Pasang  HWIC-2T di masing-masing Router, pasang persis seperti ini: Router0: Router>en Router#conf t Enter configuration commands, one per line.  End with CNTL/Z. Router(config)#int f0/0 R-0(config)# hostname R-0 R-0(config-if)#ip add 192.168.10.1 255.255.255.0 R-0(config-if)#no sh R-0(config-if)#int se0/0/0 R-0(config-if)#ip add 192.168.20.1 255.255.255.252 R-0(config-if)#no sh R-0(config-if)#int se0/0/1 R-0(config-if)#ip add 192.168.20.5 255.255.255.252 R-0(config-if)#no sh Router1: Router>en Router#conf t Enter configuration commands, one per line.  End with CNTL/Z. Router(config)#hostname R-1 R-1(config)#int f0/0 R-1(config-if)#ip add 192.168.30.1 255.255.255.0 R-1(config-if)#no sh R-1(config-if)#int se0/0/0 R-1(config-if)#ip add 192.168.20.2 255.255.255.252 R-1(config-if)#no sh R-1(co...

ROUTING STATIC METODE EXIT INTERFACE ROUTER CISCO

Gambar
  Pasang IP dengan ketentuan berikut: PC-0=192.168.10.10 255.255.255.0 PC-1=192.168.20.10 255.255.255.0 PC-2=192.168.30.10 255.255.255.0 Router-0: Router>en Router#conf t Enter configuration commands, one per line.  End with CNTL/Z. Router(config) hostname Router-0 Router-0(config)#int g0/0 Router-0(config-if)#ip add 192.168.100.1 255.255.255.0 Router-0(config-if)#no sh Router-0(config-if)# %LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up Router-0(config-if)#int g0/1 Router-0(config-if)#ip add 192.168.10.1 255.255.255.0 Router-0(config-if)#no sh Router-0(config-if)# %LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to up Router-0(config-if)# %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0, changed state to up %IP-4-DUPADDR: Duplicate address 192.168.10.1 on GigabitEthernet0/1, sourced by 0040.0BA9.5B01 Router-0(config-if)#ip route 192.168.2...

ROUTING STATIC METODE NEXT HOP 3 ROUTER CISCO

Gambar
rumus command routing static: contoh disini dari Router-0 mau nge-ping ke PC-1/192.168.20.2 ROUTER-0: Router>en Router#conf t Enter configuration commands, one per line.  End with CNTL/Z. Router#hostname Router-0 Router-0(config)#interface ra gigabitEthernet 0/0-1 Router-0(config-if-range)#no sh %LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up %LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/1, changed state to up Router-0(config)#interface gi0/0 Router-0(config-if)#ip add 10.10.10.2 255.0.0.0 Router-0(config-if)#ex Router-0(config)#interface gi0/1 Router-0(config-if)#ip add 192.168.10.1 255.255.255.0 Router-0(config-if)#ex Router-0(config)#ip route 192.168.20.0 255.255.255.0 10.10.10.2 Router-0(config)#ip route 192.168.30.0 255.255.255.0 10.10.10.2 Router-0(config)#ex untuk melihat tab route static, lakukan command: Router-0#show ip route static  S    20.0.0.0/8 [...

ROUTER ON STICK

Gambar
ini adalah LAB ROUTER-ON-STICK by Buku BEST PATH TRAINING CENTER oleh Bapak Danu Wiyoto, namun topologinya sudah saya rapihkan dengan perintah yang sudah terpampang di topologinya. kita langsung aja ke konfigurasinya. 1.Pasang IP static pada SERVER-PT 192.168.10.10/24 dan SERVER-DNS 192.168.10.11/24  2. Setting vlan pada masing masing switch, dan mode switchportnya masing-masing interface sesuai topologi SW-0: Switch>en Switch#conf t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#hostname SW-0 SW-0(config)#vlan 10 SW-0(config-vlan)#name 10 SW-0(config)#vlan 20 SW-0(config-vlan)#name 20 SW-0(config)#vlan 30 SW-0(config-vlan)#name 30 SW-0(config-vlan)#int r fa0/3-4 SW-0(config-if-range)#switchport mode access SW-0(config-if-range)#switchport access vlan 10 SW-0(config-if-range)#int r fa0/1-2 SW-0(config-if-range)#switchport mode trunk SW-1: Switch>en Switch#conf t Enter configuration commands, one per line.  End with CNTL/ZSW-1(confi...