Bismillahirrahmanirrahiim, pembahasan kali ini tentang LAB Inter-VLAN meanjutkan dari pembahasan yang kemaren 2, yaitu pembahasan tentang
Switch dasar dan tentang VLAN dan VTP (Trunking) agar lebih bisa memahami pada pembahasan LAB ini, sebaiknya pelajari dulu tentang pembahasan sebelumnya, atau kalau sudah paham langsung saja, sebelumnya udah di bahas inter-VLAN tapi hanya sebagian atau konsep dasarnya, Inter VLAN singkatnya berbeda VLAN yang bisa saling berkomunikasi entah itu melalui PING atau yang lainnya, agar berbeda VLAN bisa saling berkomunikasi, di butuhkan alat tambahan, yaitu: Router atau dengan Switch layer 3 (Multi Layer).
Konfigurasi InterVLAN mengandalkan port interface Physically dengan perbandingan 1 port interace Router di gunakan untuk 1 Traffic VLAN dengan subnet yang berbeda pada setiap VLAN atau bisa juga dengan interface virtual dengan menggunakan TRUNK (VTP), hal ini membuka kemungkinan terjadinya inter VLAN Routing, seperti halnya Router On Stick yaitu salah satu jenis konfigurasi yang mana sebuah interface Physically merouting Traffic ke beberapa VLAN pada Network, Router interface di konfigurasikan untuk beoperasi sebagai Link TRUNK dan terhubung pada Port Switch dalam mode TRUNK, kemudian Router menunujukan Inter VLAN Routing dengan menrima Traffic VLAN yang telah di tag pada Interface TRUNK dari Switch dan secara internal meRouting antar VLAN menggunakan Sub-Interface.
Selanjutnya Router akan MemForward Traffic VLAN yang di tag menuju VLAN tujuan melalui interface Physically yang sama, SubInterface adalah interface virtual yang di konfigurasikan pada interface Pysically, SubInterface ini di konfigurasikan pada Router yang secara virtual di konfigurasikan dengan IP Address dan VLAN, SubInterface di konfigurasikan untuk beberapa Subnet yang berbeda namun masih berhubungan dengan Subnet VLAN lain yang memfasilitasi routing secara logical sebelum frame data di tag VLAN dan di kirimkan ke Physical Interface, di bawah ini ccontoh gambar perbedaan Inter VLAN Router dan Router On Stick:
Berikut ini adalah LAB dari 1. InterVLAN Router dan 2. Router on Stick dengan menggunakan software simulator dari CISCO yang bernama Packet Tracer, dengan topology di bawah ini:
1. LAB Inter VLAN Router:
#. Topology:
- Keterangan:
a. N= Network
b. 1.1 / 2.1 dll.= IP Address belakan dari subnetwork
#. Konfigurasi:
a. Router:
Router>enable
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname IDN
IDN(config)#int f0/0
IDN(config-if)#ip add 192.168.1.1 255.255.255.0
IDN(config-if)#no shut
IDN(config-if)#exit
IDN(config)#int f0/1
IDN(config-if)#ip add 192.168.2.1 255.255.255.0
IDN(config-if)#no shut
IDN(config-if)#exit
b. Switch:
Switch>enable
Switch#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name SALES
Switch(config-vlan)#vlan 20
Switch(config-vlan)#name MARKETING
Switch(config-vlan)#int range fa0/1-2, f0/5
Switch(config-if-range)#sw mode access
Switch(config-if-range)#sw access vlan 10
Switch(config-if-range)#exit
Switch(config)#int range f0/3-4, f0/6
Switch(config-if-range)#sw mode access
Switch(config-if-range)#sw access vlan 20
Switch(config-if-range)#exit
#. Veryfikasi:
a. Router:
Router#sh ip interface br
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 192.168.1.1 YES manual up up
FastEthernet0/1 192.168.2.1 YES manual up up
Vlan1 unassigned YES unset administratively down down
b. Switch:
Switch(config)#do sh vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/7, Fa0/8, Fa0/9, Fa0/10
Fa0/11, Fa0/12, Fa0/13, Fa0/14
Fa0/15, Fa0/16, Fa0/17, Fa0/18
Fa0/19, Fa0/20, Fa0/21, Fa0/22
Fa0/23, Fa0/24
10 SALES active Fa0/1, Fa0/2, Fa0/5
20 MARKETING active Fa0/3, Fa0/4, Fa0/6
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
10 enet 100010 1500 - - - - - 0 0
20 enet 100020 1500 - - - - - 0 0
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0
Remote SPAN VLANs
------------------------------------------------------------------------------
Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------
#. Pengecekan:
PC>ipconfig
FastEthernet0 Connection:(default port)
Link-local IPv6 Address.........: FE80::202:16FF:FE45:247B
IP Address......................: 192.168.1.2
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 192.168.1.1
PC>ping 192.168.2.3
Pinging 192.168.2.3 with 32 bytes of data:
Request timed out.
Reply from 192.168.2.3: bytes=32 time=13ms TTL=127
Reply from 192.168.2.3: bytes=32 time=1ms TTL=127
Reply from 192.168.2.3: bytes=32 time=4ms TTL=127
Ping statistics for 192.168.2.3:
Packets: Sent = 4, Received = 3, Lost = 1 (25% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 13ms, Average = 6ms
PC>tracert 192.168.2.3
Tracing route to 192.168.2.3 over a maximum of 30 hops:
1 0 ms 0 ms 0 ms 192.168.1.1
2 0 ms 0 ms 0 ms 192.168.2.3
Trace complete.
2. LAB Inter VLAN - Router On Stick
#. Topology:
- Keterangan:
a. N= Network
b. 1.2 / 2.2= IP adddress belakang dari Subnetworknya
#. Konfigurasi:
a. Router:
Router>enable
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname IDN
IDN(config-if)#no shut
IDN(config-if)#exit
IDN(config)#int f0/0.10
IDN(config-subif)#encapsulation dot1q 10
IDN(config-subif)#ip add 192.168.1.1 255.255.255.0
IDN(config-subif)#exit
IDN(config)#int f0/0.20
IDN(config-subif)#encapsulation dot1q 20
IDN(config-subif)#ip add 192.168.2.1 255.255.255.0
IDN(config-subif)#exit
IDN(config)#
b. SWITCH:
Switch>enable
Switch#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10
Switch(config-vlan)#name SALES
Switch(config-vlan)#vlan 20
Switch(config-vlan)#name MARKETING
Switch(config-vlan)#exit
Switch(config)#int range f0/1-2
Switch(config-if-range)#sw mode access
Switch(config-if-range)#sw access vlan 10
Switch(config-if-range)#exit
Switch(config)#int range f0/3-4
Switch(config-if-range)#sw mode access
Switch(config-if-range)#sw access vlan 20
Switch(config-if-range)#exit
Switch(config)#int f0/5
Switch(config-if)#sw mode trunk
Switch(config-if)#sw trunk encapsulation dot1q
#. Veryfikasi:
a. Router:
Router#sh ip int br
Interface IP-Address OK? Method Status Protocol
FastEthernet0/0 unassigned YES unset up up
FastEthernet0/0.10 192.168.1.1 YES manual up up
FastEthernet0/0.20 192.168.2.1 YES manual up up
FastEthernet0/1 unassigned YES unset administratively down down
Vlan1 unassigned YES unset administratively down down
b. SWITCH:
Switch(config)#do sh vlan
VLAN Name Status Ports
---- -------------------------------- --------- -------------------------------
1 default active Fa0/6, Fa0/7, Fa0/8, Fa0/9
Fa0/10, Fa0/11, Fa0/12, Fa0/13
Fa0/14, Fa0/15, Fa0/16, Fa0/17
Fa0/18, Fa0/19, Fa0/20, Fa0/21
Fa0/22, Fa0/23, Fa0/24
10 SALES active Fa0/1, Fa0/2
20 MARKETING active Fa0/3, Fa0/4
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup
VLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2
---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------
1 enet 100001 1500 - - - - - 0 0
10 enet 100010 1500 - - - - - 0 0
20 enet 100020 1500 - - - - - 0 0
1002 fddi 101002 1500 - - - - - 0 0
1003 tr 101003 1500 - - - - - 0 0
1004 fdnet 101004 1500 - - - ieee - 0 0
1005 trnet 101005 1500 - - - ibm - 0 0
Remote SPAN VLANs
------------------------------------------------------------------------------
Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------
Switch(config)#do sh int trunk
Port Mode Encapsulation Status Native vlan
Fa0/5 on 802.1q trunking 1
Port Vlans allowed on trunk
Fa0/5 1-1005
Port Vlans allowed and active in management domain
Fa0/5 1,10,20
Port Vlans in spanning tree forwarding state and not pruned
Fa0/5 1,10,20
#. Pengecekan:
PC>ipconfig
FastEthernet0 Connection:(default port)
Link-local IPv6 Address.........: FE80::2D0:D3FF:FEEC:E7CC
IP Address......................: 192.168.1.2
Subnet Mask.....................: 255.255.255.0
Default Gateway.................: 192.168.1.1
PC>ping 192.168.2.3
Pinging 192.168.2.3 with 32 bytes of data:
Request timed out.
Reply from 192.168.2.3: bytes=32 time=2ms TTL=127
Reply from 192.168.2.3: bytes=32 time=0ms TTL=127
Reply from 192.168.2.3: bytes=32 time=0ms TTL=127
Ping statistics for 192.168.2.3:
Packets: Sent = 4, Received = 3, Lost = 1 (25% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 2ms, Average = 0ms
PC>tracert 192.168.2.3
Tracing route to 192.168.2.3 over a maximum of 30 hops:
1 1 ms 0 ms 0 ms 192.168.1.1
2 0 ms 0 ms 1 ms 192.168.2.3
Trace complete.
Kalau berbeda VLAN sudah bisa saling berkomunikasi melalui PING atau Tracert berarti LAB tersebut berhasil, dan anda juga sudah tahukan perbedaan antara INTER VLAN sama INTER-VLAN ROS, oke sekian dulu pada pembahasan kali ini, mohon maaf kalau ada kesalahan dalam penulisan baik kata atau yang lainnya, mohon kritik dan sarannya sesama sobat BLOGGER ,terimakasih.
Tolong Laporkan Jika Ada Link Yang Error Atau Gambar Tidak Muncul :)
dan mohon untuk mengklik iklan banner untuk kelangsungan blog :)"
Sekalian juga untuk biaya sekolah admin nya. :) terimakasih :)
EmoticonEmoticon