<<

NAME

pfappserver::Model::Interface - Catalyst Model

DESCRIPTION

Catalyst Model.

METHODS

create

delete

down

exists

get

Returns an hashref with:

    $interface => {
        name       => physical int (eth0 even if in a VLAN int)
        ipaddress  => ...
        netmask    => ...
        is_running    => true / false value
        network    => network address (ie 192.168.0.0 for a 192.168.0.1 IP)
        hwaddress  => mac address
        type       => enforcement type (see Enforcement model)
    # and optionnally:
        vlan       => vlan tag
        dns        => network dns
    }

Where $interface is physical interface if there's no VLAN interface (eth0) and phy.vlan (eth0.100) if there's a vlan interface.

update

isActive

getType

setType

 Update networks.conf and pf.conf

_interfaceActive

Check if the requested interface is active or not on the system.

_interfaceCurrentlyInUse

_interfaceVirtual

_listInterfaces

Return a list of all curently installed network interfaces.

_prepare_interface_for_pfconf

Process parameters to build a proper pf.conf interface section.

up

getEnforcement

COPYRIGHT

Copyright (C) 2005-2015 Inverse inc.

LICENSE

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

<<