STANDARD - ACCESS LIST #1

 

STANDARD - ACCESS LIST

Alat dan Bahan :

  • Laptop / PC
  • Cisco Packet Tracer
          Standard Access List :
  • Access List Standard cuma bisa memfilter pada IP Host atau IPNetwork.
  • Access List Standard menggunakanr range number 1 – 99.
  • Konfigurasi harus sedekat mungkin dengan destination.
  • Direction in dan out ditentukan berdasarkan packages dari source menuju destination.

Perhatikan Topologi berikut : 



    Konfigurasi diatas melakukan bloking (deny) pada network Client agar tidak dapat terhubung dengan server, tetapi masih dapat terhubung ke router, maka kita akan memfilter nya dengan menggunakan sebuah metode konfigurasi Access List standard .


KONFIGURASI SWITCH :

Switch(config)#int fa 0/1

Switch(config-if)#switchport mode trunk --> Enable Trunk mode


KONFIGURASI IP PADA ROUTER :

 

Pada Router 0 :

Router(config)#int fa 0/1

Router(config-if)#ip address 192.168.10.1 255.255.255.0 --> IP Client

Router(config-if)#no shutdown --> Active Port


Router(config)#int fa 0/0

Router(config-if)#ip address 10.10.10.1 255.255.255.0 --> IP Gateway

Router(config-if)#no shutdown --> Active Port


Pada Router 1 :

Router(config)#int fa 0/1

Router(config-if)#ip address 20.20.20.1 255.255.255.0 --> IP Server

Router(config-if)#no shutdown --> Active Port


Router(config)#int fa 0/0

Router(config-if)#ip address 10.10.10.2 255.255.255.0 --> IP Gateway

Router(config-if)#no shutdown --> Active Port


    Pada masing-masing router pasti memiliki sebuah network yang berbeda-beda, maka dari itu harus melakukan konfigurasi routing yaitu menggunakan routing dynamic EIGRP,

ROUTING EIGRP :

Pada Router 0 :
Router(config)#router eigrp 5 --> Enable EIGRP (ASN Number harus sama setiap router)
Router(config-router)#network 10.10.10.0 --> Network to Gateway
Router(config-router)#network 192.168.10.0 --> Network to Client
Router(config-router)#no auto-summary

Pada Router 1 :
Router(config)#router eigrp 5 --> Enable EIGRP (ASN Number harus sama setiap router)
Router(config-router)#network 10.10.10.0 --> Network to Gateway
Router(config-router)#network 20.20.20.0 --> Network to Gateway
Router(config-router)#no auto-summary


KONFIGURASI ACCESS LIST :

Pada Router 1 :
Router(config)#access-list 5 deny 192.168.10.0 0.0.0.255 --> Deny Mode Action
Router(config)#access-list 5 permit any --> Agar semua tidak di blok


PORT ACCESS LIST :

Pada Router 1 :
Router(config)#int fa 0/1 --> Interface to Destination (Server)
Router(config-if)#ip access-group 5 out --> Access Group

    Jika sudah langsung saja bisa di uji coba, dengan cara PING antara End Host dengan Destination (Server)

TEST PING :

Pada Router 0 :

Pinging 20.20.20.2 with 32 bytes of data:


Reply from 10.10.10.2: Destination host unreachable.

Reply from 10.10.10.2: Destination host unreachable.

Reply from 10.10.10.2: Destination host unreachable.

Reply from 10.10.10.2: Destination host unreachable.



Pada Router 1 :

Pinging 20.20.20.2 with 32 bytes of data:


Reply from 10.10.10.2Destination host unreachable.

Reply from 10.10.10.2Destination host unreachable.

Reply from 10.10.10.2Destination host unreachable.

Reply from 10.10.10.2Destination host unreachable.


Komentar

Postingan populer dari blog ini

EIGRP WITH DISTRIBUTE LIST - EIGRP #1

NAMED ACCESS LIST - ACESS LIST #5

WALLED GARDEN IP LIST - NETWORK MANAGEMENT MIKROTIK #11