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::SNMP::HostInfo::UdpEntry - An entry in the udpTable of a MIB-II host

SYNOPSIS

    use Net::SNMP::HostInfo;

    $host = shift || 'localhost';
    $hostinfo = Net::SNMP::HostInfo->new(Hostname => $host);

    print "\nUdp Listeners Table:\n";
    for $entry ($hostinfo->udpTable) {
        printf "%-15s %-5s\n",
            $entry->udpLocalAddress,
            $entry->udpLocalPort;
    }

DESCRIPTION

"Information about a particular current UDP listener."

METHODS

udpLocalAddress

"The local IP address for this UDP listener. In the case of a UDP listener which is willing to accept datagrams for any IP interface associated with the node, the value 0.0.0.0 is used."

udpLocalPort

"The local port number for this UDP listener."

AUTHOR

James Macfarlane

SEE ALSO

Net::SNMP::HostInfo