Add firewall rules

This commit is contained in:
Manuel Thalmann 2023-12-18 20:03:45 +01:00
parent 28b26dd8ed
commit 48c23e61ab
2 changed files with 24 additions and 2 deletions

BIN
Networks/Main.pkt (Stored with Git LFS)

Binary file not shown.

View file

@ -0,0 +1,22 @@
# Lab 06 - Firewall using ACL
> ***Objectives:***
> - Implement firewall between VLAN10 and VLAN20
## Configure Routers
On Routers `R1` and `R2`
```sh
enable
configure terminal
ip access-list extended FILTER
permit ip 10.20.0.0 0.0.255.255 host 10.10.10.10
deny ip 10.20.0.0 0.0.255.255 10.10.0.0 0.0.255.255
permit ip any any
exit
interface fastEthernet 0/0.20
ip access-group FILTER in
exit
exit
disable
exit
```