Add firewall rules
This commit is contained in:
parent
28b26dd8ed
commit
48c23e61ab
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
22
Tutorials/M7 Lab 6 - Firewall using ACL/README.md
Normal file
22
Tutorials/M7 Lab 6 - Firewall using ACL/README.md
Normal 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
|
||||
```
|
Loading…
Reference in a new issue