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

Device::Firewall::PaloAlto::Op::ARPTable - Palo Alto firewall ARP table

VERSION

version 0.1.9

SYNOPSIS

DESCRIPTION

ERRORS

METHODS

entry

Takes an IP address and returns a Device::Firewall::PaloAlto::Op::ARPEntry object representing the ARP entry.

If the ARP entry doesn't exist, it returns a Class::Error object.

current_entries

    say "Current ARP entries: ". $fw->op->arp_table->current_entries;

Returns the current number of entries in the ARP table.

max_entries

    say "Current ARP entries: ". $fw->op->arp_table->max_entries;

Returns the maximum number of entries supported on the firewall.

to_array

Returns an array of Device::Firewall::PaloAlto::Op::ARPEntry objects that represent the entries in the ARP table.

Returns undef if there are no entries in the table.

AUTHOR

Greg Foletta <greg@foletta.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2019 by Greg Foletta.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.