dhcpcd failing after invalid dhcp_devoption

When starting dhcpcd, v10.0.0.8, the log shows the following error:
Jul 7 19:11:31 dcrunch dhcpcd[7596]: igb0: dhcp_envoption 31.0/2: Invalid argument

I've found a handful of SIMILAR errors around option 213 - However - this looks like an invalid parsing of an options file that I can't find.

Can anyone provide guidance?

Cheers!

____________________________
/usr/local/etc/dhcpcd.conf:
# A sample configuration for dhcpcd.

# See dhcpcd.conf(5) for details.
allowinterfaces re0 igb0 igb1

# Allow users of this group to interact with dhcpcd via the control socket.
controlgroup wheel

# Inform the DHCP server of our hostname for DDNS.
#hostname
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
duid lt

# Persist interface configuration when dhcpcd exits.
persistent

# vendorclassid is set to blank to avoid sending the default of
# dhcpcd-<version>:<os>:<machine>:<platform>
vendorclassid

# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes

# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu

# Request a hostname from the network
option host_name

# Most distributions have NTP support.
option ntp_servers

# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit

# A ServerID is required by RFC2131.
require dhcp_server_identifier

#release
noalias
noipv4ll

interface re0
ia_na 73:14:6e:f5
ia_pd 73:14:6e:f5/2603:8080:1e01:6a0a::/64

interface igb0
ia_na 21:a8:b1:78
ia_pd 21:a8:b1:78/2603:8080:1e01:6a0a::/64

interface igb1
ia_na 21:a8:b1:79
ia_pd 21:a8:b1:79/2603:8080:1e01:6a0a::/64
 
Back
Top