Compare commits
14 commits
8914a98fbd
...
da07b12c29
Author | SHA1 | Date | |
---|---|---|---|
da07b12c29 | |||
ff5094aada | |||
6d30fb5316 | |||
d1a38b893c | |||
f7fb57a31a | |||
fe6fc8aa7a | |||
9e36f2a45d | |||
e14bf7d4ac | |||
d6eea0dadb | |||
e196c17268 | |||
c9c67d3bdf | |||
63c2f558d0 | |||
360b6da37e | |||
128c977d36 |
4 changed files with 52714 additions and 23166 deletions
BIN
Networks/Lab 04.pkt
(Stored with Git LFS)
BIN
Networks/Lab 04.pkt
(Stored with Git LFS)
Binary file not shown.
BIN
Networks/Main.pkt
(Stored with Git LFS)
BIN
Networks/Main.pkt
(Stored with Git LFS)
Binary file not shown.
|
@ -2,7 +2,7 @@
|
|||
> ***Objectives:***
|
||||
> - Use Lab 03 setup
|
||||
> - Create Switch `SWC`
|
||||
> - Create routers `EP`, `ISP` and `NET` and `PC` from Lab 04
|
||||
> - Merge Lab 04
|
||||
> - Assign IP addresses to `SW1-4`
|
||||
> - Assign IP address to `SWC`
|
||||
> - Create user on each networking device
|
||||
|
@ -34,3 +34,102 @@ 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
|
||||
no shutdown
|
||||
|
||||
exit
|
||||
exit
|
||||
disable
|
||||
exit
|
||||
```
|
||||
|
||||
## Gateway for SWC
|
||||
On SWC:
|
||||
```sh
|
||||
enable
|
||||
configure terminal
|
||||
ip default-gateway 10.123.0.3
|
||||
exit
|
||||
exit
|
||||
disable
|
||||
exit
|
||||
```
|
||||
|
||||
On EE:
|
||||
|
||||
```sh
|
||||
enable
|
||||
configure terminal
|
||||
ip route 10.10.0.0 255.255.0.0 10.123.0.1
|
||||
ip route 10.10.0.0 255.255.0.0 10.123.0.2
|
||||
|
||||
exit
|
||||
exit
|
||||
disable
|
||||
exit
|
||||
```
|
||||
|
||||
## Enable SSH Root Access
|
||||
On all devices:
|
||||
```sh
|
||||
enable
|
||||
configure terminal
|
||||
|
||||
username moucha privilege 15 secret cisco
|
||||
ip domain-name moucha.org
|
||||
|
||||
line vty 0 15
|
||||
transport input ssh
|
||||
login local
|
||||
|
||||
exit
|
||||
exit
|
||||
disable
|
||||
exit
|
||||
```
|
||||
|
||||
On Switches:
|
||||
```sh
|
||||
enable
|
||||
configure terminal
|
||||
crypto key generate rsa general-keys modulus 4096
|
||||
exit
|
||||
exit
|
||||
disable
|
||||
exit
|
||||
```
|
||||
|
||||
On Routers:
|
||||
```sh
|
||||
enable
|
||||
configure terminal
|
||||
crypto key generate rsa general-keys modulus 2048
|
||||
exit
|
||||
exit
|
||||
disable
|
||||
exit
|
||||
```
|
||||
|
|
75772
Unsegmented.svg
75772
Unsegmented.svg
File diff suppressed because it is too large
Load diff
Before Width: | Height: | Size: 623 KiB After Width: | Height: | Size: 1.2 MiB |
Loading…
Reference in a new issue