Difference between revisions of "Esmith::NetworksDB"
(Created page with "=== NAME === esmith::NetworksDB - interface to esmith networks database<br /> in a root terminal you can do perldoc -U esmith::NetworksDB === SYNOPSIS === use esm...") |
(No difference)
|
Revision as of 15:33, 10 December 2013
NAME
esmith::NetworksDB - interface to esmith networks database
in a root terminal you can do
perldoc -U esmith::NetworksDB
SYNOPSIS
use esmith::NetworksDB; my $c = esmith::NetworksDB->open;
# everything else works just like esmith::DB::db
DESCRIPTION
This module provides an abstracted interface to the esmith master configuration database.
Unless otherwise noted, esmith::NetworksDB acts like esmith::DB::db.
open()
Like esmith::DB->open, but if given no $file it will try to open the file in the ESMITH_NETWORKS_DB environment variable or networks.
open_ro()
Like esmith::DB->open_ro, but if given no $file it will try to open the file in the ESMITH_NETWORKS_DB environment variable or networks.
networks
Return a list of all objects of type "network".
local_access_spec ([$access])
Compute the network/netmask entries which are to treated as local access.
There is also an optional access parameter which can further restrict the values returned. If "access" is "localhost", this routine will only return a single value, equating to access from localhost only.
If called in scalar context, the returned string is suitable for use in /etc/hosts.allow, smb.conf and httpd.conf, for example:
127.0.0.1 192.168.1.1/255.255.255.0
Note: The elements are space separated, which is suitable for use in hosts.allow, smb.conf and httpd.conf. httpd.conf does not permit comma separated lists in "allow from" directives. Each element is either an IP address, or a network/netmask string.
If called in list context, returns the array of addresses and network/netmask strings. It’s trivial, of course, to convert an array to a comma separated list :-)
AUTHOR
SME Server Developers <bugs@e-smith.com>