Network Programming with Perl
The Net::Ping module makes pinging hosts easy. Listing 12, ping.pl, is a program similar to a program on my server that pings my ISP to keep my connection alive. First, a new Net::Ping object is created. The protocol chosen is tcp (the choices are tcp, udp and icmp; the default is udp). The second argument is the timeout (two seconds). Then an infinite loop is executed, pinging the desired host. The ping() method returns true if the host responds, false otherwise, and an appropriate message is printed. Then the program sleeps ten seconds and pings again.
An example output of Listing 12, ping.pl, is:
Success: Wed Nov 4 14:47:58 1998 Success: Wed Nov 4 14:48:08 1998 Success: Wed Nov 4 14:48:18 1998 Success: Wed Nov 4 14:48:28 1998 Success: Wed Nov 4 14:48:38 1998 Success: Wed Nov 4 14:48:48 1998
The Net::Telnet module makes automating TELNET sessions easy. Listing 13, telnet.pl, is an example of connecting to a machine, sending a few system commands and printing the result.
First, a server and a user name are used. The user name defaults to the user running the script by assigning to $user the value $ENV{USER}. (The hash %ENV contains all of the environment variables the script inherits from the shell.)
Next, the password is requested, then read in. Note that turning off the stty echoing is done through a system call. It can also be done using the Term::ReadKey module.
Then, a Net::Telnet object is created. To log in to the server using this object, the login method is called. Several system commands are executed using the cmd method which returns the STDOUT of the system command which is then printed. Note that part of that output is the system prompt, which is printed along with the output of the command.
Also note that the code $tn->cmd('/usr/bin/who') is evaluated in list context and stored in @who, which is an array that contains all the lines of ouptut of that command, one line of output per array element.
After all of the system commands are executed, the TELNET session is closed.
Here is an example output of Listing 13, telnet.pl:
Enter password:
Hostname: server.onsight.com [james@server james] Here's who: james tty1 Oct 24 21:07 james ttyp1 Oct 27 20:59 (:0.0) james ttyp2 Oct 24 21:11 (:0.0) james ttyp6 Oct 28 07:16 (:0.0) james ttyp8 Oct 28 19:02 (:0.0) [james@server james] What is your command: date Thu Oct 29 14:39:57 EST 1998 [james@server james]
The Net::FTP module makes automating FTP sessions easy. Listing 14, ftp.pl, is an example of connecting and getting a file.
A Net::FTP object is created, the login is called to log in to the machine, the cwd changes the working directory and the get method gets the file. Then the session is terminated with quit.
There are methods to do many common FTP operations: put, binary, rename, delete, etc. To see a list of all the available methods, type:
perldoc Net::FTP
Here is an example output of Listing 14, ftp.pl:
[james@k2 networking]$ ftp.pl server.onsight.com Enter your password: Before ---------------------------------------- /bin/ls: *.gz: No such file or directory ---------------------------------------- After ---------------------------------------- perl5.005_51.tar.gz ----------------------------------------
Using both Net::Telnet and Net::FTP, a very simple script can be created that can archive a directory structure on a remote machine.
Listing 15, taritup.pl, is a Perl program that is similar to a program I use that logs in to my ISP and archives my web site.
The steps this program follows are:
Start a session on the remote machine with TELNET.
Go to the web page directory using cd.
Archive the directory using tar.
Start an FTP session to the remote machine.
Change to the directory containing the tar file.
Get the tar file.
Quit the FTP session.
Back in the TELNET session, delete the tar file on the remote machine.
Close the TELNET session.
This program outputs text to let the user know how the script is progressing.
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Sponsored by AMD
If you already use virtualized infrastructure, you are well on your way to leveraging the power of the cloud. Virtualization offers the promise of limitless resources, but how do you manage that scalability when your DevOps team doesn’t scale? In today’s hypercompetitive markets, fast results can make a difference between leading the pack vs. obsolescence. Organizations need more benefits from cloud computing than just raw resources. They need agility, flexibility, convenience, ROI, and control.
Stackato private Platform-as-a-Service technology from ActiveState extends your private cloud infrastructure by creating a private PaaS to provide on-demand availability, flexibility, control, and ultimately, faster time-to-market for your enterprise.
Sponsored by ActiveState
| Speed Up Your Web Site with Varnish | Jun 19, 2013 |
| Non-Linux FOSS: libnotify, OS X Style | Jun 18, 2013 |
| Containers—Not Virtual Machines—Are the Future Cloud | Jun 17, 2013 |
| Lock-Free Multi-Producer Multi-Consumer Queue on Ring Buffer | Jun 12, 2013 |
| Weechat, Irssi's Little Brother | Jun 11, 2013 |
| One Tail Just Isn't Enough | Jun 07, 2013 |
- Speed Up Your Web Site with Varnish
- Containers—Not Virtual Machines—Are the Future Cloud
- Real Programming with AWK
- Examining Load Average
- Pluggable Authentication Modules for Linux
- One-Click Release Management
- Non-Linux FOSS: libnotify, OS X Style
- Python Programming for Beginners
- Boot with GRUB
- DreamWorks Feature Linux and Animation
- Cari Uang
3 hours 2 min ago - user namespaces
5 hours 56 min ago - yea
6 hours 22 min ago - One advantage with VMs
8 hours 50 min ago - about info
9 hours 23 min ago - info
9 hours 24 min ago - info
9 hours 25 min ago - info
9 hours 27 min ago - info
9 hours 28 min ago - abut info
9 hours 30 min ago
Featured Jobs
| Linux Systems Administrator | Houston and Austin, Texas | Host Gator |
| Senior Perl Developer | Austin, Texas | Host Gator |
| Technical Support Rep | Houston and Austin, Texas | Host Gator |
| UX Designer | Austin, Texas | Host Gator |
| Web & UI Developer (JavaScript & j Query) | Austin, Texas | Host Gator |
Free Webinar: Hadoop
How to Build an Optimal Hadoop Cluster to Store and Maintain Unlimited Amounts of Data Using Microservers
Realizing the promise of Apache® Hadoop® requires the effective deployment of compute, memory, storage and networking to achieve optimal results. With its flexibility and multitude of options, it is easy to over or under provision the server infrastructure, resulting in poor performance and high TCO. Join us for an in depth, technical discussion with industry experts from leading Hadoop and server companies who will provide insights into the key considerations for designing and deploying an optimal Hadoop cluster.
Some of key questions to be discussed are:
- What is the “typical” Hadoop cluster and what should be installed on the different machine types?
- Why should you consider the typical workload patterns when making your hardware decisions?
- Are all microservers created equal for Hadoop deployments?
- How do I plan for expansion if I require more compute, memory, storage or networking?




Comments
INSOMNIA_THE MIDNIGHT PROGRAMMING CONTEST
THE MIDNIGHT PROGRAMMING CONTEST...
www.insomnia.cognizance.org.in
Starts on : 27th March, 9:00 PM
Cash prizes worth Rs.30,000 on stake for this round.
(PS: Problems of previous rounds are available for practice.)
EOF character at Server?
I'm trying to build a server that will read on a string of characters, parse them and return an appropriate result to the client. The problem I have is that the application that will act as the client re-uses the same connection for all requests and there is no 'carriage return' or line feed at the end of each request, so my server does not know that the full request has been received and will just wait for an EOF character and hang.
I have re-created this scenario by building 2 client perl programs, 1 with the carriage return and 1 without.
As I have no control over how my application submits these strings I need to find a solution on the server side. The first 4 digits of each request string give the lentgh of the proceeding data, is there any way I can append and EOF character to the request data after I've received it on my server?
Client1:
$msg="00110100303C120";
$sock->send($msg);
Client2:
$msg="00110100303C120\n";
$sock->send($msg);
Server:
# While there is data to read from the connection
while (defined ($buf = <$new_sock>)) {
print $buf;
}
Thanks
Just read the first 4 bytes
Just read the first 4 bytes using:
read($new_sock, $length. 4);
then use the $length to read the actual data:
You might need to convert the $length data to actual decimal value if needed using unpack().
read($new_sock, $data, $length);
network programing with perl
hi,
i am a newbie in perl programing. i found this client-server program on the net and wanted to try it out. The client will simply connect to the server and send a line "hello there" to the server which will then print it out there.
############################ client ############################# #!/usr/bin/perl # client.plx use warnings; use strict; use IO::Socket; my $client = IO::Socket::INET->new( PeerAddr => 'localhost', PeerPort => '7890', Proto => 'tcp' )or die "could not create socket: $!\n"; print "hi\n"; print $client "Hello there!\n"; close $client; ###########################but the problem is that whenever i try to run the client, it says "could not create socket: Unkown error". the server runs perfectly. can someone pls point out the mistake here. btw i am currently referring "beginner's perl : simon cozens" and the client program given there are the same as above.
thank you.
I get the same error
I get the same error sometime, to solve it I need to enter in the actual IP address of my host instead of 'localhost', ie.:
PeerAddr => '127.0.0.1',
PeerPort => '7890',
Proto => 'tcp'
how to keep client session open in Perl?
I have a perl script while telnet to a remote machine from linux local machine, run commands, and return the results.
After the perl script is run completely, the telnet session is closed.
But, I want to keep the tenet session open. Can anyone tell me how to do it in Perl programs?
server2way.pl and client2way.pl
server2way.pl (Listing 5) and client2way.pl (Listing 6) works fine if both are ran on my pc but when I ran server2way.pl on another pc on the network (both Windows XP) I get this error on the client side:
no socket :Unknown error at client2way.pl line 14.
and this is line 14:
$sock or die "no socket :$!"; # Connect to server
I want to use this in our on going project.
Please help.
Network programming -
Few questions -
How do I know what ports (possible no of ports also) to use for the server and the client over TCP/IP, is there some range? We are using c++ for network/socket programming.
Thanks for your help.
Odd accept() behavior
I noticed this when I converted Listings 6 (client) and 8 (server) to use EOLN delimited IO
(to better examine the behavior of concurrent stream sessions). This was initially done
because Listing 8 did not wait for new sessions after the first was closed. After the 1st
client exited accept() would return undef until another request was queued but didn't block
while waiting for the queue event. Eventually I just wrapped the outer while() in another
"while( ; sleep 2)" to give myself time to check the socket queue and match
incoming requests to accept() results. This revealed yet more oddities. Note that the
'Listen' parameter is set to SOMAXCONN (128 for my RHEL box and perl 5.8.5) for both forms
of new() socket operators. Any ideas on the following 3 oddities?
- Using IO::Socket::INET sockets -- the third concurrent session request hangs unprocessed
until one of the previous [still open] sessions exit, ie., when more than 2 open sessions
exist accept() blocks until there is only 1 open session, then processes the next waiting
request as expected.
- Using IO::Socket::UNIX sockets -- many concurrent sessions can be opened but once any of
these are closed accept() hangs until all other sessions are closed, ie., if open sessions
exist and one is closed accept() blocks until all are closed, then processes request(s) --
but not as expected, see bullet 3 below.
- Using either form of sockets -- prior to opening any sessions accept() blocks, waits for
requests to queue, and processes the first queued request as expected, but subsequent calls
to accept() return undef unless another request is queued, ie., accept() behaves as if the
O_NONBLOCK bit is being automatically set on the original socket at or after the first call.
###################################################
## The Client
###################################################
#!/usr/bin/perl -w
use strict;
use IO::Socket;
#use Carp;
#use Data::Dumper;
# Domain sockets
my $sock = new IO::Socket::UNIX( Peer => '/tmp/mysock',
Type => SOCK_STREAM ) or die $!;
## IP sockets
#my $sock = new IO::Socket::INET( PeerAddr => 'localhost', PeerPort => '7890',
# Proto => 'tcp'); $sock or die "no socket :$!";
my $buf;
while( $buf = <> ) {
chomp $buf;
print $sock "$buf\n";
print "$0 ($$): ", scalar localtime(), " sent: [$buf]\n";
$buf = scalar <$sock>;
chomp $buf;
print "$0 ($$): ", scalar localtime(), " received: [$buf]\n";
}
close $sock;
###################################################
## The server
###################################################
#!/usr/bin/perl -w
use strict;
use IO::Socket;
use POSIX qw(:sys_wait_h);
#use Carp;
#use Data::Dumper;
sub REAP {
1 until( -1 == waitpid( -1, WNOHANG ) );
$SIG{CHLD} = \&REAP;
}
$SIG{CHLD} = \&REAP;
# Domain sockets
unlink '/tmp/mysock';
my $sock = new IO::Socket::UNIX( Local => '/tmp/mysock', Type => SOCK_STREAM,
Listen => SOMAXCONN, Reuse => 1 ) or die $!;
## IP sockets
#my $sock = new IO::Socket::INET( LocalHost => 'localhost', LocalPort => 7890,
# Proto => 'tcp', Listen => SOMAXCONN, Reuse => 1) or die $!;
STDOUT->autoflush(1);
my( $new_sock, $child, $buf );
while( 1 ) {
while( $new_sock = $sock->accept() ) {
if( $child = fork ) {
close $new_sock
} elsif( defined( $child ) ) {
close $sock;
while( defined( $buf = <$new_sock> ) ) {
chomp $buf;
print "$0 ($$): ", scalar localtime(), " received: [$buf]\n";
sleep 1;
print "$0 ($$): ", scalar localtime(), " sending: [$buf]\n";
print $new_sock "$buf\n";
}
exit
} else {
die "$0 ($$): fork: $!"
}
}
sleep 2
}
###################################################
## END
###################################################
Re: odd accept() behavior
BTY: no, it isn't the "while( defined( $buf = <$new_sock> ) )..." at line 32 of the server, where the child proc reads the copied socket. Yes, changing this to an if() will remove the behavior -- by enforcing line-only processing of the socket contents -- but this doesn't explain why the behavior only occurs when sessions=3 for IP sockets or when the first child exit occurs for Domain sockets.
clientfork.pl is not working on XP
hi there,
I'm trying to execute client fork.pl on my xp machine with both client and server running on the same machine but it doesn't seem to be working. when i enter input at client, it simply accepts the input and then nothing happens.
Can anybody help me with this.
Thanks in advance,
lakshmi.
Sending binay data to the server
Can the print statement be used to send binary data to the server? For example: to send the message to the server, you would have a statement PRINT $client $message.
If $message = 0xFF ;
what would be sent to the server? Is it the ASCII representation of the number 255? How can I send the 8-bit binary representation of the numner 255 and not one byte for 2, one byte for 5, and another byte for 5 ? Any help would be appreciated.
Thanks.
perl send binary through socket
You could use bytes module see http://perldoc.perl.org/bytes.html
Minor correction to server1.pl example
There is a minor error at the end of the server1.pl example:
# send them a message, close connection
print CLIENT "Hello from the server: ",
close CLIENT;
As stated, there is a write to closed socket error and no message passed to the client. One fix is to replace the "," with ";" on the print line.
Another fix
Another fix is to put this on the end of the line:
print CLIENT "Hello from the server: ", scalar localtime, "\n";
because on the response of the server to the client shows a time stamp.
Be care.
Another fix
Another fix is to put this on the end of the line:
print CLIENT "Hello from the server: ", scalar localtime, "\n";
because on the response of the server to the client shows a time stamp.
Be care.
A very good example set for
A very good example set for beginners. I am interested in knowing more about how I could use perl and start a program as server and which takes an input text from client and processes it and returns the result to client. Something using VEC and SELECT per commanda. I am woring on this code I have which uses all this. If you have any examples for that please let me know.
Thanks,
Absolute Good thing.. Thanks
Absolute Good thing.. Thanks for all the info presented.
Fork vs Thread
This tutorial was excelent. It was clear, concise, and informative. Although, I did have one question. What are the bennefits of using fork over thread? In most cases I know that creating a thread has most of the same bennefits of using fork but without the extra overhead. Why would one want to use fork in a web server as opposed to thread? Thanks!
Fantastic
I really got interested in learning network programming after looking in to this article. It is really great on you. Can you suggest us the sites used for learning in depth of network programming with the real time examples
great help
Hi, i have been looking around lately for some networking related tutorials and i admit that this place is actually exactly what i was looking for.
Thanks.
PS: Beginner in perl.
Re: Strictly On-Line: Network Programming with Perl
Hi James,
I'm very new to PERL. I want to know about socket programming in PERL. I have to make chat module in my site. where is any user want to chat with somebody then he/se can be able to send alert message to that perticular user. if he/she accept the request then new chat window should open both side without any page refreshment.
I hope your guidance will be important for me.
regards,
Bharat
Re: Strictly On-Line: Network Programming with Perl
a good guide to the world of the networks!
Re: Strictly On-Line: Network Programming with Perl
I was really in big trouble with perl' sockets programming, this tutorial was proved to be a big help for me to get stated writing programs that use sockets in perl.....thnx for such a nice tutorial...
Re: Strictly On-Line: Network Programming with Perl
Great article, most of it worked on my FBSD server to.
Thanks alot, keep up the good work.
- Stian
Re: Strictly On-Line: Network Programming with Perl
Hi James,
A very informative site. Also very elegantly written. Easy to understand and implement.
Was a big help to me.
Thanks a bunch.
Cheers,
Arun Krishnan
HI
Yes really Arun
I'm very new to this Socket programming in perl
Please let me know , if you are familiar with this
Thanks and regards
Jey
good job
Keep up the good job of showing a wonderful way to perl network programming beginners.
Hey! This one's simply too
Hey!
This one's simply too good...was yearning for something on networking concepts...couldn ask better than this one.
Lets keep the good work coming!
Best Regards,
Shraddha