Set up DHCP

This commit is contained in:
Manuel Thalmann 2023-12-04 20:15:11 +01:00
parent 3d119480e5
commit d463aadbbc
2 changed files with 22 additions and 2 deletions

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

Binary file not shown.

View file

@ -49,3 +49,23 @@ exit
disable
exit
```
## DHCP Configuration
On each router:
```sh
enable
configure terminal
ip dhcp pool Pool10
network 10.10.0.0 255.255.0.0
default-router 10.10.0.111
ip dhcp pool Pool20
network 10.20.0.0 255.255.0.0
default-router 10.20.0.222
exit
exit
disable
exit
```