The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::DHCP - Object methods to create a DHCP packet.

VERSION

version 0.7_002

SYNOPSIS

   use Net::DHCP::Packet;

   my $p = Net::DHCP::Packet->new(
        'Chaddr' => '000BCDEF',
        'Xid' => 0x9F0FD,
        'Ciaddr' => '0.0.0.0',
        'Siaddr' => '0.0.0.0',
        'Hops' => 0);

DESCRIPTION

Represents a DHCP packet as specified in RFC 1533, RFC 2132.

AUTHOR

Dean Hamstead <dean@bytefoundry.com.au<gt>

SOURCE REPO

See https://github.com/djzort/Net-DHCP

BUGS

See https://rt.cpan.org/Dist/Display.html?Queue=Net-DHCP

COPYRIGHT

This is free software. It can be distributed and/or modified under the same terms as Perl itself.

SEE ALSO

Net::DHCP::Options, Net::DHCP::Constants.