ST1Tutorials/Tutorials/M7 Lab 6 - Firewall using ACL/README.md

23 lines
417 B
Markdown
Raw Normal View History

2023-12-18 19:03:45 +00:00
# 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
```