NAME

Net::DHCPv6::Option::RemoteId - Remote ID option (code 37) -- enterprise-number + opaque data

VERSION

version 0.003

SYNOPSIS

use Net::DHCPv6::Option::RemoteId;
my $opt = Net::DHCPv6::Option::RemoteId->new(
    enterprise_number => 9,        # Cisco (IANA PEN)
    remote_data       => "\x00\x01\x02\x03",
);

DESCRIPTION

Carries a relay agent's remote identification, consisting of an IANA Private Enterprise Number (PEN, see https://www.iana.org/assignments/enterprise-numbers) and opaque data. See RFC 4649.

ALPHA STATUS

ALPHA SOFTWARE. This is an early release. The interface is experimental and subject to change without notice.

METHODS

new

Constructor. Requires enterprise_number and remote_data.

enterprise_number

Returns the IANA enterprise number.

remote_data

Returns the opaque remote identification data.

SEE ALSO

Net::DHCPv6::Option, Net::DHCPv6::OptionList

AUTHOR

Dean Hamstead <dean@fragfest.com.au>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2026 by Dean Hamstead.

This is free software, licensed under:

The MIT (X11) License