esmith::NetworksDB - interface to esmith networks database
use esmith::NetworksDB;
my $c = esmith::NetworksDB->open;
# everything else works just like esmith::DB::db
This module provides an abstracted interface to the esmith master
configuration database.
Unless otherwise noted, esmith::NetworksDB acts like esmith::DB::db.
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.
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.
Return a list of all objects of type ``network''.
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 :-)
SME Server Developers <bugs@e-smith.com>
the esmith::DB::db manpage
the esmith::DB::Record manpage
|