cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
774
Views
1
Helpful
1
Replies

DHCP server to provide IP to Pcs

cgott101
Level 1
Level 1

Working on this example file, the tasks given to configure are as followed; 

I am having trouble trying to get the DHCP server to give IPs to all the PCs. I have created the pools, set up all the VLANs on the multilayer switch, and switches, along with access ports and trunked. However none can still get the IPs. Any help with this would be greatly appreciated. I have provided the task list to provide any additional info.

 

  1. VLANs 1. Switch Configuration: Wherever appropriate, trunks must be hard coded in trunk mode and the VLANs must be assigned to the appropriate switch ports.
  2. The LANs are named as follows:
  • • VLAN 10 – Staff
  • VLAN 20 – Guests
  • VLAN30 -- IT
  • Configure your VLAN gateways on the Multi-Layer Switch.
  1. Routing and Security
  2. 1. Use a default route to enable connectivity to the loopback interface on ASBR.
  3. Enable inter-VLAN routing on the MLS.
  4. C. WLC Configuration
  5. 1. Initialize the WLC using a web interface and the given default network address: 192.168.0.1
  6. 2. Reboot the WLC after initializing it and connect to it using its new network address: 10.30.0.2
  7. Configure an interface for each WLAN (Staff and Guests)
  8. Configure the specified security profiles for each WLAN. D. Server Configuration 1. Configure separate DHCP pools for each VLAN. 2. Configure the Radius Server for VLAN 10.
1 Accepted Solution

Accepted Solutions

@cgott101 do below changes to configure DHCP.

on L3 switch - 

Switch(config)#interface FastEthernet0/10

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 30

 

Switch(config)#int vlan 20

Switch(config-if)#ip helper-address 10.30.0.10

Switch(config-if)#int vlan 10

Switch(config-if)#ip helper-address 10.30.0.10

Switch(config-if)#int vlan 30

Switch(config-if)#ip helper-address 10.30.0.10

 

ON PCs, set IP address mode to DHCP

 

 

Please rate this and mark as solution/answer, if this resolved your issue
Good luck
KB

View solution in original post

1 Reply 1

@cgott101 do below changes to configure DHCP.

on L3 switch - 

Switch(config)#interface FastEthernet0/10

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 30

 

Switch(config)#int vlan 20

Switch(config-if)#ip helper-address 10.30.0.10

Switch(config-if)#int vlan 10

Switch(config-if)#ip helper-address 10.30.0.10

Switch(config-if)#int vlan 30

Switch(config-if)#ip helper-address 10.30.0.10

 

ON PCs, set IP address mode to DHCP

 

 

Please rate this and mark as solution/answer, if this resolved your issue
Good luck
KB