DOKK / manpages / debian 12 / libnet-route-perl / Net::Route::Table.3pm.en
Net::Route::Table(3pm) User Contributed Perl Documentation Net::Route::Table(3pm)

Net::Route::Table - A routing table, such as your system's.

    use Net::Route::Table;
    $table_ref = Net::Route::Table->from_system();
    my $default_route_ref = $table_ref->default_route();
    my $routes_ref = $table_ref->all_routes();

Revision $Revision: 363 $.

This class represents a routing table. It can be read from the system and gives access to appropriate selections of routes.

from_system()

Returns the system's routing table as a Net::Route::Table object.

default_route()

Returns the current default route of the system as a Net::Route object.

all_routes()

Returns the complete routing table as an arrayref of Net::Route objects. The active routes are listed first, then the results are sorted by increasing metric.

Created by Alexandre Storoz, "<astoroz@straton-it.fr>"

Maintained by Thomas Equeter, "<tequeter@straton-it.fr>"

Copyright (C) 2009 Straton IT.

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

2022-06-30 perl v5.34.0