Link to home
Start Free TrialLog in
Avatar of Damian Gardner
Damian Gardner

asked on

I need help with how to enter a IPHELPER address for a VLAN on my Cisco 9300 switch.

I need help with how to enter a IPHELPER address for a VLAN on my Cisco 9300 switch.  it is currently set to an address, and I want to change it.
Avatar of mikecr
mikecr
Flag of United States of America image

The command is " ip helper-address (ip of dhcp server)".

Example:
int vlan 5
 ip helper-address 10.1.1.1
In the event that the old IP helper methods don't work on those new Catalyst 9K units, you can move to the newer method of doing it, which is to setup relay pools.

ip dhcp pool DHCP_Pool
 relay source 10.1.5.0 255.255.255.0
 relay destination 10.1.1.1
 relay destination 10.1.2.1

Open in new window


The above commands are entered in global configuration mode. Replace "10.1.5.0 255.255.255.0" with the network address and subnet mask of the network that needs DHCP services. Replace "10.1.1.1" and "10.1.2.1" with the IPv4 addresses of your DHCP servers.
ASKER CERTIFIED SOLUTION
Avatar of Jody Lemoine
Jody Lemoine
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you don't "no" out the current ip helper address it will add an addtional ip helper address under the existing one. Jody is correct.
Avatar of Damian Gardner
Damian Gardner

ASKER

sorry for the delay.  awesome - I Appreciate the help guys.