Main > Free Download Search >

Free net nis listgroup software for linux

net nis listgroup

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1220
Net::NIS::Listgroup 1.0.0

Net::NIS::Listgroup 1.0.0


Net::NIS::Listgroup is a Perl module to list hosts/users in a netgroup group. more>>
Net::NIS::Listgroup is a Perl module to list hosts/users in a netgroup group.

SYNOPSIS

use Listgroup;

$array_ref_groups = listgroup();
$array_ref_groups = listgroups();

$array_ref_users_or_groups = listgroup({groupname});

$array_ref_users_or_groups = listgroup_user({groupname1},
[ [-]{groupname2}, [-]{gropuname3} ]);

$array_ref_users_or_groups = listgroup_host({groupname1},
[ [-]{groupname2}, [-]{gropuname3} ]);

A library used to get groups or members of a netgroup NIS map. listgroup() without any parameters or listgroups() lists all the available netgroup groups.

With groupname parameters listgroup, listgroup_user, listgroup_host will recusively list the members of the named groups. If the groupname is preceded with a - members of that group will be excluded from the returned list. Each member in a group is a triplet of (host,user,domain). The host portion or user portion of the members is returned by listgroup_host() and listgroup(), the user portion of the members is returned by listgroup_user().

<<less
Download (0.014MB)
Added: 2007-02-27 License: Perl Artistic License Price:
971 downloads
Mail::Message::Head::ListGroup 2.069

Mail::Message::Head::ListGroup 2.069


Mail::Message::Head::ListGroup is a Perl module for mailinglist related header fields. more>>
Mail::Message::Head::ListGroup is a Perl module for mailinglist related header fields.

INHERITANCE

Mail::Message::Head::ListGroup
is a Mail::Message::Head::FieldGroup
is a Mail::Reporter

SYNOPSIS

my $lg = Mail::Message::Head::ListGroup->new(head => $head, ...);
$head->addListGroup($lg);

my $lg = $head->addListGroup(...);

$lg->delete;

A list group is a set of header fields which are added by mailing-list managing software. This class knowns various details about that software.

The knowledge and test messages which are used to initially implement this module is taken from Mail::ListDetector, written by Michael Stevens. The logic is redesigned to add flexibility and use the powerful MailBox features.

<<less
Download (0.57MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1040 downloads
Net::DNS 0.57

Net::DNS 0.57


Net::DNS::RR::A is a DNS A resource record. more>>
Net::DNS::RR::A is a DNS A resource record. Net::DNS is a DNS resolver implemented in Perl. It allows the
programmer to perform nearly any type of DNS query from a Perl script. For details and examples, please read the Net::DNS manual page.

To read about the latest features, see the Changes file. To find out about known bugs and to see whats planned for future versions, see the TODO file.

Net::DNS does not depend on any C libraries. However, if possible Net::DNS tries to link against a C-library that is supplied with the code. This provides a notable speed increase.

The author invites feedback on Net::DNS. If theres something youd like to have added, please let me know. If you find a bug, please send me the information described in the BUGS section below.

METHODS

address

print "address = ", $rr->address, "n";

Returns the RRs address field.

<<less
Download (0.13MB)
Added: 2006-06-01 License: Perl Artistic License Price:
1243 downloads
Authorize.net AIM Client 1.0

Authorize.net AIM Client 1.0


Authorize.net AIM Client is a PHP client for the AIM API for Authorize.net. more>>
Authorize.net AIM Client is a PHP client for the AIM API for Authorize.net.

Authorize.net customers can use this class to submit credit card charges to authorize.net. This is a PHP port of the Java class com.admc.lm.AIM.

Make sure to verify the checksums, and do not obtain these files from any other location if you dont trust the source or cant verify the download. I am not responsible if you get robbed by hacked versions of my code.

You may redistribute Authorize.net AIM Client according to the BSD open source license.

<<less
Download (0.017MB)
Added: 2005-12-13 License: BSD License Price:
1411 downloads
Net::Flickr::Backup 2.97

Net::Flickr::Backup 2.97


Net::Flickr::Backup module contains OOP for backing up your Flickr photos locally. more>>
Net::Flickr::Backup module contains OOP for backing up your Flickr photos locally.

SYNOPSIS

use Net::Flickr::Backup;
use Log::Dispatch::Screen;

my $flickr = Net::Flickr::Backup->new($cfg);

my $feedback = Log::Dispatch::Screen->new(name => info,
min_level => info);

$flickr->log()->add($feedback);
$flickr->backup();

<<less
Download (0.023MB)
Added: 2007-07-19 License: Perl Artistic License Price:
833 downloads
Net::DownloadMirror 0.04

Net::DownloadMirror 0.04


Net::DownloadMirror is a Perl extension for mirroring a remote location via FTP to the local directory. more>>
Net::DownloadMirror is a Perl extension for mirroring a remote location via FTP to the local directory.

SYNOPSIS

use Net::DownloadMirror;
my $um = Net::DownloadMirror->new(
ftpserver => "my_ftp.hostname.com",
usr => "my_ftp_usr_name",
pass => "my_ftp_password",
);
$um->Update();

or more detailed
my $um = Net::DownloadMirror->new(
ftpserver => "my_ftp.hostname.com",
usr => "my_ftp_usr_name",
pass => "my_ftp_password",
localdir => "home/nameA/homepageA",
remotedir => "public",
debug => 1 # 1 for yes, 0 for no
timeout => 60 # default 30
delete => "enable" # default "disabled"
connection => $ftp_object, # default undef
exclusions => ["private.txt", "Thumbs.db", ".sys", ".log"],
);
$um->SetLocalDir("home/nameB/homepageB");
print("hostname : ", $um->get_ftpserver(), "n");
$um->Update();

This module is for mirroring a remote location to a local directory via FTP. For example websites, documentations or developmentstuff which ones were uploaded or changed in the net. It is not developt for mirroring large archivs. But there are not in principle any limits.

<<less
Download (0.006MB)
Added: 2007-04-04 License: Perl Artistic License Price:
935 downloads
Net::iTMS 0.15

Net::iTMS 0.15


Net::iTMS is a Perl interface to the information within the iTunes Music Store (iTMS). more>>
Net::iTMS is a Perl interface to the information within the iTunes Music Store (iTMS).

SYNOPSIS

my $iTMS = Net::iTMS->new;

my $artist = $iTMS->get_artist(2893902);
print "Artist: ", $artist->name, "n";

for my $album ($artist->discography) {
print $album->title, "n";

for my $track ($album->tracks) {
print "t ", $track->number, ": ", $track->title, "n";
}
}

Net::iTMS is the main class (that is, the one you should be using) for interacting with Apples iTunes Music Store (http://apple.com/itunes/store/).

Currently, it provides means to access individual artist, album, and song information in the iTMS.

<<less
Download (0.013MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
Net::Lyskom 1.1

Net::Lyskom 1.1


Net::Lyskom is a Perl module used to talk to LysKOM servers. more>>
Net::Lyskom is a Perl module used to talk to LysKOM servers.

SYNOPSIS

use Net::Lyskom;

$a = Net::Lyskom->new();
$conf = 6;

$a->login(pers_no => 437, password => "God", invisible => 1)
or die "Failed to log in: $a->err_stringn";

$b = $a->send_message(7680, "Oook!");

$b = $a->create_text(
subject => "Testsubject",
body => "A nice and tidy message body.",
recpt => [437],
);

if ($b) {
print "Text number $b created.n";
} else {
print "Text creation failed: $a->err_string.n";
}

<<less
Download (0.023MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Net::BGP::Router 0.04

Net::BGP::Router 0.04


Net::BGP::Router is a BGP Router based on Net::BGP. more>>
Net::BGP::Router is a BGP Router based on Net::BGP.

SYNOPSIS

use Net::BGP::Router;
# Constructor
$router = new Net::BGP::Router(
Name => My very own router!,
Policy => new Net::BGP::Policy
);
# Accessor Methods
$router->add_peer($peer,both,$acl);
$router->remove_peer($peer,both);
$router->set_policy($policy);
$router->set_policy($peer,in,$acl);
__top

This module implement a BGP router. It uses Net::BGP objects for the BGP sessions and a Net::BGP::RIB object to store the routes. Policy are handled using a Net::BGP::Policy object.

<<less
Download (0.010MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1189 downloads
Net::DNS::TestNS 1.09

Net::DNS::TestNS 1.09


Net::DNS::TestNS is a Perl extension for simulating simple Nameservers. more>>
Net::DNS::TestNS is a Perl extension for simulating simple Nameservers.

SYNOPSIS

use Net::DNS::TestNS;

ABSTRACT

Class for setting up "simple DNS" servers.

Class to setup a number of nameservers that respond to specific DNS queries (QNAME,QTYPE) by prespecified answers. This class is to be used in test suites where you want to have servers to show predefined behavior.

If the server will do a lookup based on QNAME,QTYPE and return the specified data. If there is no QNAME, QTYPE match the server will return a SERVFAIL.

A log will be written to STDERR it contains time, IP/PORT, QNAME, QTYPE, RCODE

<<less
Download (0.016MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1129 downloads
Net::Delicious::Simple 0.01

Net::Delicious::Simple 0.01


Net::Delicious::Simple is a Net::Delicious for backups. more>>
Net::Delicious::Simple is a Net::Delicious for backups.

SYNOPSIS

use Net::Delicious::Simple;
my $del = Net::Delicious->new(user => plki, pswd => secret);

print "$_->{href}n" for $del->all_posts;
__top

If you want to do anything interesting with del.icio.us automation, you probably want the Net::Delicious manpage. Its good. This module is not. Its just here to return all of your tags or posts as a basic Perl data structure.

This makes it very easy to store that structure using existing dumpers. In fact, it only exists to power delbackup, which dumps to YAML or Netscape::Bookmarks.

<<less
Download (0.003MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
/etc/net Scripts 0.9.2

/etc/net Scripts 0.9.2


/etc/net represents a new approach to Linux network configuration tasks. more>>
/etc/net represents a new approach to Linux network configuration tasks. /etc/net Scripts is inspired by the limitations of traditional configuration subsystems.
/etc/net provides builtin support for configuration profiles, interface name management, removable device support, full iproute2 command set support, interface dependency resolution, and a QoS configuration framework.
/etc/net provides support for the following interface types: Ethernet, WiFi (WEP), IPv6/IPv6 tunnels, PSK IPSec tunnels, VLAN, PLIP, Ethernet bonding and bridging, traffic equalizer, Pent@NET, usbnet, and PPP.
Due to its modular design, support for new interface types can be added without overall design changes.
Enhancements:
- This release features mostly new features (ip6tables, ebtables, OpenVPN, and tun/tap) and some bugfixes (IP rules, wireless, firewall, and DVB).
<<less
Download (0.063MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
Net::Stomp::Frame 0.32

Net::Stomp::Frame 0.32


Net::Stomp::Frame is a STOMP Frame. more>>
Net::Stomp::Frame is a STOMP Frame.

SYNOPSIS

use Net::Stomp::Frame;
my $frame = Net::Stomp::Frame->new( {
command => $command,
headers => $headers,
body => $body,
} );
my $frame = Net::Stomp::Frame->parse($string);
my $string = $frame->as_string;

This module encapsulates a Stomp frame. Stomp is the Streaming Text Orientated Messaging Protocol (or the Protocol Briefly Known as TTMP and Represented by the symbol :ttmp). Its a simple and easy to implement protocol for working with Message Orientated Middleware from any language.

Net::Stomp is useful for talking to Apache ActiveMQ, an open source (Apache 2.0 licensed) Java Message Service 1.1 (JMS) message broker packed with many enterprise features.

A Stomp frame consists of a command, a series of headers and a body.

<<less
Download (0.006MB)
Added: 2007-06-23 License: Perl Artistic License Price:
853 downloads
Net::Akismet 0.02

Net::Akismet 0.02


Net::Akismet is a Perl interface to Akismet - comment and trackback spam fighter. more>>
Net::Akismet is a Perl interface to Akismet - comment and trackback spam fighter.

SYNOPSIS

my $akismet = Net::Akismet->new(
KEY => secret-baba-API-key,
URL => http://example.blog.net/,
) or die(Key verification failure!);

my $verdict = $akismet->check(
USER_IP => 10.10.10.11,
COMMENT_CONTENT => Run, Lola, Run, the spam will catch you!,
COMMENT_AUTHOR => dosser,
COMENT_AUTHOR_EMAIL => dosser@subway.de,
REFERRER => http://lola.home/,
) or die(Is the server here?);

if (true eq $verdict) {

print "I found spam. I am a spam-founder!n";
}

<<less
Download (0.004MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
Net::OpenSRS 0.02

Net::OpenSRS 0.02


Net::OpenSRS project is a wrapper interface to the DNS portions of the Tucows OpenSRS HTTPS XML API. more>>
Net::OpenSRS project is a wrapper interface to the DNS portions of the Tucows OpenSRS HTTPS XML API.

The client library distributed by OpenSRS can be difficult to integrate into a custom environment, and their web interface becomes quickly tedious with heavy usage. This is a clean and relatively quick library to perform the most common API methods described in the OpenSRS API documentation.

Examples

use Net::OpenSRS;

my $key = Your_API_Key_From_The_Reseller_Interface;
my $srs = Net::OpenSRS->new();

$srs->environment(live);
$srs->set_key( $key );

$srs->set_manage_auth( manage_username, manage_password );

my $cookie = $srs->get_cookie( spime.net );
if ($cookie) {
print "Cookie: $cookien";
} else {
print $srs->last_response() . "n";
}

# do a batch of domain locks
$srs->bulk_lock([ example.com, example.net, ... ]);

# renew a domain
my $result = $srs->renew_domain( example.com );
...

<<less
Download (0.012MB)
Added: 2007-05-12 License: Perl Artistic License Price:
903 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5