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>enableRouter#conf tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname IDNIDN(config)#int f0/0IDN(config-if)#ip add 192.168.1.1 255.255.255.0IDN(config-if)#no shutIDN(config-if)#exitIDN(config)#int f0/1IDN(config-if)#ip add 192.168.2.1 255.255.255.0IDN(config-if)#no shutIDN(config-if)#exit
b. Switch:
Switch>enableSwitch#conf tEnter configuration commands, one per line. End with CNTL/Z.Switch(config)#vlan 10Switch(config-vlan)#name SALESSwitch(config-vlan)#vlan 20Switch(config-vlan)#name MARKETINGSwitch(config-vlan)#int range fa0/1-2, f0/5Switch(config-if-range)#sw mode accessSwitch(config-if-range)#sw access vlan 10Switch(config-if-range)#exitSwitch(config)#int range f0/3-4, f0/6Switch(config-if-range)#sw mode accessSwitch(config-if-range)#sw access vlan 20Switch(config-if-range)#exit
#. Veryfikasi:
a. Router:
Router#sh ip interface brInterface IP-Address OK? Method Status ProtocolFastEthernet0/0 192.168.1.1 YES manual up upFastEthernet0/1 192.168.2.1 YES manual up upVlan1 unassigned YES unset administratively down downb. Switch:
Switch(config)#do sh vlanVLAN Name Status Ports---- -------------------------------- --------- -------------------------------1 default active Fa0/7, Fa0/8, Fa0/9, Fa0/10Fa0/11, Fa0/12, Fa0/13, Fa0/14Fa0/15, Fa0/16, Fa0/17, Fa0/18Fa0/19, Fa0/20, Fa0/21, Fa0/22Fa0/23, Fa0/2410 SALES active Fa0/1, Fa0/2, Fa0/520 MARKETING active Fa0/3, Fa0/4, Fa0/61002 fddi-default act/unsup1003 token-ring-default act/unsup1004 fddinet-default act/unsup1005 trnet-default act/unsupVLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------1 enet 100001 1500 - - - - - 0 010 enet 100010 1500 - - - - - 0 020 enet 100020 1500 - - - - - 0 01002 fddi 101002 1500 - - - - - 0 01003 tr 101003 1500 - - - - - 0 01004 fdnet 101004 1500 - - - ieee - 0 01005 trnet 101005 1500 - - - ibm - 0 0Remote SPAN VLANs------------------------------------------------------------------------------Primary Secondary Type Ports------- --------- ----------------- ------------------------------------------
#. Pengecekan:
PC>ipconfigFastEthernet0 Connection:(default port)Link-local IPv6 Address.........: FE80::202:16FF:FE45:247BIP Address......................: 192.168.1.2Subnet Mask.....................: 255.255.255.0Default Gateway.................: 192.168.1.1PC>ping 192.168.2.3Pinging 192.168.2.3 with 32 bytes of data:Request timed out.Reply from 192.168.2.3: bytes=32 time=13ms TTL=127Reply from 192.168.2.3: bytes=32 time=1ms TTL=127Reply from 192.168.2.3: bytes=32 time=4ms TTL=127Ping 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 = 6msPC>tracert 192.168.2.3Tracing route to 192.168.2.3 over a maximum of 30 hops:1 0 ms 0 ms 0 ms 192.168.1.12 0 ms 0 ms 0 ms 192.168.2.3Trace 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>enableRouter#conf tEnter configuration commands, one per line. End with CNTL/Z.Router(config)#hostname IDNIDN(config-if)#no shutIDN(config-if)#exitIDN(config)#int f0/0.10IDN(config-subif)#encapsulation dot1q 10IDN(config-subif)#ip add 192.168.1.1 255.255.255.0IDN(config-subif)#exitIDN(config)#int f0/0.20IDN(config-subif)#encapsulation dot1q 20IDN(config-subif)#ip add 192.168.2.1 255.255.255.0IDN(config-subif)#exitIDN(config)#
b. SWITCH:
Switch>enableSwitch#conf tEnter configuration commands, one per line. End with CNTL/Z.Switch(config)#vlan 10Switch(config-vlan)#name SALESSwitch(config-vlan)#vlan 20Switch(config-vlan)#name MARKETINGSwitch(config-vlan)#exitSwitch(config)#int range f0/1-2Switch(config-if-range)#sw mode accessSwitch(config-if-range)#sw access vlan 10Switch(config-if-range)#exitSwitch(config)#int range f0/3-4Switch(config-if-range)#sw mode accessSwitch(config-if-range)#sw access vlan 20Switch(config-if-range)#exitSwitch(config)#int f0/5Switch(config-if)#sw mode trunkSwitch(config-if)#sw trunk encapsulation dot1q
#. Veryfikasi:
a. Router:
Router#sh ip int brInterface IP-Address OK? Method Status ProtocolFastEthernet0/0 unassigned YES unset up upFastEthernet0/0.10 192.168.1.1 YES manual up upFastEthernet0/0.20 192.168.2.1 YES manual up upFastEthernet0/1 unassigned YES unset administratively down downVlan1 unassigned YES unset administratively down down
b. SWITCH:
Switch(config)#do sh vlanVLAN Name Status Ports---- -------------------------------- --------- -------------------------------1 default active Fa0/6, Fa0/7, Fa0/8, Fa0/9Fa0/10, Fa0/11, Fa0/12, Fa0/13Fa0/14, Fa0/15, Fa0/16, Fa0/17Fa0/18, Fa0/19, Fa0/20, Fa0/21Fa0/22, Fa0/23, Fa0/2410 SALES active Fa0/1, Fa0/220 MARKETING active Fa0/3, Fa0/41002 fddi-default act/unsup1003 token-ring-default act/unsup1004 fddinet-default act/unsup1005 trnet-default act/unsupVLAN Type SAID MTU Parent RingNo BridgeNo Stp BrdgMode Trans1 Trans2---- ----- ---------- ----- ------ ------ -------- ---- -------- ------ ------1 enet 100001 1500 - - - - - 0 010 enet 100010 1500 - - - - - 0 020 enet 100020 1500 - - - - - 0 01002 fddi 101002 1500 - - - - - 0 01003 tr 101003 1500 - - - - - 0 01004 fdnet 101004 1500 - - - ieee - 0 01005 trnet 101005 1500 - - - ibm - 0 0Remote SPAN VLANs------------------------------------------------------------------------------Primary Secondary Type Ports------- --------- ----------------- ------------------------------------------Switch(config)#do sh int trunkPort Mode Encapsulation Status Native vlanFa0/5 on 802.1q trunking 1Port Vlans allowed on trunkFa0/5 1-1005Port Vlans allowed and active in management domainFa0/5 1,10,20Port Vlans in spanning tree forwarding state and not prunedFa0/5 1,10,20
#. Pengecekan:
PC>ipconfigFastEthernet0 Connection:(default port)Link-local IPv6 Address.........: FE80::2D0:D3FF:FEEC:E7CCIP Address......................: 192.168.1.2Subnet Mask.....................: 255.255.255.0Default Gateway.................: 192.168.1.1PC>ping 192.168.2.3Pinging 192.168.2.3 with 32 bytes of data:Request timed out.Reply from 192.168.2.3: bytes=32 time=2ms TTL=127Reply from 192.168.2.3: bytes=32 time=0ms TTL=127Reply from 192.168.2.3: bytes=32 time=0ms TTL=127Ping 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 = 0msPC>tracert 192.168.2.3Tracing route to 192.168.2.3 over a maximum of 30 hops:1 1 ms 0 ms 0 ms 192.168.1.12 0 ms 0 ms 1 ms 192.168.2.3Trace 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.