Assign ip addresses to all switches
This commit is contained in:
parent
d6eea0dadb
commit
e14bf7d4ac
2 changed files with 33 additions and 2 deletions
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -34,3 +34,34 @@ exit
|
||||||
disable
|
disable
|
||||||
exit
|
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
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue