net shuttles and gauges
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1301
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
<<lessSYNOPSIS
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
Download (0.016MB)
Added: 2006-09-21 License: Perl Artistic License Price:
1129 downloads
Net::Abuse::Utils 0.05
Net::Abuse::Utils are routines useful for processing network abuse. more>>
Net::Abuse::Utils are routines useful for processing network abuse.
SYNOPSIS
use Net::Abuse::Utils qw( :all );
print "IP Whois Contacts: ", join( , get_ipwi_contacts($ip) ), "n";
print "Abuse.net Contacts: ", get_abusenet_contact($domain), "n";
__top
Net::Abuse::Utils provides serveral functions useful for determining information about an IP address including contact/reporting addresses, ASN/network info, reverse dns, and DNSBL listing status.
<<lessSYNOPSIS
use Net::Abuse::Utils qw( :all );
print "IP Whois Contacts: ", join( , get_ipwi_contacts($ip) ), "n";
print "Abuse.net Contacts: ", get_abusenet_contact($domain), "n";
__top
Net::Abuse::Utils provides serveral functions useful for determining information about an IP address including contact/reporting addresses, ASN/network info, reverse dns, and DNSBL listing status.
Download (0.006MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
Net::YahooMessenger 0.16
Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol. more>>
Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol.
SYNOPSIS
use Net::YahooMessenger;
my $yahoo = Net::YahooMessenger->new(
id => your_yahoo_id,
password => your_password,
);
$yahoo->login or die "Cant login Yahoo!Messenger";
$yahoo->send(recipient_yahoo_id, Hello World!);
MAINTAINERS WANTED
This module is not in active maintenance now. Thus it doesnt play well with recent Yahoo! protocol updates. If you are interested in taking over this module on CPAN, please let me know your CPAN author ID to me at miyagawa[at]cpan.org.
Net::YahooMessenger is a client class for connecting with the Yahoo!Messenger server, and transmitting and receiving a message.
Since implement of a protocol is the result of analyzing and investigating a packet, it has an inadequate place. However, it is working as expected usually.
<<lessSYNOPSIS
use Net::YahooMessenger;
my $yahoo = Net::YahooMessenger->new(
id => your_yahoo_id,
password => your_password,
);
$yahoo->login or die "Cant login Yahoo!Messenger";
$yahoo->send(recipient_yahoo_id, Hello World!);
MAINTAINERS WANTED
This module is not in active maintenance now. Thus it doesnt play well with recent Yahoo! protocol updates. If you are interested in taking over this module on CPAN, please let me know your CPAN author ID to me at miyagawa[at]cpan.org.
Net::YahooMessenger is a client class for connecting with the Yahoo!Messenger server, and transmitting and receiving a message.
Since implement of a protocol is the result of analyzing and investigating a packet, it has an inadequate place. However, it is working as expected usually.
Download (0.016MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1052 downloads
net-tools 1.60
net-tools are programs that form the base set of the NET-3 networking distribution. more>>
The net-tools package contains a collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system.
It contains the important tools for controlling the network subsystem of the Linux kernel including arp, hostname, ifconfig, netstat, rarp and route.
<<lessIt contains the important tools for controlling the network subsystem of the Linux kernel including arp, hostname, ifconfig, netstat, rarp and route.
Download (0.19MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1664 downloads
Net::CSTA 0.03
Net::CSTA project is a perl-module for talking to an ECMA CSTA Phase I server. more>>
Net::CSTA project is a perl-module for talking to an ECMA CSTA Phase I server.
ECMA CSTA is a ASN.1 based protocol for building CTI applications. Typical use include subscribing to events (aka moinitoring), placing and modifying calls.
This module only support CSTA Phase I (mainly because that is what I have access to). The module has been tested with Ericsson AL 4.0 (application link) with an MD110.
SYNOPSIS
use Net::CSTA;
# Connect to the CSTA server
my $csta = Net::CSTA->new(Host=>csta-server,Port=>csta-server-port);
# Create a monitor for 555
my $number = 555;
$csta->request(serviceID=>71,
serviceArgs=>{monitorObject=>{device=>{dialingNumber=>$number}}})
for (;;)
{
my $pdu = $csta->receive();
print $pdu->toXML();
}
<<lessECMA CSTA is a ASN.1 based protocol for building CTI applications. Typical use include subscribing to events (aka moinitoring), placing and modifying calls.
This module only support CSTA Phase I (mainly because that is what I have access to). The module has been tested with Ericsson AL 4.0 (application link) with an MD110.
SYNOPSIS
use Net::CSTA;
# Connect to the CSTA server
my $csta = Net::CSTA->new(Host=>csta-server,Port=>csta-server-port);
# Create a monitor for 555
my $number = 555;
$csta->request(serviceID=>71,
serviceArgs=>{monitorObject=>{device=>{dialingNumber=>$number}}})
for (;;)
{
my $pdu = $csta->receive();
print $pdu->toXML();
}
Download (0.010MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
954 downloads
Net::Google::Calendar::Entry 0.5
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar. more>>
Net::Google::Calendar::Entry is an entry class for Net::Google::Calendar.
SYNOPSIS
my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);
my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
<<lessSYNOPSIS
my $event = Net::Google::Calendar::Entry->new();
$event->title(Party!);
$event->content(P-A-R-T-Why? Because we GOTTA!);
$event->location("My Flat, London, England");
$event->status(confirmed);
$event->transparency(opaque);
$event->visibility(private);
my $author = Net::Google::Calendar::Person->new;
$author->name(Foo Bar);
$author->email(foo@bar.com);
$entry->author($author);
Download (0.009MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1063 downloads
/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/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).
Download (0.063MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
915 downloads
Net Worm Race 1.0
Net Worm Race project is a network snake game for up to 30 players. more>>
Net Worm Race project is a network snake game for up to 30 players.
Net Worm Race is a highly customizable on- line network game for up to 30 players. It is a variation on the well known "snake" theme.
Several worms (one for each player) keep growing from somewhere and can change their direction to certain angles (set in the settings) or change their speed by certain amounts in a given range.
If the head of a worm leaves the game area or another worm, the worm dies.
The game goes on until there is a single worm left.
<<lessNet Worm Race is a highly customizable on- line network game for up to 30 players. It is a variation on the well known "snake" theme.
Several worms (one for each player) keep growing from somewhere and can change their direction to certain angles (set in the settings) or change their speed by certain amounts in a given range.
If the head of a worm leaves the game area or another worm, the worm dies.
The game goes on until there is a single worm left.
Download (0.057MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1066 downloads
Net::YahooMessenger::CRAM 0.16
Net::YahooMessenger::CRAM is a Yahoo Messenger Challenge-Response Authentication Mechanism. more>>
Net::YahooMessenger::CRAM is a Yahoo Messenger Challenge-Response Authentication Mechanism.
SYNOPSIS
my $cram = Net::YahooMessenger::CRAM->new();
$cram->set_id($your_yahoo_id);
$cram->set_password($your_password);
$cram->set_challenge_string($string_from_server);
my ($response_type6, $response_type96) = $cram->get_response_strings();
Net::YahooMessenger::CRAM is Challenge-Response Authentication Mechanism for Yahoo Messenger protocol version 9.
<<lessSYNOPSIS
my $cram = Net::YahooMessenger::CRAM->new();
$cram->set_id($your_yahoo_id);
$cram->set_password($your_password);
$cram->set_challenge_string($string_from_server);
my ($response_type6, $response_type96) = $cram->get_response_strings();
Net::YahooMessenger::CRAM is Challenge-Response Authentication Mechanism for Yahoo Messenger protocol version 9.
Download (0.016MB)
Added: 2006-12-12 License: Perl Artistic License Price:
621 downloads
Net::FTP::File 0.05
Net::FTP::File is a Perl extension for simplifying FTP file operations. more>>
Net::FTP::File is a Perl extension for simplifying FTP file operations.
SYNOPSIS
use Net::FTP::File;
my $ftp = Net::FTP->new("some.host.name", Debug => 0)
or die "Cannot connect to some.host.name: $@";
$ftp->login("anonymous",-anonymous@)
or die "Cannot login ", $ftp->message;
if($ftp->isfile($file) {
$ftp->move($file,$newfile) or warn $ftp->message;
$ftp->chmod(644, $newfile) or warn $ftp->message;
} else { print "$file does not exist or is a directory"; }
my $dirinfo_hashref = $ftp->dir_hashref;
print Dumper $dirinfo_hashref->{$file}; # Dumper() is from Data::Dumper, just FYI
$ftp->quit;
<<lessSYNOPSIS
use Net::FTP::File;
my $ftp = Net::FTP->new("some.host.name", Debug => 0)
or die "Cannot connect to some.host.name: $@";
$ftp->login("anonymous",-anonymous@)
or die "Cannot login ", $ftp->message;
if($ftp->isfile($file) {
$ftp->move($file,$newfile) or warn $ftp->message;
$ftp->chmod(644, $newfile) or warn $ftp->message;
} else { print "$file does not exist or is a directory"; }
my $dirinfo_hashref = $ftp->dir_hashref;
print Dumper $dirinfo_hashref->{$file}; # Dumper() is from Data::Dumper, just FYI
$ftp->quit;
Download (0.006MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
Net::UPS 0.04
Net::UPS is an implementation of UPS Online Tools API in Perl.v more>>
Net::UPS is an implementation of UPS Online Tools API in Perl.
SYNOPSIS
use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);
Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.
This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.
<<lessSYNOPSIS
use Net::UPS;
$ups = Net::UPS->new($userid, $password, $accesskey);
$rate = $ups->rate($from_zip, $to_zip, $package);
printf("Shipping this package $from_zip => $to_zip will cost you $.2fn", $rate->total_charges);
Net::UPS implements UPS Online Tools API in Perl. In a nutshell, Net::UPS knows how to retrieve rates and service information for shipping packages using UPS, as well as for validating U.S. addresses.
This manual is optimized to be used as a quick reference. If youre knew to Net::UPS, and this manual doesnt seem to help, youre encouraged to read Net::UPS::Tutorial first.
Download (0.020MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1097 downloads
Net::Daemon::SSL 1.0
Net::Daemon::SSL is a SSL extension for Net::Daemon. more>>
Net::Daemon::SSL is a SSL extension for Net::Daemon.
SYNOPSIS
use Net::Daemon::SSL;
package MyDaemon;
@MyDaemon::ISA = qw (Net::Daemon::SSL);
sub Run
{
my $this = shift;
my $buffer;
$this->{socket}->print ( "vasja was heren" );
$this->{socket}->sysread ( $buffer, 100 ); # Attention! getline() method
# do not work with IO::Socket::SSL
# version 0.73
# see perldoc IO::Socket::SSL
# for more details
}
package main;
my $daemon = new MyDaemon ( {}, @ARGV ); # you can use --help command line key
$daemon || die "error create daemon instance: $!n";
$daemon->Bind();
__top
This class implements an IO::Socket::SSL functionality for Net::Daemon class. See perldoc Net::Daemon for more information about Net::Daemon usage.
Options
This method add IO::Socket::SSL specific options ( SSL_use_cert, SSL_verify_mode, SSL_key_file, SSL_cert_file, SSL_ca_path, SSL_ca_file ) to generic Net::Daemon options. See perldoc IO::Socket::SSL for description of this options
Bind
This method creates an IO::Socket::SSL::SafeAccept socket, stores this socket into $this->{socket} and passes control to parent Net::Daemon::Bind. The IO::Socket::SSL::SafeAccept is a class inherited from IO::Socket::SSL with the only difference from parent class - the accept() method of this class returns EINTR on *any* error. This trick is needed to ``hack Net::Daemon::Bind functionality: if this method gets an error from accept() ( Net::Daemon::SSL auth error, for example ) it will call Fatal() method and die unless this is a EINTR error.
<<lessSYNOPSIS
use Net::Daemon::SSL;
package MyDaemon;
@MyDaemon::ISA = qw (Net::Daemon::SSL);
sub Run
{
my $this = shift;
my $buffer;
$this->{socket}->print ( "vasja was heren" );
$this->{socket}->sysread ( $buffer, 100 ); # Attention! getline() method
# do not work with IO::Socket::SSL
# version 0.73
# see perldoc IO::Socket::SSL
# for more details
}
package main;
my $daemon = new MyDaemon ( {}, @ARGV ); # you can use --help command line key
$daemon || die "error create daemon instance: $!n";
$daemon->Bind();
__top
This class implements an IO::Socket::SSL functionality for Net::Daemon class. See perldoc Net::Daemon for more information about Net::Daemon usage.
Options
This method add IO::Socket::SSL specific options ( SSL_use_cert, SSL_verify_mode, SSL_key_file, SSL_cert_file, SSL_ca_path, SSL_ca_file ) to generic Net::Daemon options. See perldoc IO::Socket::SSL for description of this options
Bind
This method creates an IO::Socket::SSL::SafeAccept socket, stores this socket into $this->{socket} and passes control to parent Net::Daemon::Bind. The IO::Socket::SSL::SafeAccept is a class inherited from IO::Socket::SSL with the only difference from parent class - the accept() method of this class returns EINTR on *any* error. This trick is needed to ``hack Net::Daemon::Bind functionality: if this method gets an error from accept() ( Net::Daemon::SSL auth error, for example ) it will call Fatal() method and die unless this is a EINTR error.
Download (0.002MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1184 downloads
Net::Oscar 1.0
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients. more>>
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients.
<<less Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
859 downloads
Net::GPSD 0.35
Net::GPSD is a Perl module that provides an object client interface to the gpsd server daemon. more>>
Net::GPSD is a Perl module that provides an object client interface to the gpsd server daemon.
SYNOPSIS
use Net::GPSD;
$obj=Net::GPSD->new;
my $point=$obj->get;
print $point->latlon. "n";
or
use Net::GPSD;
$obj=Net::GPSD->new;
$obj->subscribe();
Net::GPSD provides an object client interface to the gpsd server daemon. gpsd is an open source GPS deamon from http://gpsd.berlios.de/.
For example the get method returns a blessed hash reference like
{S=>[?|0|1|2],
P=>[lat,lon]}
Fortunately, there are various methods that hide this hash from the user.
<<lessSYNOPSIS
use Net::GPSD;
$obj=Net::GPSD->new;
my $point=$obj->get;
print $point->latlon. "n";
or
use Net::GPSD;
$obj=Net::GPSD->new;
$obj->subscribe();
Net::GPSD provides an object client interface to the gpsd server daemon. gpsd is an open source GPS deamon from http://gpsd.berlios.de/.
For example the get method returns a blessed hash reference like
{S=>[?|0|1|2],
P=>[lat,lon]}
Fortunately, there are various methods that hide this hash from the user.
Download (0.015MB)
Added: 2007-04-04 License: Perl Artistic License Price:
936 downloads
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.
<<lessSYNOPSIS
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.
Download (0.013MB)
Added: 2007-03-24 License: Perl Artistic License Price:
945 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above net shuttles and gauges search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed