This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Universitas Trisakti, Fakultas Teknologi Industri, Teknik Informatika, 064.013.016

Visitors

Flag Counter

Senin, 07 November 2016

PRAKTIKUM 8 AKSES CONTROLIS ( BLOK )

Akses Controlis ( Blok )



 Cara Membuat Access List dengan Packet Tracer

Alat yg dibutuhkan :
2 router
2 swith
2 komputer

Langkah - langkah :
Hubungkan peripheral sesuai dengan gambar

1. Setting interface :

Router 0 :

router>enable
router#configure terminal
router(config)#interface se0/3/0
router(config-if)#ip address 10.10.10.1 255.255.255.0
router(config-if)#clock rate 64000
router(config-if)#no shutdown
router(config-if)#exit
router(config)#interface fa0/0
router(config-if)#ip address 192.168.1.1 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#

Router 1 :

router>enable
router#configure terminal
router(config)#interface se0/3/0
router(config-if)#ip address 10.10.10.2 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#interface fa0/0
router(config-if)#ip address 192.168.2.1 255.255.255.0
router(config-if)#no shutdown
router(config-if)#exit
router(config)#

PC 0 :

ip address     : 192.168.1.2
subnet mask    : 255.255.255.0
Default gateway : 192.168.1.1

PC 1 :

ip address     : 192.168.1.3
subnet mask    : 255.255.255.0
Default gateway : 192.168.1.1

PC 3 :

ip address     : 192.168.2.2
subnet mask    : 255.255.255.0
Default gateway : 192.168.2.1

PC 4 :

ip address     : 192.168.2.3
subnet mask    : 255.255.255.0
Default gateway : 192.168.2.1

2. Membuat tabel routing :

disini saya menggunakan static route karena jumlah routernya sedikit

Router 0 :

router>enable
router#configure terminal
router(config)ip route 192.168.2.0 255.255.255.0 10.10.10.2


Router 1 :

router>enable
router#configure terminal
router(config)ip route 192.168.1.0 255.255.255.0 10.10.10.1

3. Tes koneksi antar PC
4. Membuat acces list

(misalkan yang akan kita blok adalah PC 2 langkahnya sebagai berikut)

masuk ke setting router 1 :


router(config)#interface fa0/0
router(config-if)#ip access-group 1 in
router(config-if)#exit
router(config)#access-list 1 deny 192.168.2.2 255.255.255.0
router(config)#access-list 1 permit any

untuk menghilangkan setting access list tinggal kita masukkan perintah "no" di depannya


Download File : Akses Controlis BLOK