Lakukan yang terbaik untuk hari ini!! Rajin menanam dan Jangan mudah puas dengan hasil yang sudah tercapai!!

Friday, February 19, 2021

Konfigurasi Cisco Router On Stick di Packet Tracer


 Assalamualaikum Wr.Wb


Pada kesempatan ini saya share konfigurasi InterVlan Routing di Cisco menggunakan router
Karena untuk InterVlan ini nanti bisa dilakukan di router dan switch layer 3 cisco.
Ini melanjutkan LAB kemarin dimana antar Vlan belum bisa saling berkomunikasi karena harus ada proses routing dahulu yang bisa dilakukan di perangkat layer 3,baik itu router atau switch layer 3

InterVlan routing adalah suatu cara yang dilakukan untuk menghubungkan antar Vlan agar bisa saling berkomunikasi.

Oke langsung saja ke tahap konfigurasinya

    1. Buat topologi seperti berikut

        Topologi sama seperti tutorial sebelumnya,namun disini kita tambahkan router saja.
    2. Konfigurasi router
        A. Konfigurasi hostname
Router>en
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#hostname R1

        B. Enable interface Fa0/0 yang kearah Switch

R1(config)#interface fa0/0
R1(config-if)#no sh

R1(config-if)#
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up

R1(config-if)#exit
R1(config)#

        C. Konfigurasi sub interface 10 untuk vlan 10

R1(config)#interface fa0/0.10    #10 adalah id dari subinterface
R1(config-subif)#
%LINK-5-CHANGED: Interface FastEthernet0/0.10, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.10, changed state to up

R1(config-subif)#encapsulation dot1Q 10    #Menambahkan vlan 10 kedalam subinterface
R1(config-subif)#ip address 10.10.10.1 255.255.255.0    #Menambahkan IP untuk gateway
R1(config-subif)#exit
R1(config)#

        D. Konfigurasi sub interface 20 untuk vlan 20

R1(config)#interface fa0/0.20
R1(config-subif)#
%LINK-5-CHANGED: Interface FastEthernet0/0.20, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0.20, changed state to up

R1(config-subif)#encapsulation dot1Q 20
R1(config-subif)#ip address 20.20.20.1 255.255.255.0
R1(config-subif)#exit
R1(config)#do wr        #Digunakan agar konfig tidak hilang saat perangkat reboot
Building configuration...
[OK]
R1(config)#

    3. Konfigurasi Switch lantai 1/Sw1

Sw1>en
Sw1#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Sw1(config)#int fa0/6		#Interface kearah router
Sw1(config-if)#switchport mode trunk

Sw1(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/6, changed state to down

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/6, changed state to up

Sw1(config-if)#exit
Sw1(config)#do write
Building configuration...
[OK]
Sw1(config)#

    4. Test ping antar Vlan

        Dari capture diatas antar Vlan sudah bisa saling berkomunikasi.

Sekian dari saya
Nantikan artikel-artikel lainnya

Wassalamualaikum Wr.Wb

No comments:

Post a Comment