cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1309
Views
0
Helpful
2
Replies

DHCP Failed

baba_yaga
Level 1
Level 1

I create topology like this belowLAB 7LAB 7to implement the protocols
1. VLAN

2. TRUNK

3. INTERVLAN ROUTING

4. DHCP SERVER

5. DHCP RELAY

6. OSPF

7. STP

8. HSRP

9. VTP

10. RIP

11. EIGRP

12. BGP

 But for PC & Laptop failed to get DHCP, I Already trace my configuration is nothing problem for routing and other protocols except DHCP still failed.

What I miss the configuration so I didn't get DHCP. Thanks
 The pkt file is attached at link below :
https://drive.google.com/file/d/1D2sgI14yLbkcWpBZj9MAcmXlkztHY6b8/view?usp=sharing

 

 

1 Accepted Solution

Accepted Solutions

Deepak Kumar
VIP Alumni
VIP Alumni

Hi,

You are missing "IP Helper-address" command on VLAN Interfaces. as below 

 

 

NXT-DS2(config)#interface vlan 10

NXT-DS2(config-if)#ip helper-address 10.10.10.1

NXT-DS2(config-if)#exit

NXT-DS2(config)#interface vlan 20

NXT-DS2(config-if)#ip helper-address 20.20.20.1

NXT-DS2(config-if)#exit

 

and 

 

NXT-DS1(config)#interface vlan 10
NXT-DS1(config-if)#ip helper-address 10.10.10.1
NXT-DS1(config-if)#exit
NXT-DS1(config)#interface vlan 20
NXT-DS1(config-if)#ip helper-address 20.20.20.1
NXT-DS1(config-if)#exit

Regards,

Deepak Kumar

Regards,
Deepak Kumar,
Don't forget to vote and accept the solution if this comment will help you!

View solution in original post

2 Replies 2

Deepak Kumar
VIP Alumni
VIP Alumni

Hi,

You are missing "IP Helper-address" command on VLAN Interfaces. as below 

 

 

NXT-DS2(config)#interface vlan 10

NXT-DS2(config-if)#ip helper-address 10.10.10.1

NXT-DS2(config-if)#exit

NXT-DS2(config)#interface vlan 20

NXT-DS2(config-if)#ip helper-address 20.20.20.1

NXT-DS2(config-if)#exit

 

and 

 

NXT-DS1(config)#interface vlan 10
NXT-DS1(config-if)#ip helper-address 10.10.10.1
NXT-DS1(config-if)#exit
NXT-DS1(config)#interface vlan 20
NXT-DS1(config-if)#ip helper-address 20.20.20.1
NXT-DS1(config-if)#exit

Regards,

Deepak Kumar

Regards,
Deepak Kumar,
Don't forget to vote and accept the solution if this comment will help you!


@Deepak Kumar wrote:

Hi,

You are missing "IP Helper-address" command on VLAN Interfaces. as below 

 

 

NXT-DS2(config)#interface vlan 10

NXT-DS2(config-if)#ip helper-address 10.10.10.1

NXT-DS2(config-if)#exit

NXT-DS2(config)#interface vlan 20

NXT-DS2(config-if)#ip helper-address 20.20.20.1

NXT-DS2(config-if)#exit

 

and 

 

NXT-DS1(config)#interface vlan 10
NXT-DS1(config-if)#ip helper-address 10.10.10.1
NXT-DS1(config-if)#exit
NXT-DS1(config)#interface vlan 20
NXT-DS1(config-if)#ip helper-address 20.20.20.1
NXT-DS1(config-if)#exit

Regards,

Deepak Kumar


Ok thanks for the solution & it works