Assign ip addresses to all switches

This commit is contained in:
Manuel Thalmann 2023-12-06 00:25:56 +01:00
parent d6eea0dadb
commit e14bf7d4ac
2 changed files with 33 additions and 2 deletions

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

Binary file not shown.

View file

@ -34,3 +34,34 @@ exit
disable
exit
```
## Assign IP Addresses
On SW1-4 replace `{x}` with the corresponding switch number:
```sh
enable
configure terminal
interface vlan 10
ip address 10.10.10.{x} 255.255.0.0
exit
exit
disable
exit
```
On `SWC` configure the following:
```sh
enable
configure terminal
interface vlan 1
ip address 10.123.0.4 255.255.0.0
exit
exit
disable
exit
```