Add the SWC
switch
This commit is contained in:
parent
9efb625ba7
commit
9b76e7b750
2 changed files with 30 additions and 2 deletions
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -6,3 +6,31 @@
|
||||||
> - Assign IP addresses to `SW1-4`
|
> - Assign IP addresses to `SW1-4`
|
||||||
> - Assign IP address to `SWC`
|
> - Assign IP address to `SWC`
|
||||||
> - Create user on each networking device
|
> - Create user on each networking device
|
||||||
|
|
||||||
|
## Adding SWC
|
||||||
|
Configure `SWC`:
|
||||||
|
```sh
|
||||||
|
enable
|
||||||
|
configure terminal
|
||||||
|
hostname SWC
|
||||||
|
|
||||||
|
exit
|
||||||
|
exit
|
||||||
|
disable
|
||||||
|
exit
|
||||||
|
```
|
||||||
|
|
||||||
|
Configure routers replacing `{x}` with the number of the router:
|
||||||
|
```sh
|
||||||
|
enable
|
||||||
|
configure terminal
|
||||||
|
|
||||||
|
interface fastEthernet 0/1
|
||||||
|
ip address 10.123.0.{x} 255.255.0.0
|
||||||
|
no shutdown
|
||||||
|
|
||||||
|
exit
|
||||||
|
exit
|
||||||
|
disable
|
||||||
|
exit
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue