-->

    Social Items

SPACE IKLAN ( ADS ) CLICK HERE
Configure-IP-ACLs-to-Mitigate-Attacks-Packet-Tracer.JPG

Configure IP ACLs to Mitigate Attacks Packet Tracer - scodeid.
Addressing Table - Tabel Pengalamatan

Konfigurasi-IP-ACLs-Untuk-Mitigate-Attacks-Packet-Tracer

Objectives


  • Verify connectivity among devices before firewall configuration.
  • Use ACLs to ensure remote access to the routers is available only from management station PC-C.
  • Configure ACLs on R1 and R3 to mitigate attacks.
  • Verify ACL functionality.

Tujuan


  • Verifikasi konektivitas antar perangkat sebelum konfigurasi firewall.
  • Gunakan ACL untuk memastikan akses jarak jauh ke router hanya tersedia dari stasiun manajemen PC-C.
  • Konfigurasikan ACL pada R1 dan R3 untuk mengurangi serangan.
  • Verifikasi fungsionalitas ACL.

Background / Scenario

Access to routers R1, R2, and R3 should only be permitted from PC-C, the management station. PC-C is also used for connectivity testing to PC-A, a server providing DNS, SMTP, FTP, and HTTPS services.

Standard operating procedure is to apply ACLs on edge routers to mitigate common threats based on source and/or destination IP address. In this activity, you create ACLs on edge routers R1 and R3 to achieve this goal. You then verify ACL functionality from internal and external hosts.

The routers have been pre-configured with the following:

o    Enable password: ciscoenpa55
o    Password for console: ciscoconpa55
o    Username for VTY lines: SSHadmin
o    Password for VTY lines: ciscosshpa55
o    IP addressing
o    Static routing

Latar Belakang / Skenario

Akses ke router R1, R2, dan R3 hanya diizinkan dari PC-C, stasiun manajemen. PC-C juga digunakan untuk pengujian konektivitas ke PC-A, server yang menyediakan layanan DNS, SMTP, FTP, dan HTTPS.

Prosedur operasi standar adalah untuk menerapkan ACL pada router tepi untuk mengurangi ancaman umum berdasarkan pada sumber dan / atau alamat IP tujuan. Dalam aktivitas ini, Anda membuat ACL pada router tepi R1 dan R3 untuk mencapai tujuan ini. Anda kemudian memverifikasi fungsionalitas ACL dari host internal dan eksternal.

Router telah dipra-konfigurasi dengan yang berikut:

o Aktifkan kata sandi: ciscoenpa55
o Kata sandi untuk konsol: ciscoconpa55
o Nama pengguna untuk jalur VTY: SSHadmin
o Kata sandi untuk saluran VTY: ciscosshpa55
o Pengalamatan IP
o Routing statis


Part 1: Verify Basic Network Connectivity

Verify network connectivity prior to configuring the IP ACLs.

Step 1: From PC-A, verify connectivity to PC-C and R2.


a.From the command prompt, ping PC-C (192.168.3.3).

b.From the command prompt, establish a SSH session to R2 Lo0 interface (192.168.2.1) using username SSHadmin and password ciscosshpa55. When finished, exit the SSH session.

PC > ssh -l SSHadmin 192.168.2.1

Step 2:  From PC-C, verify connectivity to PC-A and R2.


a.From the command prompt, ping PC-A (192.168.1.3).

b.From the command prompt, establish a SSH session to R2 Lo0 interface (192.168.2.1) using username SSHadmin and password ciscosshpa55. Close the SSH session when finished.

c.Open a web browser to the PC-A server (192.168.1.3) to display the web page. Close the browser when done.

Bagian 1: Verifikasi Konektivitas Jaringan Dasar

Verifikasi konektivitas jaringan sebelum mengonfigurasi IP ACL.

Langkah 1: Dari PC-A, verifikasi konektivitas ke PC-C dan R2.


Sebuah. Dari command prompt, ping PC-C (192.168.3.3).

b. Dari prompt perintah, buat sesi SSH ke antarmuka R2 Lo0 (192.168.2.1) menggunakan nama pengguna SSHadmin dan kata sandi ciscosshpa55. Setelah selesai, keluar dari sesi SSH.

PC > ssh -l SSHadmin 192.168.2.1

Langkah 2: Dari PC-C, verifikasi konektivitas ke PC-A dan R2.


Sebuah. Dari command prompt, ping PC-A (192.168.1.3).

b. Dari prompt perintah, buat sesi SSH ke antarmuka R2 Lo0 (192.168.2.1) menggunakan nama pengguna SSHadmin dan kata sandi ciscosshpa55. Tutup sesi SSH saat selesai.

c. Buka browser web ke server PC-A (192.168.1.3) untuk menampilkan halaman web. Tutup browser setelah selesai.

Part 2: Secure Access to Routers


Step 1:Configure ACL 10 to block all remote access to the routers except from PC-C.


Use the access-list command to create a numbered IP ACL on R1, R2, and R3.

R1(config)#access-list 10 permit 192.168.3.3
R2(config)#access-list 10 permit 192.168.3.3
R3(config)#access-list 10 permit 192.168.3.3

Step 2: Apply ACL 10 to ingress traffic on the VTY lines.


Use the access-class command to apply the access list to incoming traffic on the VTY lines.


R1(config)#line vty 0 4
R1(config-line)#access-class 10 in
R1(config-line)#exit


R2(config)#line vty 0 4
R2(config-line)#access-class 10 in


R3(config)#line vty 0 4
R3(config-line)#access-class 10 in

Step 3: Verify exclusive access from management station PC-C.


a.     Establish a SSH session to 192.168.2.1 from PC-C (should be successful).

b.    Establish a SSH session to 192.168.2.1 from PC-A (should fail).


Bagian 2: Mengamankan Akses ke Router


Langkah 1: Konfigurasikan ACL 10 untuk memblokir semua akses jarak jauh ke router kecuali dari PC-C.


Gunakan perintah akses-daftar untuk membuat IP ACL bernomor pada R1, R2, dan R3.

R1(config)#access-list 10 permit 192.168.3.3
R2(config)#access-list 10 permit 192.168.3.3
R3(config)#access-list 10 permit 192.168.3.3

Langkah 2: Terapkan ACL 10 ke masuknya lalu lintas di jalur VTY.


Gunakan perintah kelas akses untuk menerapkan daftar akses ke lalu lintas masuk pada jalur VTY.


R1(config)#line vty 0 4
R1(config-line)#access-class 10 in
R1(config-line)#exit


R2(config)#line vty 0 4
R2(config-line)#access-class 10 in


R3(config)#line vty 0 4
R3(config-line)#access-class 10 in
69% Completed

Langkah 3: Verifikasi akses eksklusif dari stasiun manajemen PC-C.


Sebuah. Buat sesi SSH ke 192.168.2.1 dari PC-C (harus berhasil).

b. Buat sesi SSH ke 192.168.2.1 dari PC-A (harus gagal).

Part 3: Create a Numbered IP ACL 120 on R1

Permit any outside host to access DNS, SMTP, and FTP services on server PC-A, deny any outside host access to HTTPS services on PC-A, and permit PC-C to access R1 via SSH.

Step 1:Verify that PC-C can access the PC-A via HTTPS using the web browser.


Be sure to disable HTTP and enable HTTPS on server PC-A.

Step 2: Configure ACL 120 to specifically permit and deny the specified traffic.


Use the access-list command to create a numbered IP ACL.

R1(config)#access-list 120 permit udp any host 192.168.1.3 eq domain
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq smtp
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq ftp
R1(config)#access-list 120 deny tcp any host 192.168.1.3 eq 443
R1(config)#access-list 120 permit tcp host 192.168.3.3 host 10.1.1.1 eq 22

Step 3:Apply the ACL to interface S0/0/0.


Use the ip access-group command to apply the access list to incoming traffic on interface S0/0/0.

R1(config)#interface s0/0/0
R1(config-if)#ip access-group 120 in
R1(config-if)#exit

Step 4:Verify that PC-C cannot access PC-A via HTTPS using the web browser.


Bagian 3: Buat IP ACL 120 Bernomor pada R1

Mengizinkan semua host luar untuk mengakses layanan DNS, SMTP, dan FTP pada server PC-A, menolak akses host luar apa pun ke layanan HTTPS pada PC-A, dan mengizinkan PC-C untuk mengakses R1 melalui SSH.

Langkah 1: Pastikan PC-C dapat mengakses PC-A melalui HTTPS menggunakan browser web.


Pastikan untuk menonaktifkan HTTP dan mengaktifkan HTTPS di server PC-A.

Langkah 2: Konfigurasikan ACL 120 untuk secara khusus mengizinkan dan menolak lalu lintas yang ditentukan.


Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

R1(config)#access-list 120 permit udp any host 192.168.1.3 eq domain
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq smtp
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq ftp
R1(config)#access-list 120 deny tcp any host 192.168.1.3 eq 443
R1(config)#access-list 120 permit tcp host 192.168.3.3 host 10.1.1.1 eq 22

Langkah 3: Terapkan ACL ke antarmuka S0 / 0/0.


Gunakan perintah ip access-group untuk menerapkan daftar akses ke lalu lintas masuk pada antarmuka S0 / 0/0.

R1(config)#interface s0/0/0
R1(config-if)#ip access-group 120 in
R1(config-if)#exit

Langkah 4: Pastikan PC-C tidak dapat mengakses PC-A melalui HTTPS menggunakan browser web.

Part 4: Modify An Existing ACL on R1

Permit ICMP echo replies and destination unreachable messages from the outside network (relative to R1); deny all other incoming ICMP packets.

Step 1:Verify that PC-A cannot successfully ping the loopback interface on R2.


Step 2: Make any necessary changes to ACL 120 to permit and deny the specified traffic.


Use the access-list command to create a numbered IP ACL.

R1(config)#access-list 120 permit icmp any any echo-reply
R1(config)#access-list 120 permit icmp any any unreachable
R1(config)#access-list 120 deny icmp any any
R1(config)#access-list 120 permit ip any any

Step 3:Verify that PC-A can successfully ping the loopback interface on R2.


Bagian 4: Memodifikasi ACL yang Ada pada R1

Izinkan balasan gema ICMP dan pesan tujuan yang tak terjangkau dari jaringan luar (relatif terhadap R1); menolak semua paket ICMP masuk lainnya.

Langkah 1: Verifikasi bahwa PC-A tidak dapat berhasil melakukan ping antarmuka loopback pada R2.


Langkah 2: Buat perubahan yang diperlukan untuk ACL 120 untuk mengizinkan dan menolak lalu lintas yang ditentukan.


Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

R1(config)#access-list 120 permit icmp any any echo-reply
R1(config)#access-list 120 permit icmp any any unreachable
R1(config)#access-list 120 deny icmp any any
R1(config)#access-list 120 permit ip any any

Langkah 3: Pastikan PC-A berhasil ping antarmuka loopback pada R2.

Part 5: Create a Numbered IP ACL 110 on R3

Deny all outbound packets with source address outside the range of internal IP addresses on R3.

Step 1:Configure ACL 110 to permit only traffic from the inside network.


Use the access-list command to create a numbered IP ACL.

R3(config)#access-list 110 permit ip 192.168.3.0 0.0.0.255 any

Step 2:Apply the ACL to interface F0/1.


Use the ip access-group command to apply the access list to incoming traffic on interface F0/1.

R3(config)#interface fa0/1
R3(config-if)#ip access-group 110 in
R3(config-if)#exit

Bagian 5: Buat IP bernomor ACL 110 pada R3

Tolak semua paket keluar dengan alamat sumber di luar kisaran alamat IP internal pada R3.

Langkah 1: Konfigurasikan ACL 110 untuk mengizinkan hanya lalu lintas dari jaringan di dalam.


Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

R3(config)#access-list 110 permit ip 192.168.3.0 0.0.0.255 any

Langkah 2: Terapkan ACL ke antarmuka F0 / 1.


Gunakan perintah ip access-group untuk menerapkan daftar akses ke lalu lintas masuk pada antarmuka F0 / 1.

R3(config)#interface fa0/1
R3(config-if)#ip access-group 110 in
R3(config-if)#exit

Part 6: Create a Numbered IP ACL 100 on R3

On R3, block all packets containing the source IP address from the following pool of addresses: 127.0.0.0/8, any RFC 1918 private addresses, and any IP multicast address.

Step 1:Configure ACL 100 to block all specified traffic from the outside network.


You should also block traffic sourced from your own internal address space if it is not an RFC 1918 address (in this activity, your internal address space is part of the private address space specified in RFC 1918).

Use the access-list command to create a numbered IP ACL.

Step 2:Apply the ACL to interface Serial 0/0/1.


Use the ip access-group command to apply the access list to incoming traffic on interface Serial 0/0/1.

Step 3:Confirm that the specified traffic entering interface Serial 0/0/1 is dropped.


From the PC-C command prompt, ping the PC-A server. The ICMP echo replies are blocked by the ACL since they are sourced from the 192.168.0.0/16 address space.

Step 4:Check results.


Your completion percentage should be 100%. Click Check Results to see feedback and verification of which required components have been completed.

Bagian 6: Buat IP bernomor ACL 100 pada R3

Pada R3, blok semua paket yang berisi alamat IP sumber dari kumpulan alamat berikut: 127.0.0.0/8, alamat pribadi RFC 1918, dan alamat IP multicast.

Langkah 1: Konfigurasikan ACL 100 untuk memblokir semua lalu lintas yang ditentukan dari jaringan luar.


Anda juga harus memblokir lalu lintas yang bersumber dari ruang alamat internal Anda sendiri jika itu bukan alamat RFC 1918 (dalam aktivitas ini, ruang alamat internal Anda adalah bagian dari ruang alamat pribadi yang ditentukan dalam RFC 1918).

Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

Langkah 2: Terapkan ACL ke antarmuka Serial 0/0/1.


Gunakan perintah ip access-group untuk menerapkan daftar akses ke lalu lintas masuk pada antarmuka Serial 0/0/1.

Langkah 3: Konfirmasikan bahwa lalu lintas yang masuk ke antarmuka Serial 0/0/1 dijatuhkan.


Dari prompt perintah PC-C, ping server PC-A. Balasan gema ICMP diblokir oleh ACL karena bersumber dari ruang alamat 192.168.0.0/16.

Langkah 4: Periksa hasil.


Persentase penyelesaian Anda harus 100%. Klik Periksa Hasil untuk melihat umpan balik dan verifikasi komponen mana yang diperlukan telah selesai.

Configure IP ACLs to Mitigate Attacks Packet Tracer

Configure-IP-ACLs-to-Mitigate-Attacks-Packet-Tracer.JPG

Configure IP ACLs to Mitigate Attacks Packet Tracer - scodeid.
Addressing Table - Tabel Pengalamatan

Konfigurasi-IP-ACLs-Untuk-Mitigate-Attacks-Packet-Tracer

Objectives


  • Verify connectivity among devices before firewall configuration.
  • Use ACLs to ensure remote access to the routers is available only from management station PC-C.
  • Configure ACLs on R1 and R3 to mitigate attacks.
  • Verify ACL functionality.

Tujuan


  • Verifikasi konektivitas antar perangkat sebelum konfigurasi firewall.
  • Gunakan ACL untuk memastikan akses jarak jauh ke router hanya tersedia dari stasiun manajemen PC-C.
  • Konfigurasikan ACL pada R1 dan R3 untuk mengurangi serangan.
  • Verifikasi fungsionalitas ACL.

Background / Scenario

Access to routers R1, R2, and R3 should only be permitted from PC-C, the management station. PC-C is also used for connectivity testing to PC-A, a server providing DNS, SMTP, FTP, and HTTPS services.

Standard operating procedure is to apply ACLs on edge routers to mitigate common threats based on source and/or destination IP address. In this activity, you create ACLs on edge routers R1 and R3 to achieve this goal. You then verify ACL functionality from internal and external hosts.

The routers have been pre-configured with the following:

o    Enable password: ciscoenpa55
o    Password for console: ciscoconpa55
o    Username for VTY lines: SSHadmin
o    Password for VTY lines: ciscosshpa55
o    IP addressing
o    Static routing

Latar Belakang / Skenario

Akses ke router R1, R2, dan R3 hanya diizinkan dari PC-C, stasiun manajemen. PC-C juga digunakan untuk pengujian konektivitas ke PC-A, server yang menyediakan layanan DNS, SMTP, FTP, dan HTTPS.

Prosedur operasi standar adalah untuk menerapkan ACL pada router tepi untuk mengurangi ancaman umum berdasarkan pada sumber dan / atau alamat IP tujuan. Dalam aktivitas ini, Anda membuat ACL pada router tepi R1 dan R3 untuk mencapai tujuan ini. Anda kemudian memverifikasi fungsionalitas ACL dari host internal dan eksternal.

Router telah dipra-konfigurasi dengan yang berikut:

o Aktifkan kata sandi: ciscoenpa55
o Kata sandi untuk konsol: ciscoconpa55
o Nama pengguna untuk jalur VTY: SSHadmin
o Kata sandi untuk saluran VTY: ciscosshpa55
o Pengalamatan IP
o Routing statis


Part 1: Verify Basic Network Connectivity

Verify network connectivity prior to configuring the IP ACLs.

Step 1: From PC-A, verify connectivity to PC-C and R2.


a.From the command prompt, ping PC-C (192.168.3.3).

b.From the command prompt, establish a SSH session to R2 Lo0 interface (192.168.2.1) using username SSHadmin and password ciscosshpa55. When finished, exit the SSH session.

PC > ssh -l SSHadmin 192.168.2.1

Step 2:  From PC-C, verify connectivity to PC-A and R2.


a.From the command prompt, ping PC-A (192.168.1.3).

b.From the command prompt, establish a SSH session to R2 Lo0 interface (192.168.2.1) using username SSHadmin and password ciscosshpa55. Close the SSH session when finished.

c.Open a web browser to the PC-A server (192.168.1.3) to display the web page. Close the browser when done.

Bagian 1: Verifikasi Konektivitas Jaringan Dasar

Verifikasi konektivitas jaringan sebelum mengonfigurasi IP ACL.

Langkah 1: Dari PC-A, verifikasi konektivitas ke PC-C dan R2.


Sebuah. Dari command prompt, ping PC-C (192.168.3.3).

b. Dari prompt perintah, buat sesi SSH ke antarmuka R2 Lo0 (192.168.2.1) menggunakan nama pengguna SSHadmin dan kata sandi ciscosshpa55. Setelah selesai, keluar dari sesi SSH.

PC > ssh -l SSHadmin 192.168.2.1

Langkah 2: Dari PC-C, verifikasi konektivitas ke PC-A dan R2.


Sebuah. Dari command prompt, ping PC-A (192.168.1.3).

b. Dari prompt perintah, buat sesi SSH ke antarmuka R2 Lo0 (192.168.2.1) menggunakan nama pengguna SSHadmin dan kata sandi ciscosshpa55. Tutup sesi SSH saat selesai.

c. Buka browser web ke server PC-A (192.168.1.3) untuk menampilkan halaman web. Tutup browser setelah selesai.

Part 2: Secure Access to Routers


Step 1:Configure ACL 10 to block all remote access to the routers except from PC-C.


Use the access-list command to create a numbered IP ACL on R1, R2, and R3.

R1(config)#access-list 10 permit 192.168.3.3
R2(config)#access-list 10 permit 192.168.3.3
R3(config)#access-list 10 permit 192.168.3.3

Step 2: Apply ACL 10 to ingress traffic on the VTY lines.


Use the access-class command to apply the access list to incoming traffic on the VTY lines.


R1(config)#line vty 0 4
R1(config-line)#access-class 10 in
R1(config-line)#exit


R2(config)#line vty 0 4
R2(config-line)#access-class 10 in


R3(config)#line vty 0 4
R3(config-line)#access-class 10 in

Step 3: Verify exclusive access from management station PC-C.


a.     Establish a SSH session to 192.168.2.1 from PC-C (should be successful).

b.    Establish a SSH session to 192.168.2.1 from PC-A (should fail).


Bagian 2: Mengamankan Akses ke Router


Langkah 1: Konfigurasikan ACL 10 untuk memblokir semua akses jarak jauh ke router kecuali dari PC-C.


Gunakan perintah akses-daftar untuk membuat IP ACL bernomor pada R1, R2, dan R3.

R1(config)#access-list 10 permit 192.168.3.3
R2(config)#access-list 10 permit 192.168.3.3
R3(config)#access-list 10 permit 192.168.3.3

Langkah 2: Terapkan ACL 10 ke masuknya lalu lintas di jalur VTY.


Gunakan perintah kelas akses untuk menerapkan daftar akses ke lalu lintas masuk pada jalur VTY.


R1(config)#line vty 0 4
R1(config-line)#access-class 10 in
R1(config-line)#exit


R2(config)#line vty 0 4
R2(config-line)#access-class 10 in


R3(config)#line vty 0 4
R3(config-line)#access-class 10 in
69% Completed

Langkah 3: Verifikasi akses eksklusif dari stasiun manajemen PC-C.


Sebuah. Buat sesi SSH ke 192.168.2.1 dari PC-C (harus berhasil).

b. Buat sesi SSH ke 192.168.2.1 dari PC-A (harus gagal).

Part 3: Create a Numbered IP ACL 120 on R1

Permit any outside host to access DNS, SMTP, and FTP services on server PC-A, deny any outside host access to HTTPS services on PC-A, and permit PC-C to access R1 via SSH.

Step 1:Verify that PC-C can access the PC-A via HTTPS using the web browser.


Be sure to disable HTTP and enable HTTPS on server PC-A.

Step 2: Configure ACL 120 to specifically permit and deny the specified traffic.


Use the access-list command to create a numbered IP ACL.

R1(config)#access-list 120 permit udp any host 192.168.1.3 eq domain
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq smtp
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq ftp
R1(config)#access-list 120 deny tcp any host 192.168.1.3 eq 443
R1(config)#access-list 120 permit tcp host 192.168.3.3 host 10.1.1.1 eq 22

Step 3:Apply the ACL to interface S0/0/0.


Use the ip access-group command to apply the access list to incoming traffic on interface S0/0/0.

R1(config)#interface s0/0/0
R1(config-if)#ip access-group 120 in
R1(config-if)#exit

Step 4:Verify that PC-C cannot access PC-A via HTTPS using the web browser.


Bagian 3: Buat IP ACL 120 Bernomor pada R1

Mengizinkan semua host luar untuk mengakses layanan DNS, SMTP, dan FTP pada server PC-A, menolak akses host luar apa pun ke layanan HTTPS pada PC-A, dan mengizinkan PC-C untuk mengakses R1 melalui SSH.

Langkah 1: Pastikan PC-C dapat mengakses PC-A melalui HTTPS menggunakan browser web.


Pastikan untuk menonaktifkan HTTP dan mengaktifkan HTTPS di server PC-A.

Langkah 2: Konfigurasikan ACL 120 untuk secara khusus mengizinkan dan menolak lalu lintas yang ditentukan.


Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

R1(config)#access-list 120 permit udp any host 192.168.1.3 eq domain
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq smtp
R1(config)#access-list 120 permit tcp any host 192.168.1.3 eq ftp
R1(config)#access-list 120 deny tcp any host 192.168.1.3 eq 443
R1(config)#access-list 120 permit tcp host 192.168.3.3 host 10.1.1.1 eq 22

Langkah 3: Terapkan ACL ke antarmuka S0 / 0/0.


Gunakan perintah ip access-group untuk menerapkan daftar akses ke lalu lintas masuk pada antarmuka S0 / 0/0.

R1(config)#interface s0/0/0
R1(config-if)#ip access-group 120 in
R1(config-if)#exit

Langkah 4: Pastikan PC-C tidak dapat mengakses PC-A melalui HTTPS menggunakan browser web.

Part 4: Modify An Existing ACL on R1

Permit ICMP echo replies and destination unreachable messages from the outside network (relative to R1); deny all other incoming ICMP packets.

Step 1:Verify that PC-A cannot successfully ping the loopback interface on R2.


Step 2: Make any necessary changes to ACL 120 to permit and deny the specified traffic.


Use the access-list command to create a numbered IP ACL.

R1(config)#access-list 120 permit icmp any any echo-reply
R1(config)#access-list 120 permit icmp any any unreachable
R1(config)#access-list 120 deny icmp any any
R1(config)#access-list 120 permit ip any any

Step 3:Verify that PC-A can successfully ping the loopback interface on R2.


Bagian 4: Memodifikasi ACL yang Ada pada R1

Izinkan balasan gema ICMP dan pesan tujuan yang tak terjangkau dari jaringan luar (relatif terhadap R1); menolak semua paket ICMP masuk lainnya.

Langkah 1: Verifikasi bahwa PC-A tidak dapat berhasil melakukan ping antarmuka loopback pada R2.


Langkah 2: Buat perubahan yang diperlukan untuk ACL 120 untuk mengizinkan dan menolak lalu lintas yang ditentukan.


Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

R1(config)#access-list 120 permit icmp any any echo-reply
R1(config)#access-list 120 permit icmp any any unreachable
R1(config)#access-list 120 deny icmp any any
R1(config)#access-list 120 permit ip any any

Langkah 3: Pastikan PC-A berhasil ping antarmuka loopback pada R2.

Part 5: Create a Numbered IP ACL 110 on R3

Deny all outbound packets with source address outside the range of internal IP addresses on R3.

Step 1:Configure ACL 110 to permit only traffic from the inside network.


Use the access-list command to create a numbered IP ACL.

R3(config)#access-list 110 permit ip 192.168.3.0 0.0.0.255 any

Step 2:Apply the ACL to interface F0/1.


Use the ip access-group command to apply the access list to incoming traffic on interface F0/1.

R3(config)#interface fa0/1
R3(config-if)#ip access-group 110 in
R3(config-if)#exit

Bagian 5: Buat IP bernomor ACL 110 pada R3

Tolak semua paket keluar dengan alamat sumber di luar kisaran alamat IP internal pada R3.

Langkah 1: Konfigurasikan ACL 110 untuk mengizinkan hanya lalu lintas dari jaringan di dalam.


Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

R3(config)#access-list 110 permit ip 192.168.3.0 0.0.0.255 any

Langkah 2: Terapkan ACL ke antarmuka F0 / 1.


Gunakan perintah ip access-group untuk menerapkan daftar akses ke lalu lintas masuk pada antarmuka F0 / 1.

R3(config)#interface fa0/1
R3(config-if)#ip access-group 110 in
R3(config-if)#exit

Part 6: Create a Numbered IP ACL 100 on R3

On R3, block all packets containing the source IP address from the following pool of addresses: 127.0.0.0/8, any RFC 1918 private addresses, and any IP multicast address.

Step 1:Configure ACL 100 to block all specified traffic from the outside network.


You should also block traffic sourced from your own internal address space if it is not an RFC 1918 address (in this activity, your internal address space is part of the private address space specified in RFC 1918).

Use the access-list command to create a numbered IP ACL.

Step 2:Apply the ACL to interface Serial 0/0/1.


Use the ip access-group command to apply the access list to incoming traffic on interface Serial 0/0/1.

Step 3:Confirm that the specified traffic entering interface Serial 0/0/1 is dropped.


From the PC-C command prompt, ping the PC-A server. The ICMP echo replies are blocked by the ACL since they are sourced from the 192.168.0.0/16 address space.

Step 4:Check results.


Your completion percentage should be 100%. Click Check Results to see feedback and verification of which required components have been completed.

Bagian 6: Buat IP bernomor ACL 100 pada R3

Pada R3, blok semua paket yang berisi alamat IP sumber dari kumpulan alamat berikut: 127.0.0.0/8, alamat pribadi RFC 1918, dan alamat IP multicast.

Langkah 1: Konfigurasikan ACL 100 untuk memblokir semua lalu lintas yang ditentukan dari jaringan luar.


Anda juga harus memblokir lalu lintas yang bersumber dari ruang alamat internal Anda sendiri jika itu bukan alamat RFC 1918 (dalam aktivitas ini, ruang alamat internal Anda adalah bagian dari ruang alamat pribadi yang ditentukan dalam RFC 1918).

Gunakan perintah daftar akses untuk membuat ACL IP bernomor.

Langkah 2: Terapkan ACL ke antarmuka Serial 0/0/1.


Gunakan perintah ip access-group untuk menerapkan daftar akses ke lalu lintas masuk pada antarmuka Serial 0/0/1.

Langkah 3: Konfirmasikan bahwa lalu lintas yang masuk ke antarmuka Serial 0/0/1 dijatuhkan.


Dari prompt perintah PC-C, ping server PC-A. Balasan gema ICMP diblokir oleh ACL karena bersumber dari ruang alamat 192.168.0.0/16.

Langkah 4: Periksa hasil.


Persentase penyelesaian Anda harus 100%. Klik Periksa Hasil untuk melihat umpan balik dan verifikasi komponen mana yang diperlukan telah selesai.
Load Comments

Subscribe Our Newsletter