Set up DHCP
This commit is contained in:
parent
3d119480e5
commit
d463aadbbc
2 changed files with 22 additions and 2 deletions
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -49,3 +49,23 @@ exit
|
||||||
disable
|
disable
|
||||||
exit
|
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
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue