EFW Support

Support => General Support => Topic started by: madhatt on Friday 18 March 2011, 08:37:58 am



Title: How to Program DHCP Option 43
Post by: madhatt on Friday 18 March 2011, 08:37:58 am
I need to understand how to program DHCP option 43 in response to the inquiring device sending option 60.

Here is the current string I have that is NOT working
Code:
option 43 ascii "id:device.device.net;tftp=10.50.0.50;dscp=46;vlanpri=6;vlanid=40";

When I use these settings DHCP fails to provide ANY IP addresses.

What is the proper string to input??


Title: Re: How to Program DHCP Option 43
Post by: madhatt on Saturday 19 March 2011, 09:36:06 am
Anything?  Anyone?

I'm not too hopeful as I see so many unanswered posts on this forum...


Title: Re: How to Program DHCP Option 43
Post by: melcon on Monday 28 March 2011, 01:36:02 pm
Anything?  Anyone?

I'm not too hopeful as I see so many unanswered posts on this forum...

Try this way:
Code:
option my-option-43 code 43 = text;
option my-option-43 "id:device.device.net;tftp=10.50.0.50;dscp=46;vlanpri=6;vlanid=40";


Title: Re: How to Program DHCP Option 43
Post by: madhatt on Wednesday 20 April 2011, 08:11:01 am
Anything?  Anyone?

I'm not too hopeful as I see so many unanswered posts on this forum...

Try this way:
Code:
option my-option-43 code 43 = text;
option my-option-43 "id:device.device.net;tftp=10.50.0.50;dscp=46;vlanpri=6;vlanid=40";

WOW!!

Thanks so much that worked like a charm!!