Add the SWC switch

This commit is contained in:
Manuel Thalmann 2023-12-05 11:34:05 +01:00
parent 9efb625ba7
commit 9b76e7b750
2 changed files with 30 additions and 2 deletions

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

Binary file not shown.

View file

@ -6,3 +6,31 @@
> - Assign IP addresses to `SW1-4`
> - Assign IP address to `SWC`
> - 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
```