cancel
Showing results for 
Search instead for 
Did you mean: 

DHCP option 78 for IdentiFi APs

DHCP option 78 for IdentiFi APs

Tavares__Goncal
Extreme Employee
Hi.

If a customer has 2 controllers in HA mode connected to S4 and wishes to delegate the DHCP services for the APs at the S4, if he wants to use option 78 in order to tell the APs what are the controllers IP address (2 IP addresses), what is the CLI command regarding option 78 at the S4 under dhcp pool?

Let's say the controllers IP addresses are 10.113.5.5 and 10.113.5.6. Must the values be entered in hex?...

Or, since the controllers data port and APs are in the same VLAN/subnet (same broadcast domain - 10.113.5.0/24), it is better to use the controllers data port DHCP server capabilities in order to assign IPs to the APs (allowing AP registration in the data port, of course)?

Thanks in advance.
6 REPLIES 6

Jason1
Extreme Employee
I should have "refreshed" - Thanks Jason!

Jason1
Extreme Employee
Goncalo,

I believe the CLI command would be similar to this below, and in hex.

option 78 instance 0 hex

This is taken from a test config from a S3, but I believe the syntax would be the same:

S3 Chassis(su)->show run
!configure terminal
interface vlan.0.196
ip address 10.58.196.241 255.255.255.0 primary
ip dhcp server
no shutdown
exit
!
# Static routes configured on routed interfaces
ip route 0.0.0.0/0 10.26.196.1 interface vlan.0.196 1
!
ip dhcp send-all-options
ip local pool ap 10.58.196.0 255.255.255.0
exclude 10.58.196.1 20
exclude 10.58.196.241 1
exit
ip dhcp pool ap

bootfile dhcpboot
domain-name test.com
lease 100 0 0
option 78 instance 0 hex 01c0a82e03
option 72 ip 10.1.1.1
default-router 10.58.196.241

dns-server 1.1.1.1
exit

Thanks,
Jason

Jason_Parker
Contributor
To start, I am providing option 78

--Option 78 broken down...
Dec to Hex
You have to do 01 then each value broken out... c0=192 -- a8=168 -- 2e=46 -- 03=3
option 78 instance 0 hex 01c0a82e03

-Config that we used on a S to be a DHCPserver

S3 Chassis(su)->show run

!configure terminal
interface vlan.0.196
ip address 10.58.196.241 255.255.255.0 primary
ip dhcp server
no shutdown
exit
!
# Static routes configured on routed interfaces
ip route 0.0.0.0/0 10.26.196.1 interface vlan.0.196 1
!
ip dhcp send-all-options
ip local pool Extremenetworks 10.58.196.0 255.255.255.0
exclude 10.58.196.1 20
exclude 10.58.196.241 1
exit
ip dhcp pool Extremenetworks

bootfile dhcpboot
domain-name Extremenetworks.com
lease 100 0 0
option 78 instance 0 hex 01c0a82e03
default-router 10.58.196.241

dns-server 1.1.1.1
exit

Jason

Thank you sir!
GTM-P2G8KFN