Lab 5: Small Enterprise Class Lab - ConnorEast/Tech-Journal GitHub Wiki
Network Table used
Vlan Name | Vlan # | Network | Net Mask | Needed Hosts | Hosts | Default Gatewate |
---|---|---|---|---|---|---|
Default | 1 | 10.10.6.0 | /24 | 150 | 256 | 10.10.6.0 |
Clinic | 100 | 10.10.0.0 | /23 | 300 | 512 | 10.10.0.1 |
Visitor | 110 | 10.10.2.0 | /23 | 300 | 512 | 10.10.2.1 |
Office | 120 | 10.10.4.0 | /23 | 300 | 512 | 10.10.4.1 |
Counseling | 130 | 10.10.7.0 | /24 | 150 | 256 | 10.10.7.1 |
The IP ranges available for each section are as follows
- Clinic Range: 10.10.0.1 - 10.10.1.254
- Visitor: 10.10.2.1 - 10.10.3.254
- Office: 10.10.4.1 - 10.10.5.254
- Counseling: 10.10.7.1 - 10.10.7.254
- Default: 10.10.6.0 - 10.10.6.254
> Switch#Conf t > switch (config)# int vlan 1 > switch (config-if)# ip address 10.10.6.1 255.255.255.0 > switch (config-if)# no shut > switch (config-if)#exit |
> switch (config)# int vlan 100 > switch (config-if)# ip address 10.10.0.1 255.255.254.0 > switch (config-if)# ip helper-address 10.10.6.2 > switch (config-if)# no shut > switch (config-if)#exit |
> switch (config)# int vlan 110 > switch (config-if)# ip address 10.10.2.1 255.255.254.0 > switch (config-if)# ip helper-address 10.10.6.2 > switch (config-if)# no shut > switch (config-if)#exit |
> switch (config)# int vlan 120 > switch (config-if)# ip address 10.10.4.1 255.255.254.0 > switch (config-if)# ip helper-address 10.10.6.2 > switch (config-if)# no shut > switch (config-if)#exit |
> switch (config)# int vlan 130 > switch (config-if)# ip address 10.10.7.1 255.255.255.0 > switch (config-if)# ip helper-address 10.10.6.2 > switch (config-if)# no shut > switch (config-if)#exit |
> Switch# Conf t > switch (config)# ip routing > switch(config)# router rip > switch(config-router)# version 2 |
> Switch# Conf t > switch (config)# ip routing > switch(config)# router rip > switch(config-router)# version 2 |