<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3811456087481420306</id><updated>2011-12-25T08:19:02.083-08:00</updated><category term='Network'/><title type='text'>Linux System Administrator Resources</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3461394106330679949</id><published>2011-12-25T08:19:00.000-08:00</published><updated>2011-12-25T08:19:02.091-08:00</updated><title type='text'></title><content type='html'>"Automation is not luxury, it is required."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3461394106330679949?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3461394106330679949/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3461394106330679949' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3461394106330679949'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3461394106330679949'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2011/12/automation-is-not-luxury-it-is-required.html' title=''/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-8228308718780025338</id><published>2009-10-07T13:14:00.000-07:00</published><updated>2009-10-07T13:18:33.745-07:00</updated><title type='text'>PERL SOAP Programming Tutorial</title><content type='html'>&lt;a href="http://www.webmonkey.com/tutorial/Get_Your_Feet_Wet_With_SOAP"&gt;http://www.webmonkey.com/tutorial/Get_Your_Feet_Wet_With_SOAP&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.perl.com/pub/a/2001/01/soap.html"&gt;http://www.perl.com/pub/a/2001/01/soap.html&lt;/a&gt;&lt;br /&gt;&lt;h3&gt; &lt;span class="mw-headline"&gt;What Is SOAP?&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;SOAP, or the Simple Object Access Protocol, is a protocol designed to help web applications send messages to each other. It's got a very simple, portable structure, based on XML, and it can travel via HTTP, so it's lightweight and easy to implement, plus it's independent of language and platform. And thus the "Simple" part of the acronym, without which we'd now be learning about "OAP," which isn't nearly as puntastic. &lt;/p&gt;&lt;p&gt;Say this application you're writing needs to convert any European Economic Community currency to euros, and vice versa, at the current market rate. Your application can send a brief SOAP request to a server that does the calculation and returns a response, also in SOAP. &lt;/p&gt;&lt;p&gt;Why is this neat? Well, maybe your application is written in Java, and the server's doing its calculation in Perl. As long as they both use SOAP, the transaction is perfectly clean and simple. Also, if your application is running on a computer with web access, the SOAP messages can be sent via HTTP, through port 80. Using port 80 is nice because it doesn't require any extra setup, and any firewall sitting in the way assumes it's just more web traffic, and lets it through, without the long lines and cavity searches that often crop up if you set aside a dedicated port. Three, SOAP is an open protocol (consult the &lt;a href="http://www.w3.org/TR/soap12-part1/" class="external text" title="http://www.w3.org/TR/soap12-part1/" rel="nofollow"&gt;W3C's spec for SOAP 1.2&lt;/a&gt; for more). There are a number of freely downloadable SOAP client and server tools and libraries that can be bent to your needs. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="SOAPing_Up"&gt;&lt;/a&gt;&lt;h3&gt; &lt;span class="mw-headline"&gt;SOAPing Up&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;A SOAP message is no more and no less than an XML document, sent via some sort of transport protocol. HTTP is the most common way of sending SOAP messages, although SOAP is flexible enough to work with pretty much any transmission protocol you like. &lt;/p&gt;&lt;p&gt;In this tutorial, we're going to use SOAP::Lite, a set of Perl modules that makes dealing with SOAP a breeze. If you happen to dislike Perl, there are plenty of other implementations:&lt;a href="http://ws.apache.org/axis/" class="external text" title="http://ws.apache.org/axis/" rel="nofollow"&gt;Axis&lt;/a&gt;, which runs on Apache, &lt;a href="http://msdn.microsoft.com/en-us/magazine/cc164007.aspx" class="external text" title="http://msdn.microsoft.com/en-us/magazine/cc164007.aspx" rel="nofollow"&gt;Microsoft .NET SOAP&lt;/a&gt;, if you like Visual Basic or C#, or any of a &lt;a href="http://www.soapware.org/directory/4/implementations" class="external text" title="http://www.soapware.org/directory/4/implementations" rel="nofollow"&gt;hudred more&lt;/a&gt;. Or write your own. But here, today, we are using Perl. &lt;/p&gt;&lt;p&gt;So download and install SOAP::Lite. You can get SOAP::Lite from the developer's site, &lt;a href="http://www.soaplite.com/" class="external text" title="http://www.soaplite.com/" rel="nofollow"&gt;soaplite.com&lt;/a&gt;, or use CPAN to grab it automatically and take care of any dependency issues. You'll want to put it on your Web server as well as on the machine you're going to write a client application on. To install it from a command line, you can type ... &lt;/p&gt;  &lt;pre&gt; perl -MCPAN -e&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;... which will give you a CPAN shell, then ... &lt;/p&gt;  &lt;pre&gt; install SOAP::Lite&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;Follow the prompts, and soon enough you're all lathered up and ready to go. &lt;/p&gt;&lt;p&gt;SOAP::Lite requires MD5, XML::Parser, MIME::Lite, and MIME::Parser, which you probably have already if you have a relatively modern working Perl install. If not, CPAN's got 'em. &lt;/p&gt;&lt;p&gt;I'll wait here, blowing bubbles, until you've done that. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="Carving_A_Quick_SOAP_Server"&gt;&lt;/a&gt;&lt;h3&gt; &lt;span class="mw-headline"&gt;Carving A Quick SOAP Server&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;All set? Now we're going to put together a real quick SOAP server that will generate a (pseudo)random number between 1 and 10. All together now, in Perl: &lt;/p&gt;   &lt;pre&gt;  #!/usr/bin/perl -w&lt;br /&gt;use SOAP::Transport::HTTP;&lt;br /&gt;SOAP::Transport::HTTP::CGI&lt;br /&gt;   -&gt;dispatch_to('Random')&lt;br /&gt;   -&gt;handle;&lt;br /&gt;package Random;&lt;br /&gt;   sub choose {&lt;br /&gt;         $random = int(rand(9))+1;&lt;br /&gt;   return $random;&lt;br /&gt;   }&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;The second half of that script generates and returns a random number - the first half, with &lt;tt&gt;dispatch_to&lt;/tt&gt; and &lt;tt&gt;handle&lt;/tt&gt;, wraps the procedure in a SOAP bubble. In essence, it's telling the HTTP server that any calls that come in for Random should be sent to SOAP::Lite, via this script. &lt;/p&gt;&lt;p&gt;Save this script in your web server's cgi-bin directory, set its permissions so it's executable, and it's ready to go. Now let's write a corresponding client script to use it. &lt;/p&gt; &lt;pre&gt;#!/usr/bin/perl -w&lt;br /&gt;use SOAP::Lite;&lt;br /&gt;print SOAP::Lite&lt;br /&gt;-&gt; uri('http://myserver.com/Random')&lt;br /&gt;-&gt; proxy('http://myserver.com/cgi-bin/random.cgi')&lt;br /&gt;-&gt; Random()&lt;br /&gt;-&gt; result;&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;Quick, update your resume. You've built a complete web service using SOAP. Run that script, and voila! A random number, requested and delivered via SOAP, just for you. Let's take a quick look at how it does what it does. &lt;/p&gt; &lt;a name="What.27s_Happening.3F"&gt;&lt;/a&gt;&lt;h3&gt; &lt;span class="mw-headline"&gt;What's Happening?&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;When the client is run, it contacts the server via SOAP, gets a random number freshly generated for it, and outputs that number. The Perl modules are handling all the nasty behind-the-scenes work of creating HTTP headers and encoding XML schemas. &lt;/p&gt;&lt;p&gt;The &lt;tt&gt;proxy()&lt;/tt&gt; method points to the URL of the actual procedure you want to run on the server -- in this case, the script we just wrote. &lt;/p&gt;&lt;p&gt;It's not to be confused with &lt;tt&gt;uri()&lt;/tt&gt;, which is where the namespace of the server-side SOAP code is defined. The argument to the &lt;tt&gt;uri()&lt;/tt&gt; method looks like a URL, but it's not. The "http://" part of &lt;tt&gt;uri()&lt;/tt&gt;'s argument specifies the transport protocol; the server name is the server name, right; and then the class to be invoked is last. There isn't a directory called Random on the server. &lt;/p&gt;&lt;p&gt;What's happening behind the scenes is this:The client script sends a SOAP payload to the server via HTTP. This message consists of an HTTP header followed by a SOAP envelope generated by the Perl module. &lt;/p&gt;&lt;p&gt;What the client sends to the server actually looks something like this: &lt;/p&gt;   &lt;pre&gt;  POST /random.cgi HTTP/1.1&lt;br /&gt;Content-Type:text/xml; charset="utf-8"&lt;br /&gt;Content-Length:124&lt;br /&gt;&lt;br /&gt;   &lt;s:envelope s="http://www.w3.org/2001/12/soap-envelope" xsi="http://www.w3.org/2001/XMLSchema-instance" xsd="http://www.w3.org/2001/XMLSchema"&gt;&lt;br /&gt;       &lt;s:body&gt;&lt;br /&gt;          &lt;m:random m="urn:Random"&gt;&lt;br /&gt;  &lt;/m:random&gt;&lt;br /&gt;       &lt;/s:body&gt;&lt;br /&gt;   &lt;/s:envelope&gt;&lt;br /&gt;  &lt;/pre&gt; &lt;p&gt;The "xmlns" lines declare default namespaces, whose purpose is to ensure that there's no conflict between the envelope we're creating and another one somewhere that might use the same name. We're referring to predefined namespaces for our schema and envelope, ones that are just sitting there on the W3C's machines waiting to be used. But this is the aspect that SOAP::Lite takes care of for you, so understanding it is secondary for the time being. Again, the &lt;a href="http://www.w3.org/TR/soap12-part1/" class="external text" title="http://www.w3.org/TR/soap12-part1/" rel="nofollow"&gt;W3C specification&lt;/a&gt; explains it all in great detail. &lt;/p&gt; &lt;a name="Seeing_the_SOAP_Light"&gt;&lt;/a&gt;&lt;h3&gt; &lt;span class="mw-headline"&gt;Seeing the SOAP Light&lt;/span&gt;&lt;/h3&gt; SOAP::Lite has a lot of tricks up its sleeve. For example, if you're going to be making a whole bunch of remote function calls, there's an easier way than sending each one on its way with &lt;pre&gt;dispatch_to()&lt;/pre&gt;. If you initialize the module in your script with ...   &lt;pre&gt;  use SOAP::Lite +autodispatch =&gt;&lt;br /&gt;    uri =&gt;  'http://myserver.com/Random'&lt;br /&gt;    proxy =&gt; 'http://myserver.com/cgi-bin/random.cgi'&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;... then any time your script calls an undefined method, the call will be autodispatched via SOAP to the proxy you specify. &lt;/p&gt;&lt;p&gt;There is a lot more to SOAP, and SOAP::Lite, but you're on your way, so I won't slow you down. For information about error handling techniques, passing complex information and objects back and forth, and suchlike, there is a bunch of useful documentation to be found at &lt;a href="http://cookbook.soaplite.com/" class="external text" title="http://cookbook.soaplite.com/" rel="nofollow"&gt;cookbook.soaplite.com&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;If you need ideas or inspiration, &lt;a href="http://xmethods.com/" class="external text" title="http://xmethods.com/" rel="nofollow"&gt;XMethods.com&lt;/a&gt; has a useful and entertaining collection of web services you can check out and use.  &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-8228308718780025338?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/8228308718780025338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=8228308718780025338' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8228308718780025338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8228308718780025338'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/10/perl-soap-programming-tutorial.html' title='PERL SOAP Programming Tutorial'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-9014491791773346005</id><published>2009-10-07T09:03:00.001-07:00</published><updated>2009-10-07T09:03:48.524-07:00</updated><title type='text'>Network Security Scan</title><content type='html'>&lt;a href="http://www.openvas.org/index.html"&gt;http://www.openvas.org/index.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-9014491791773346005?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/9014491791773346005/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=9014491791773346005' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/9014491791773346005'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/9014491791773346005'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/10/network-security-scan.html' title='Network Security Scan'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3410873664660837701</id><published>2009-09-22T10:44:00.000-07:00</published><updated>2009-09-22T10:45:40.069-07:00</updated><title type='text'>Configure DHCP with LDAP</title><content type='html'>&lt;pre&gt;&lt;a href="http://wiki.github.com/dcantrell/ldap-for-dhcp"&gt;http://wiki.github.com/dcantrell/ldap-for-dhcp&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.grotan.com/ldap/dhcp-ldap-readme"&gt;http://www.grotan.com/ldap/dhcp-ldap-readme&lt;/a&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3410873664660837701?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3410873664660837701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3410873664660837701' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3410873664660837701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3410873664660837701'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/09/configure-dhcp-with-ldap.html' title='Configure DHCP with LDAP'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7198225092810029736</id><published>2009-09-16T08:59:00.000-07:00</published><updated>2009-09-16T09:00:10.532-07:00</updated><title type='text'>Look at Black listed IPs</title><content type='html'>&lt;a href="http://www.backscatterer.org/"&gt;http://www.backscatterer.org/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7198225092810029736?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7198225092810029736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7198225092810029736' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7198225092810029736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7198225092810029736'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/09/look-at-black-listed-ips.html' title='Look at Black listed IPs'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7197105653183498153</id><published>2009-09-04T08:17:00.000-07:00</published><updated>2009-09-04T08:18:06.820-07:00</updated><title type='text'>How to unregister/register System from RedHat Satellite Server</title><content type='html'>http://kbase.redhat.com/faq/docs/DOC-8037&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7197105653183498153?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7197105653183498153/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7197105653183498153' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7197105653183498153'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7197105653183498153'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/09/how-to-unregisterregister-system-from.html' title='How to unregister/register System from RedHat Satellite Server'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-646730715979838421</id><published>2009-08-03T08:03:00.000-07:00</published><updated>2009-08-03T08:04:03.340-07:00</updated><title type='text'>How to sign your custom RPM package with GPG Key</title><content type='html'>&lt;a href="http://fedoranews.org/tchung/gpg/"&gt;http://fedoranews.org/tchung/gpg/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-646730715979838421?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/646730715979838421/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=646730715979838421' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/646730715979838421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/646730715979838421'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/08/how-to-sign-your-custom-rpm-package.html' title='How to sign your custom RPM package with GPG Key'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-4622095375203375787</id><published>2009-07-16T07:35:00.000-07:00</published><updated>2009-07-16T07:42:24.988-07:00</updated><title type='text'>Problems &amp;&amp; Solutions</title><content type='html'>&lt;ol&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Problem:&lt;/span&gt; &lt;span style="font-size:85%;"&gt;ssh login to one of the server was taking a long time (almost minutes). &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt; &lt;span style="font-size:85%;"&gt;The problem was solved by adding following lines at &lt;span style="font-weight: bold; font-style: italic;"&gt;/etc/ssh/sshd_config&lt;/span&gt;:&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;           &lt;span style="font-size:85%;"&gt;             UseDNS no&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-4622095375203375787?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/4622095375203375787/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=4622095375203375787' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4622095375203375787'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4622095375203375787'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/07/problems-solutions.html' title='Problems &amp;&amp; Solutions'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-8461381978375008337</id><published>2009-06-12T09:13:00.001-07:00</published><updated>2009-06-12T09:13:59.218-07:00</updated><title type='text'>What is running on port?</title><content type='html'>lsof -ni udp:161&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-8461381978375008337?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/8461381978375008337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=8461381978375008337' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8461381978375008337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8461381978375008337'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/06/what-is-running-on-port.html' title='What is running on port?'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-4170512611021254444</id><published>2009-06-08T11:23:00.000-07:00</published><updated>2009-06-08T11:24:03.929-07:00</updated><title type='text'>View actual physical memory usage on Linux</title><content type='html'>&lt;strong&gt;free&lt;/strong&gt; &lt;p&gt;free command displays amount of total, free and used physical memory (RAM) in the &lt;a id="KonaLink4" target="undefined" class="kLink" style="text-decoration: underline ! important; position: static;" href="http://www.mydigitallife.info/2007/09/24/how-to-check-memory-usage-in-linux-based-server/#"&gt;&lt;span style="color: blue ! important; font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;Bitstream Vera Sans&amp;quot;,Verdana,Arial,&amp;quot;Lucida Sans&amp;quot;,&amp;quot;Lucida Sans Unicode&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static;color:blue;" &gt;&lt;span class="kLink" style="border-bottom: 1px solid blue; color: blue ! important; font-family: &amp;quot;Trebuchet MS&amp;quot;,&amp;quot;Bitstream Vera Sans&amp;quot;,Verdana,Arial,&amp;quot;Lucida Sans&amp;quot;,&amp;quot;Lucida Sans Unicode&amp;quot;,Helvetica,sans-serif; font-weight: 400; font-size: 13px; position: static; background-color: transparent;"&gt;system&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;, as well as shoing information on shared memory, buffers, cached memory and swap space used by the Linux kernel.&lt;/p&gt; &lt;p&gt;&lt;em&gt;Syntax of free&lt;/em&gt;&lt;/p&gt; &lt;p&gt;free -[options]&lt;/p&gt; &lt;p&gt;&lt;em&gt;Example usage of free&lt;/em&gt;&lt;/p&gt; &lt;p&gt;free -m&lt;/p&gt; &lt;p&gt;The command will display information about physical memory in MB. &lt;/p&gt; &lt;p&gt;free -m -s 5&lt;/p&gt; &lt;p&gt;The command will activate continuous polling delay at 5 seconds apart, and then display memory status in megabytes on terminal. Any floating point number for delay can be specified.&lt;/p&gt; &lt;p&gt;free -t -m&lt;/p&gt; &lt;p&gt;Same with “free -m”, but -t switch will display a line containing the totals of physical memory and swap space.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-4170512611021254444?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/4170512611021254444/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=4170512611021254444' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4170512611021254444'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4170512611021254444'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/06/view-actual-physical-memory-usage-on.html' title='View actual physical memory usage on Linux'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-6111953209638109178</id><published>2009-06-05T10:42:00.000-07:00</published><updated>2009-06-05T10:43:47.004-07:00</updated><title type='text'>Passwordless ssh login</title><content type='html'>&lt;dl&gt;&lt;dt&gt;&lt;a name="1_Generate_keys"&gt;1 Generate keys&lt;/a&gt;&lt;/dt&gt;&lt;dd&gt; &lt;p&gt;Type:&lt;/p&gt;  &lt;pre&gt;   ssh-keygen -t rsa&lt;/pre&gt;  &lt;p&gt;And do not enter a passphrase unless you wanted to be prompted for one during file copying.&lt;/p&gt;  &lt;p&gt;Here is what you will see:&lt;/p&gt;  &lt;pre&gt;   $ ssh-keygen -t rsa&lt;br /&gt;  Generating public/private rsa key pair.&lt;br /&gt;  Enter file in which to save the key (/home/User/.ssh/id_rsa):&lt;br /&gt;  Enter passphrase (empty for no passphrase):&lt;br /&gt;&lt;br /&gt;  Enter same passphrase again:&lt;br /&gt;&lt;br /&gt;  Your identification has been saved in /home/User/.ssh/id_rsa.&lt;br /&gt;  Your public key has been saved in /home/User/.ssh/id_rsa.pub.&lt;br /&gt;  The key fingerprint is:&lt;br /&gt;  5a:cd:2b:0a:cd:d9:15:85:26:79:40:0c:55:2a:f4:23 User@JEFF-CPU&lt;/pre&gt;  &lt;/dd&gt;&lt;dt&gt;&lt;a name="2"&gt;&lt;/a&gt;&lt;a name="2_Copy_public_to_machines_you_want_to_upload_to"&gt;2 Copy public to machines you want to upload to&lt;/a&gt;&lt;/dt&gt;&lt;dd&gt; &lt;p&gt;&lt;code&gt;id_rsa.pub&lt;/code&gt; is your public key. Copy it to &lt;code&gt;~/.ssh&lt;/code&gt; on target machine.&lt;/p&gt;  &lt;p&gt;Put a copy of the public key file on each machine you want to log into. Name the copy &lt;code&gt;authorized_keys&lt;/code&gt; (some implementations name this file &lt;code&gt;authorized_keys2&lt;/code&gt;)&lt;/p&gt;  &lt;p&gt;Then type:&lt;/p&gt;  &lt;pre&gt;     chmod 600 authorized_keys&lt;/pre&gt;  &lt;p&gt;Then make sure your home dir on the remote machine is not group or world writeable.&lt;/p&gt; &lt;/dd&gt;&lt;/dl&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-6111953209638109178?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/6111953209638109178/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=6111953209638109178' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6111953209638109178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6111953209638109178'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/06/passwordless-ssh-login.html' title='Passwordless ssh login'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-4082800920604632678</id><published>2009-06-03T13:10:00.000-07:00</published><updated>2009-06-03T13:41:08.005-07:00</updated><title type='text'>Keeping a Log Of Daily Network Traffic for ADSL or Dedicated Remote Linux Server</title><content type='html'>&lt;div style="float: right; margin-top: 0px; margin-left: 5px;"&gt;&lt;a href="http://www.cyberciti.biz/tips/category/networking" title="See all Linux/UNIX networking related tips/articles"&gt;&lt;img src="http://figs.cyberciti.biz/3rdparty/networking.png" border="0" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;p&gt;Almost a year ago, I wrote about &lt;a href="http://www.cyberciti.biz/nixcraft/linux/docs/uniqlinuxfeatures/mrtg/"&gt;Linux MRTG configuration&lt;/a&gt; how-to. However, some user seems to confused with MRTG, most users would like to know - how much traffic actually generated by ADSL/Cable service provider on daily and monthly basis.&lt;/p&gt; &lt;p&gt;MRTG is for network monitoring and it can be use to see how much traffic your server or ADSL router actually generated, however it will not tell you how much megabytes or gigabytes the daily traffic was. For all such home user and people having dedicated single Linux box hosted somewhere remote at IDC/ISP there is a tool called vnStat:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;It is a console-base network traffic monitor for Linux (perfect tool for remote Linux box hosted at ISP) &lt;/li&gt;&lt;li&gt;It keeps a log of daily and monthly network traffic for the selected network interface(s).&lt;/li&gt;&lt;li&gt;It collects all data from /proc file system it means normal user can monitor traffic (no need to run vnstat as a root user)&lt;/li&gt;&lt;li&gt;Easy to setup &amp;amp; configure&lt;/li&gt;&lt;li&gt;Ease of use &lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;Step # 1: Install vnstat&lt;/h2&gt; &lt;p&gt;Debian / Ubuntu Linux user can install vnstat using apt-get command, enter:&lt;/p&gt; &lt;pre&gt;# apt-get install vnstat &lt;/pre&gt; &lt;h2&gt;Step # 2: Enable vnstat&lt;/h2&gt; &lt;p&gt;Once installed, you need to create a database with the following command:&lt;/p&gt; &lt;pre&gt;# vnstat -u -i eth0&lt;/pre&gt; &lt;p&gt;Where,&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;strong&gt;-u&lt;/strong&gt; :forces a database update for interface or creates the database if it doesn’t exist&lt;/li&gt;&lt;li&gt;&lt;strong&gt;-i eth0&lt;/strong&gt; : use to specify interface&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Please note that it will start to collect data via cronjob:&lt;/p&gt; &lt;pre&gt;0-55/5 * * * *   root    /usr/bin/vnstat -u&lt;/pre&gt; &lt;p&gt;You do not have to install cronjob yourself; it should be automatically configure by apt-get.&lt;/p&gt; &lt;h2&gt;Step # 3 View statistics&lt;/h2&gt; &lt;p&gt;Display default traffic statistics&lt;/p&gt; &lt;pre&gt;$ vnstat&lt;/pre&gt; &lt;p&gt;Display daily traffic statistics&lt;/p&gt; &lt;pre&gt;$ vnstat -d&lt;/pre&gt; &lt;p&gt;&lt;br /&gt;Display monthly traffic statistics:&lt;/p&gt; &lt;pre&gt;$ vnstat -m&lt;/pre&gt; &lt;p&gt;Display all time top10 traffic days:&lt;/p&gt; &lt;pre&gt;$ vnstat -t &lt;/pre&gt; &lt;p&gt;&lt;br /&gt;Try help option to get all query options:&lt;/p&gt; &lt;pre&gt;$ vnstat --help&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Source:- &lt;a href="http://www.cyberciti.biz/tips/keeping-a-log-of-daily-network-traffic-for-adsl-or-dedicated-remote-linux-box.html"&gt;http://www.cyberciti.biz/tips/keeping-a-log-of-daily-network-traffic-for-adsl-or-dedicated-remote-linux-box.html&lt;/a&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-4082800920604632678?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/4082800920604632678/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=4082800920604632678' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4082800920604632678'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4082800920604632678'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/06/keeping-log-of-daily-network-traffic.html' title='Keeping a Log Of Daily Network Traffic for ADSL or Dedicated Remote Linux Server'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-5455755560245343161</id><published>2009-06-03T13:05:00.000-07:00</published><updated>2009-06-03T13:41:46.493-07:00</updated><title type='text'>Linux display bandwidth usage on network interface by host</title><content type='html'>iftop command listens to network traffic on a named network interface, or on the first interface it can find which looks like an external interface if none is specified, and displays a table of current bandwidth usage by pairs of hosts. iftop is a perfect tool for remote Linux server over ssh session. &lt;p&gt;iftop must be run by the root or the user who has sufficient permissions to monitor all network traffic on the network interface.&lt;/p&gt; &lt;p&gt;Type iftop command at tge shell prompt to display traffic:&lt;br /&gt;&lt;code&gt;# iftop&lt;/code&gt;&lt;br /&gt;&lt;a href="http://www.cyberciti.biz/nixcraft/vivek/blogger/uploaded_images/iptop-command-output-787803.png"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;However, iftop works best when you use filters. For example, if you want to find out how much bandwidth users are wasting or trying to figure out why the network is slow,&lt;br /&gt;&lt;code&gt;# iftop -f icmp&lt;/code&gt;&lt;br /&gt;You can display  or analyses packet flowing in and out of the 192.168.1.0/24 network:&lt;br /&gt;&lt;code&gt;# iftop -F 192.168.1.0/24&lt;/code&gt;&lt;br /&gt;Disable output for  DNS traffic by using filter code such as:&lt;br /&gt;&lt;code&gt;# iftop -f 'not port domain'&lt;/code&gt;&lt;/p&gt; &lt;p&gt;iftop has many options read man page for further  information.&lt;/p&gt;&lt;p&gt;Source: &lt;a href="http://www.cyberciti.biz/tips/linux-display-bandwidth-usage-on-network-interface-by-host.html"&gt;http://www.cyberciti.biz/tips/linux-display-bandwidth-usage-on-network-interface-by-host.html&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-5455755560245343161?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/5455755560245343161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=5455755560245343161' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/5455755560245343161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/5455755560245343161'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/06/linux-display-bandwidth-usage-on.html' title='Linux display bandwidth usage on network interface by host'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-9040879887360275358</id><published>2009-06-03T11:02:00.000-07:00</published><updated>2009-06-03T11:04:46.432-07:00</updated><title type='text'>Restricting Weak SSL Ciphers, F5 BigIP</title><content type='html'>&lt;h2&gt; &lt;span class="mw-headline"&gt; v9.x Software &lt;/span&gt;&lt;/h2&gt; &lt;p&gt;&lt;span style="font-size:78%;"&gt;SSL functions are performed and configured using SSL client and server profiles. Replace the &lt;i&gt;clientssl&lt;/i&gt; parameter to &lt;i&gt;serverssl&lt;/i&gt; to configure server SSL profiles. &lt;/span&gt;&lt;/p&gt; &lt;span style="font-size:78%;"&gt;&lt;a name="Using_the_GUI_2" id="Using_the_GUI_2"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h3&gt; &lt;span class="mw-headline"  style="font-size:78%;"&gt; &lt;a href="http://www.routerzone.eu/wiki/index.php/File:Applications-internet2-small.png" class="image" title="Image:Applications-internet2-small.png"&gt;&lt;img alt="Image:Applications-internet2-small.png" src="http://www.routerzone.eu/wiki/images/f/fa/Applications-internet2-small.png" width="16" border="0" height="16" /&gt;&lt;/a&gt; Using the GUI &lt;/span&gt;&lt;/h3&gt; &lt;div class="floatright"&gt;&lt;span style="font-size:78%;"&gt;&lt;a href="http://www.routerzone.eu/wiki/index.php/File:V9-Weak-SSL-Ciphers.png" class="image" title="V9-Weak-SSL-Ciphers.png"&gt;&lt;img alt="" src="http://www.routerzone.eu/wiki/images/b/bc/V9-Weak-SSL-Ciphers.png" width="442" border="0" height="418" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="font-size:78%;"&gt;Assuming you use it as the parent profile, modify the built in &lt;i&gt;&lt;b&gt;clientssl&lt;/b&gt;&lt;/i&gt; profile cipher list as follows; &lt;/span&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-size:78%;"&gt;Browse to Local TrafficProfilesSSLClient &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:78%;"&gt;Select the &lt;i&gt;&lt;b&gt;clientssl&lt;/b&gt;&lt;/i&gt; profile &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:78%;"&gt;Select ConfigurationAdvanced &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:78%;"&gt;Enter the following in the Ciphers text box: &lt;b&gt;-ALL:!ADH:!LOW:!EXP:!SSLv2:!NULL:RC4:RSA:HIGH:MEDIUM&lt;/b&gt;&lt;/span&gt; &lt;/li&gt;&lt;li&gt;&lt;span style="font-size:78%;"&gt;Click Update &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;b&gt;All profiles using the &lt;/b&gt;&lt;i&gt;clientssl&lt;/i&gt;&lt;b&gt; parent profile are automatically updated. &lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;Profiles not using this parent profile will have to be manually updated, selecting the relevant profile at step 2. &lt;/span&gt;&lt;/p&gt; &lt;span style="font-size:78%;"&gt;&lt;a name="Using_the_CLI_2" id="Using_the_CLI_2"&gt;&lt;/a&gt;&lt;/span&gt;&lt;h3&gt; &lt;span class="mw-headline"  style="font-size:78%;"&gt; &lt;a href="http://www.routerzone.eu/wiki/index.php/File:Utilities-terminal-small.png" class="image" title="Image:Utilities-terminal-small.png"&gt;&lt;img alt="Image:Utilities-terminal-small.png" src="http://www.routerzone.eu/wiki/images/b/b6/Utilities-terminal-small.png" width="16" border="0" height="16" /&gt;&lt;/a&gt; Using the &lt;a href="http://www.routerzone.eu/wiki/index.php/CLI" title="CLI"&gt;CLI&lt;/a&gt; &lt;/span&gt;&lt;/h3&gt; &lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;b&gt;bigpipe profile clientssl&lt;/b&gt; &lt;i&gt;clientssl&lt;/i&gt; \{ &lt;b&gt;ciphers&lt;/b&gt; &lt;i&gt;\-ALL:\!ADH:\!LOW:\!EXP:\!SSLv2:RC4:RSA:HIGH:MEDIUM\&lt;/i&gt; \}&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:78%;"&gt;Source:- &lt;a href="http://www.routerzone.eu/wiki/index.php/Restricting_Weak_SSL_Ciphers,_F5_BigIP"&gt;http://www.routerzone.eu/wiki/index.php/Restricting_Weak_SSL_Ciphers,_F5_BigIP&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-9040879887360275358?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/9040879887360275358/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=9040879887360275358' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/9040879887360275358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/9040879887360275358'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/06/restricting-weak-ssl-ciphers-f5-bigip.html' title='Restricting Weak SSL Ciphers, F5 BigIP'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-6045386626015350945</id><published>2009-05-12T12:33:00.001-07:00</published><updated>2009-05-12T12:33:46.905-07:00</updated><title type='text'>nmap : scan a subnet for active IPs</title><content type='html'>&lt;p&gt;# nmap -sP 192.168.0.0/24&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-6045386626015350945?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/6045386626015350945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=6045386626015350945' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6045386626015350945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6045386626015350945'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/05/nmap-scan-subnet-for-active-ips.html' title='nmap : scan a subnet for active IPs'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-848132007508374284</id><published>2009-05-04T08:38:00.000-07:00</published><updated>2009-05-04T08:40:03.768-07:00</updated><title type='text'>To test packet lost</title><content type='html'>#mtr -r -c 10 myhost.mydomain.com&lt;br /&gt;HOST: xxxxx.xxx.xxx Loss%   Snt   Last   Avg  Best  Wrst StDev&lt;br /&gt;  1. xxxxxxxx               0.0%    10    0.2   0.2   0.2   0.3   0.0&lt;br /&gt;  2. xxxxxxxx               0.0%    10    0.6   1.4   0.5   9.2   2.8&lt;br /&gt;  3. xxxxxxxx               0.0%    10    2.6   1.2   0.6   3.1   1.0&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-848132007508374284?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/848132007508374284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=848132007508374284' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/848132007508374284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/848132007508374284'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/05/to-test-packet-lost.html' title='To test packet lost'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3453186722418016231</id><published>2009-04-05T10:11:00.000-07:00</published><updated>2009-04-05T10:12:42.350-07:00</updated><title type='text'>Generating a syslog message</title><content type='html'>#logger -i -t yourname "This is a test"&lt;br /&gt;&lt;br /&gt;=&gt; Message should appear at /var/log/messages.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3453186722418016231?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3453186722418016231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3453186722418016231' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3453186722418016231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3453186722418016231'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/04/generating-syslog-message.html' title='Generating a syslog message'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-404635822536453373</id><published>2009-04-02T11:50:00.000-07:00</published><updated>2009-04-02T11:52:28.963-07:00</updated><title type='text'>MySQL: show disk space occupied by database</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:arial;"&gt;#mysql -uroot -p -D &lt;database&gt; -e "show table status\G"| egrep "(Index|Data)_length" | awk 'BEGIN { rsum = 0 } { rsum += $2 } END { print rsum/1024/1024 "M"}'&lt;/database&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-404635822536453373?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/404635822536453373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=404635822536453373' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/404635822536453373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/404635822536453373'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/04/mysql-show-disk-space-occupied-by.html' title='MySQL: show disk space occupied by database'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-9045734948456960004</id><published>2009-02-03T09:01:00.000-08:00</published><updated>2009-02-03T09:02:32.680-08:00</updated><title type='text'>rpmdb: Lock table is out of available locker entries</title><content type='html'>&lt;div class="post"&gt;     &lt;h2&gt;&lt;a href="http://rackerhacker.com/2007/05/27/rpmdb-lock-table-is-out-of-available-locker-entries/" rel="bookmark" title="rpmdb: Lock table is out of available locker entries"&gt;rpmdb: Lock table is out of available locker entries&lt;/a&gt;&lt;/h2&gt;     &lt;div class="postmetadata"&gt;05.27.2007 | Author: &lt;a href="http://rackerhacker.com/author/majorhayden/"&gt;major&lt;/a&gt; | Posted in Uncategorized&lt;/div&gt;     &lt;div class="entry"&gt;       &lt;p&gt;If up2date throws some horrible Python errors and rpm says “rpmdb: Lock table is out of available locker entries”, you can restore your system to normality with the following:&lt;/p&gt; &lt;p&gt;The errors:&lt;br /&gt;&lt;code&gt;rpmdb: Lock table is out of available locker entries&lt;br /&gt;error: db4 error(22) from db-&gt;close: Invalid argument&lt;br /&gt;error: cannot open Packages index using db3 - Cannot allocate memory (12)&lt;br /&gt;error: cannot open Packages database in /var/lib/rpm&lt;/code&gt;&lt;/p&gt; &lt;p&gt;Make a backup of /var/lib/rpm in case you break something:&lt;br /&gt;&lt;code&gt;tar cvzf rpmdb-backup.tar.gz /var/lib/rpm&lt;/code&gt;&lt;/p&gt; &lt;p&gt;Remove the Berkeley databases that rpm uses:&lt;br /&gt;&lt;code&gt;rm /var/lib/rpm/__db.00*&lt;/code&gt;&lt;/p&gt; &lt;p&gt;Make rpm rebuild the databases from scratch (may take a short while):&lt;br /&gt;&lt;code&gt;rpm --rebuilddb&lt;/code&gt;&lt;/p&gt; &lt;p&gt;Now, check rpm to make sure everything is okay:&lt;br /&gt;&lt;code&gt;rpm -qa | sort&lt;/code&gt;&lt;/p&gt; &lt;p&gt;&lt;b&gt;Why does this happen?&lt;/b&gt;&lt;br /&gt;When rpm accesses the Berkeley database files, it makes temporary locker entries within the tables while it searches for data. If you control-c your rpm processes often, this issue will occur much sooner because the locks are never cleared.&lt;/p&gt;     &lt;/div&gt;        &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-9045734948456960004?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/9045734948456960004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=9045734948456960004' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/9045734948456960004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/9045734948456960004'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/02/rpmdb-lock-table-is-out-of-available.html' title='rpmdb: Lock table is out of available locker entries'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-4403257929116757777</id><published>2009-01-24T12:02:00.000-08:00</published><updated>2009-01-24T12:03:29.416-08:00</updated><title type='text'>Find out  who are recently logged on to your linux system</title><content type='html'>utmpdump /var/log/wtmp | less&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-4403257929116757777?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/4403257929116757777/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=4403257929116757777' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4403257929116757777'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4403257929116757777'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/01/find-out-who-are-recently-logged-on-to.html' title='Find out  who are recently logged on to your linux system'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3410268888325945463</id><published>2009-01-22T12:12:00.000-08:00</published><updated>2009-01-22T12:14:40.685-08:00</updated><title type='text'>PHP + LDAP Tutorial</title><content type='html'>&lt;a href="http://us.php.net/manual/en/ldap.examples-basic.php"&gt;http://us.php.net/manual/en/ldap.examples-basic.php&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3410268888325945463?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3410268888325945463/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3410268888325945463' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3410268888325945463'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3410268888325945463'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/01/php-ldap-tutorial.html' title='PHP + LDAP Tutorial'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3335425147314650730</id><published>2009-01-12T11:37:00.000-08:00</published><updated>2009-01-12T11:38:30.094-08:00</updated><title type='text'>Installing kernel-debuginfo on RHEL 5.2</title><content type='html'>&lt;pre class="codeblock"&gt;#yum --enablerepo=rhel-debuginfo install kernel-debuginfo&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3335425147314650730?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3335425147314650730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3335425147314650730' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3335425147314650730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3335425147314650730'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/01/installing-kernel-debuginfo-on-rhel-52.html' title='Installing kernel-debuginfo on RHEL 5.2'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-4064979571637170115</id><published>2009-01-08T13:53:00.000-08:00</published><updated>2009-01-08T13:54:21.171-08:00</updated><title type='text'>Finding Version of linux installed</title><content type='html'>&lt;pre class="bbcodeblock" dir="ltr" style="border: 1px inset ; margin: 0px -99999px 0px 0px; padding: 3px; overflow: auto; width: 98%; height: 34px; text-align: left;"&gt;#cat /etc/*release&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-4064979571637170115?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/4064979571637170115/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=4064979571637170115' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4064979571637170115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4064979571637170115'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/01/finding-version-of-linux-installed.html' title='Finding Version of linux installed'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-78917569652392294</id><published>2009-01-08T12:29:00.000-08:00</published><updated>2009-01-08T13:55:09.339-08:00</updated><title type='text'>Starting virtual server in a single user mode</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;From root domain:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;#xm create &lt;domain-name&gt;{domain-name} -c&lt;br /&gt;              &lt;span style="font-size:78%;"&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Example:-&lt;/span&gt;&lt;/span&gt; &lt;span style="font-size:85%;"&gt;xm create rhel5b2-pv2 -c&lt;br /&gt;&lt;br /&gt;-&gt; follow the same steps to boot in single user mode  as usual.&lt;br /&gt;&lt;/span&gt;&lt;/domain-name&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-78917569652392294?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/78917569652392294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=78917569652392294' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/78917569652392294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/78917569652392294'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2009/01/starting-virtual-server-in-single-user.html' title='Starting virtual server in a single user mode'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-1653191636952196466</id><published>2008-12-16T07:22:00.000-08:00</published><updated>2009-04-22T07:04:38.277-07:00</updated><title type='text'>Displaying Total hard disk size (in Linux)</title><content type='html'>&lt;h3&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;[root@test4 ~]# fdisk -l  | grep Disk&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: normal;"&gt;Disk /dev/hda: 60.0 GB, 60022480896 bytes&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: normal;"&gt;Disk /dev/hdb: 200.0 GB, 200049647616 bytes&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/h3&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-1653191636952196466?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/1653191636952196466/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=1653191636952196466' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/1653191636952196466'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/1653191636952196466'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/12/displaying-total-hard-disk-size-in.html' title='Displaying Total hard disk size (in Linux)'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-612010135418909701</id><published>2008-11-21T07:45:00.000-08:00</published><updated>2008-11-21T07:46:08.690-08:00</updated><title type='text'>XEN Virtualization Tutorial</title><content type='html'>http://www.linuxtopia.org/online_books/rhel5/rhel5_xen_virtualization/rhel5_ch-virt-system-architect.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-612010135418909701?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/612010135418909701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=612010135418909701' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/612010135418909701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/612010135418909701'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/11/xen-virtualization-tutorial.html' title='XEN Virtualization Tutorial'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-4211526598715265168</id><published>2008-10-23T11:35:00.001-07:00</published><updated>2008-10-23T11:35:54.387-07:00</updated><title type='text'>RFC Search URL</title><content type='html'>&lt;span style="font-style: italic;"&gt;http://www.rfc-editor.org/&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-4211526598715265168?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/4211526598715265168/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=4211526598715265168' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4211526598715265168'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/4211526598715265168'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/rfc-search-url.html' title='RFC Search URL'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-5602325910558185649</id><published>2008-10-22T11:46:00.000-07:00</published><updated>2008-10-22T11:49:43.014-07:00</updated><title type='text'>System Configuration</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Sharing Mouse and Keyboard between two systems&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;URL: &lt;/span&gt;&lt;span style="font-style: italic;"&gt;http://synergy2.sourceforge.net&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-5602325910558185649?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/5602325910558185649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=5602325910558185649' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/5602325910558185649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/5602325910558185649'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/system-configuration.html' title='System Configuration'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7313625125989071309</id><published>2008-10-22T08:32:00.000-07:00</published><updated>2008-10-22T08:35:13.554-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Network'/><title type='text'>Network Related Tools</title><content type='html'>&lt;h3 class="r"&gt;&lt;a href="http://www.nessus.org/" class="l" onmousedown="return rwt(this,'','','res','1','AFQjCNFZ8qu99RtILjYvS9M3HjiaeVI6Jg','&amp;sig2=3kn36ZcDtODFW6AFgnpv8A')"&gt;&lt;em&gt;Nessus -&gt; Security Scanner&lt;/em&gt;&lt;/a&gt;&lt;/h3&gt; URL: &lt;cite&gt;www.&lt;b&gt;nessus&lt;/b&gt;.org&lt;br /&gt;&lt;br /&gt;Advanced IP Scanner&lt;br /&gt;URL: &lt;/cite&gt;&lt;a href="http://www.radmin.com/products/utilities/ipscanner.php"&gt;http://www.radmin.com/products/utilities/ipscanner.php&lt;/a&gt;&lt;br /&gt;&lt;span class="m"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7313625125989071309?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7313625125989071309/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7313625125989071309' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7313625125989071309'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7313625125989071309'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/network-related-tools.html' title='Network Related Tools'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-6583733769324616821</id><published>2008-10-14T13:07:00.001-07:00</published><updated>2008-10-14T13:07:45.459-07:00</updated><title type='text'>MIB for Dell Server</title><content type='html'>http://support.dell.com/support/edocs/software/svradmin/5.4/en/snmp/html/index.htm&lt;br /&gt;&lt;br /&gt;http://support.dell.com/support/edocs/software/svradmin/5.4/en/snmp/html/snmpc23.htm#wp1127929&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-6583733769324616821?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/6583733769324616821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=6583733769324616821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6583733769324616821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6583733769324616821'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/mib-for-dell-server.html' title='MIB for Dell Server'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-6897184147114335763</id><published>2008-10-10T11:43:00.001-07:00</published><updated>2008-10-12T11:14:56.799-07:00</updated><title type='text'>Network speed test applications references</title><content type='html'>http://dast.nlanr.net/Projects/Iperf/iperfdocs_1.7.0.php&lt;br /&gt;http://www.ixiacom.com/support/endpoint_library/&lt;br /&gt;&lt;br /&gt;iperf (Easy Tutorial):&lt;br /&gt;http://openmaniak.com/iperf.php&lt;br /&gt;&lt;br /&gt;&lt;p class="chemin"&gt;Networking &lt;img src="./image/droite.gif" /&gt; Iperf&lt;br /&gt;&lt;img src="./image/carre_blanc.gif" /&gt;  &lt;style type="text/css"&gt;   body {     font-family: Verdana, "Times New Roman",           Times, serif;  font-size: 10px;             }      &lt;/style&gt; &lt;span class="logo_test"&gt;&lt;img src="./image/open_petit.gif" /&gt;&lt;/span&gt; Last update:  28-Mar-2008&lt;span class="langue123"&gt; &lt;a href="./fr/iperf.php"&gt;&lt;img alt="french flag" src="./image/fr.gif" /&gt;&lt;/a&gt;&lt;img alt="english flag" src="./image/en.gif" /&gt; &lt;/span&gt; &lt;/p&gt;&lt;hr width="550" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;a href="http://dast.nlanr.net/Projects/Iperf/" target="_Blank"&gt;Iperf&lt;/a&gt; is a tool to measure the bandwidth and the quality of a  network link. &lt;a href="#jperf"&gt;Jperf&lt;/a&gt; can be associated with Iperf to provide  a graphical frontend written in Java.&lt;br /&gt;&lt;br /&gt;The network link is delimited by  two hosts running Iperf.&lt;br /&gt;&lt;br /&gt;The quality of a link can be tested as  follows:&lt;br /&gt;- Latency (response time or RTT): can be measured with the ping  command.&lt;br /&gt;- Jitter (latency variation): can be measured with an Iperf UDP  test.&lt;br /&gt;- Datagram loss: can be measured with an Iperf UDP test.&lt;br /&gt;&lt;br /&gt;The  bandwidth is measured through TCP tests.&lt;br /&gt;&lt;br /&gt;To be clear, the difference  between TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) is  that TCP use processes to check that the packets are correctly sent to the  receiver whereas with UDP the packets are sent without any checks but with the  advantage of being quicker than TCP.&lt;br /&gt;Iperf uses the different capacities of  TCP and UDP to provide statistics about network links.&lt;br /&gt;&lt;br /&gt;Finally, Iperf  can be installed very easily on any UNIX/Linux or Microsoft Windows system. One  host must be set as client, the other one as server.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;hr width="550" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;Here is a diagram where Iperf is installed on a Linux  and Microsoft Windows machine.&lt;br /&gt;Linux is used as the Iperf client and Windows  as the Iperf server. Of course, it is also possible to use two Linux boxes. &lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;img alt="screenshot Iperf bandwidth measure client server" src="./image/iperf_labo.gif" /&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;/p&gt;&lt;hr width="550" align="center"&gt;  &lt;p class="texte_petit"&gt; &lt;/p&gt;&lt;center&gt;&lt;b&gt;Iperf tests:&lt;/b&gt;&lt;/center&gt;&lt;br /&gt;&lt;p class="texte_petit"&gt; &lt;table class="texte_table" width="530"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;a href="#iperf-default"&gt;no arg.&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-b"&gt;-b&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-r"&gt;-r&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-d"&gt;-d&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-w"&gt;-w&lt;/a&gt;&lt;br /&gt;  &lt;/td&gt; &lt;td&gt;Default settings&lt;br /&gt;Data format&lt;br /&gt;Bi-directional bandwidth &lt;br /&gt;Simultaneous bi-directional bandwidth&lt;br /&gt;TCP Window size&lt;br /&gt;  &lt;/td&gt; &lt;td&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="#iperf-p-t-i"&gt;-p, -t, -i&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-u-b"&gt;-u, -b&lt;/a&gt; &lt;br /&gt;&lt;a href="#iperf-m"&gt;-m&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-M"&gt;-M&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-P"&gt;-P&lt;/a&gt;&lt;br /&gt;&lt;a href="#iperf-h"&gt;-h&lt;/a&gt; &lt;/td&gt; &lt;td&gt;Port, timing and interval&lt;br /&gt;UDP tests, bandwidth settings&lt;br /&gt;Maximum  Segment Size display&lt;br /&gt;Maximum Segment Size settings&lt;br /&gt;Parallel tests &lt;br /&gt;help &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt; &lt;/p&gt;&lt;center&gt;&lt;b&gt;&lt;a href="#jperf"&gt;Jperf&lt;/a&gt;:&lt;/b&gt;&lt;br /&gt;&lt;/center&gt;&lt;br /&gt;&lt;table class="texte_table" width="530"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td width="100"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt;&lt;a href="#jperf-default"&gt;no arg.&lt;/a&gt;&lt;br /&gt;&lt;a href="#jperf-d"&gt;-d&lt;/a&gt;&lt;br /&gt;&lt;a href="#jperf-u-b"&gt;-u, -b&lt;/a&gt; &lt;/td&gt; &lt;td&gt;Default settings&lt;br /&gt;Simultaneous bi-directional bandwidth&lt;br /&gt;UDP tests,  bandwidth settings &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;a name="iperf-default"&gt;&lt;/a&gt; &lt;hr width="550" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Default Iperf  settings:&lt;br /&gt;Also check "&lt;a href="#jperf-default"&gt;Jperf&lt;/a&gt; section.&lt;br /&gt;&lt;br /&gt;By  default, the Iperf client connects to the Iperf server on the TCP port 5001 and  the bandwidth displayed by Iperf is the bandwidth from the client to the  server.&lt;br /&gt;If you want to use UDP tests, use the &lt;a href="#iperf-u-b"&gt;-u&lt;/a&gt;  argument.&lt;br /&gt;The &lt;a href="#iperf-d"&gt;-d&lt;/a&gt; and &lt;a href="#iperf-r"&gt;-r&lt;/a&gt; Iperf  client arguments measure the bi-directional bandwidths. (See further on this  tutorial)&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Client connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16384 Byte  (default)&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[  3] local 10.6.2.5 port 33453 connected with 10.1.1.1 port 5001&lt;br /&gt;[  3]   0.0-10.2 sec   1.26 MBytes   &lt;span style="color:red;"&gt;1.05 Mbits/sec&lt;/span&gt;  &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[852] local  10.1.1.1 port 5001 connected with 10.6.2.5 port 33453&lt;br /&gt;[  ID]   Interval          Transfer       Bandwidth&lt;br /&gt;[852]   0.0-10.6 sec   1.26  MBytes   &lt;span style="color:red;"&gt;1.03 Mbits/sec&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;a name="iperf-b"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Data formatting: (-f  argument)&lt;br /&gt;&lt;br /&gt;The -f argument can display the results in the desired format:  bits(b), bytes(B), kilobits(k), kilobytes(K), megabits(m), megabytes(M),  gigabits(g) or gigabytes(G).&lt;br /&gt;Generally the bandwidth measures are displayed  in bits (or Kilobits, etc ...) and an amount of data is displayed in bytes (or  Kilobytes, etc ...).&lt;br /&gt;As a reminder, 1 byte is equal to 8 bits and, in the  computer science world, 1 kilo is equal to 1024 (2^10).&lt;br /&gt;For example:  100'000'000 bytes is not equal to 100 Mbytes but to 100'000'000/1024/1024 =  95.37 Mbytes.&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -f b  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Client connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16384 Byte  (default)&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[  3] local 10.6.2.5 port 54953 connected with 10.1.1.1 port 5001&lt;br /&gt;[  3]   0.0-10.2 sec   1359872 Bytes   1064272 &lt;span style="color:red;"&gt;bits/sec&lt;/span&gt;  &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[852] local  10.1.1.1 port 5001 connected with 10.6.2.5 port 33453&lt;br /&gt;[  ID]   Interval          Transfer       Bandwidth&lt;br /&gt;[852]   0.0-10.6 sec   920  KBytes   711 Kbits/sec &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-r"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Bi-directional bandwidth  measurement: (-r argument)&lt;br /&gt;&lt;br /&gt;The Iperf server connects back to the client  allowing the bi-directional bandwidth measurement. By default, only the  bandwidth from the client to the server is measured.&lt;br /&gt;If you want to measure  the bi-directional bandwidth simultaneously, use the -d keyword. (See next  test.)&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -r  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: 85.3 KByte (default) &lt;br /&gt;------------------------------------------------------------ &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;Client  connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16.0 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[ 5] local  10.6.2.5 port 35726 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 5]   0.0-10.0  sec   1.12 MBytes   &lt;span style="color:red;"&gt;936 Kbits/sec&lt;/span&gt;&lt;br /&gt;[ 4] local 10.6.2.5  port 5001 connected with 10.1.1.1 port 1640&lt;br /&gt;[ 4]   0.0-10.1 sec   74.2  MBytes   &lt;span style="color:red;"&gt;61.7 Mbits/sec&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[852] local  10.1.1.1 port 5001 connected with 10.6.2.5 port 54355&lt;br /&gt;[  ID]   Interval          Transfer        Bandwidth&lt;br /&gt;[852]   0.0-10.1  sec   1.15 MBytes   &lt;span style="color:red;"&gt;956 Kbits/sec&lt;/span&gt; &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;Client  connecting to 10.6.2.5, TCP port 5001&lt;br /&gt;TCP window size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[824] local  10.1.1.1 port 1646 connected with 10.6.2.5 port 5001&lt;br /&gt;[  ID]   Interval          Transfer        Bandwidth&lt;br /&gt;[824]   0.0-10.0  sec   73.3 MBytes   &lt;span style="color:red;"&gt;61.4 Mbits/sec&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-d"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Simultaneous  bi-directional bandwidth measurement: (-d argument)&lt;br /&gt;Also check the "&lt;a href="#jperf-d"&gt;Jperf&lt;/a&gt;" section.&lt;br /&gt;&lt;br /&gt;To measure the bi-directional  bandwidths simultaneousely, use the -d argument. If you want to test the  bandwidths sequentially, use the &lt;a href="#iperf-r"&gt;-r&lt;/a&gt; argument (see  previous test).&lt;br /&gt;By default (ie: without the -r or -d arguments), only the  bandwidth from the client to the server is measured.&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -d  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: 85.3 KByte (default) &lt;br /&gt;------------------------------------------------------------ &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;Client  connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16.0 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[ 5] local  10.6.2.5 port 60270 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 4] local 10.6.2.5  port 5001 connected with 10.1.1.1 port 2643&lt;br /&gt;[ 4] 0.0-10.0 sec 76.3 MBytes  &lt;span style="color:red;"&gt;63.9 Mbits/sec&lt;/span&gt;&lt;br /&gt;[ 5] 0.0-10.1 sec 1.55 MBytes &lt;span style="color:red;"&gt;1.29 Mbits/sec&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt;  Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[852] local  10.1.1.1 port 5001 connected with 10.6.2.5 port 60270 &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;Client  connecting to 10.6.2.5, TCP port 5001&lt;br /&gt;TCP window size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[800] local  10.1.1.1 port 2643 connected with 10.6.2.5 port 5001&lt;br /&gt;[  ID]   Interval          Transfer       Bandwidth&lt;br /&gt;[800]   0.0-10.0 sec   76.3  MBytes   &lt;span style="color:red;"&gt;63.9 Mbits/sec&lt;/span&gt;&lt;br /&gt;[852]   0.0-10.1 sec   1.55  MBytes   &lt;span style="color:red;"&gt;1.29 Mbits/sec&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-w"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; TCP Window size: (-w  argument)&lt;br /&gt;&lt;br /&gt;The TCP window size is the amount of data that can be buffered  during a connection without a validation from the receiver.&lt;br /&gt;It can be  between 2 and 65,535 bytes.&lt;br /&gt;On Linux systems, when specifying a TCP buffer  size with the -w argument, the kernel allocates double as much as indicated. &lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -w 2000 &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;WARNING: TCP  window size set to &lt;span style="color:red;"&gt;2000 bytes&lt;/span&gt;. A small window size &lt;br /&gt;will give poor performance. See the Iperf documentation. &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;Client  connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: &lt;span style="color:red;"&gt;3.91  KByte&lt;/span&gt; (WARNING: requested 1.95 KByte) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[ 3] local  10.6.2.5 port 51400 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 3]   0.0-10.1  sec   704 KBytes   &lt;span style="color:red;"&gt;572 Kbits/sec&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s -w 4000  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on TCP port 5001&lt;br /&gt;TCP window size: &lt;span style="color:red;"&gt;3.91  KByte&lt;/span&gt;&lt;br /&gt;------------------------------------------------------------ &lt;br /&gt;[852] local 10.1.1.1 port 5001 connected with 10.6.2.5 port 51400&lt;br /&gt;[  ID]   Interval          Transfer       Bandwidth&lt;br /&gt;[852]   0.0-10.1 sec   704  KBytes   &lt;span style="color:red;"&gt;570 Kbits/sec&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-p-t-i"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Communication port (-p),  timing (-t) and interval (-i):&lt;br /&gt;&lt;br /&gt;The Iperf server communication port can be  changed with the -p argument. It must be configured on the client and the server  with the same value, default is TCP port 5001.&lt;br /&gt;The -t argument specifies the  test duration time in seconds, default is 10 secs.&lt;br /&gt;The -i argument indicates  the interval in seconds between periodic bandwidth reports.&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -p 12000 -t 20 -i 2  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Client connecting to 10.1.1.1, &lt;span style="color:red;"&gt;TCP port 12000&lt;/span&gt;&lt;br /&gt;TCP  window size: 16.0 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[ 3] local  10.6.2.5 port 58316 connected with 10.1.1.1 &lt;span style="color:red;"&gt;port 12000&lt;/span&gt; &lt;br /&gt;[ 3]    0.0- 2.0 sec    224 KBytes    918 Kbits/sec&lt;br /&gt;[ 3]    2.0- 4.0  sec    368 KBytes    1.51 Mbits/sec&lt;br /&gt;[ 3]    4.0- 6.0 sec    704  KBytes    2.88 Mbits/sec&lt;br /&gt;[ 3]    6.0- 8.0 sec    280 KBytes    1.15  Mbits/sec&lt;br /&gt;[ 3]    8.0-10.0 sec    208 KBytes    852 Kbits/sec&lt;br /&gt;[  3]   10.0-12.0 sec   344 KBytes    1.41 Mbits/sec&lt;br /&gt;[ 3]   12.0-14.0 sec   208  KBytes    852 Kbits/sec&lt;br /&gt;[ 3]   14.0-16.0 sec   232 KBytes    950 Kbits/sec &lt;br /&gt;[ 3]   16.0-18.0 sec   232 KBytes    950 Kbits/sec&lt;br /&gt;[ 3]   18.0-20.0  sec   264 KBytes    1.08 Mbits/sec&lt;br /&gt;[ 3]    0.0-20.1 sec   3.00  MBytes   &lt;span style="color:red;"&gt;1.25 Mbits/sec&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s -p 12000  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on &lt;span style="color:red;"&gt;TCP port 12000&lt;/span&gt;&lt;br /&gt;TCP window  size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[852] local  10.1.1.1 &lt;span style="color:red;"&gt;port 12000&lt;/span&gt; connected with 10.6.2.5 port 58316 &lt;br /&gt;[ ID] Interval Transfer Bandwidth&lt;br /&gt;[852]   0.0-20.1 sec   3.00  MBytes   &lt;span style="color:red;"&gt;1.25 Mbits/sec&lt;/span&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-u-b"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; UDP tests: (-u),  bandwidth settings (-b)&lt;br /&gt;Also check the "&lt;a href="#jperf-u-b"&gt;Jperf&lt;/a&gt;"  section.&lt;br /&gt;&lt;br /&gt;The UDP tests with the -u argument will give invaluable  information about the jitter and the packet loss. If you don't specify the -u  argument, Iperf uses TCP.&lt;br /&gt;To keep a good link quality, the packet loss  should not go over 1 %. A high packet loss rate will generate a lot of TCP  segment retransmissions which will affect the bandwidth.&lt;br /&gt;&lt;br /&gt;The jitter is  basically the latency variation and does not depend on the latency. You can have  high response times and a very low jitter. The jitter value is particularly  important on network links supporting voice over IP (VoIP) because a high jitter  can break a call.&lt;br /&gt;The -b argument allows the allocation if the desired  bandwidth.&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -u -b 10m  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Client connecting to 10.1.1.1, UDP port 5001&lt;br /&gt;Sending 1470 byte datagrams &lt;br /&gt;UDP buffer size: 108 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[ 3] local  10.6.2.5 port 32781 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 3]   0.0-10.0  sec   11.8 MBytes   9.89 Mbits/sec&lt;br /&gt;[ 3] Sent 8409 datagrams&lt;br /&gt;[ 3] Server  Report:&lt;br /&gt;[ 3]   0.0-10.0 sec   11.8 MBytes   &lt;span style="color:red;"&gt;9.86  Mbits/sec   2.617 ms   9/ 8409   (0.11%)&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s -u -i 1  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Server listening on UDP port 5001&lt;br /&gt;Receiving 1470 byte datagrams&lt;br /&gt;UDP  buffer size: 8.00 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[904] local  10.1.1.1 port 5001 connected with 10.6.2.5 port 32781&lt;br /&gt;[  ID]   Interval         Transfer        Bandwidth         Jitter        Lost/Total  Datagrams&lt;br /&gt;[904]   0.0- 1.0 sec   1.17 MBytes   9.84 Mbits/sec   1.830  ms   0/ 837   (0%)&lt;br /&gt;[904]   1.0- 2.0 sec   1.18 MBytes   9.94  Mbits/sec   1.846 ms   5/ 850   (0.59%)&lt;br /&gt;[904]   2.0- 3.0 sec   1.19  MBytes   9.98 Mbits/sec   1.802 ms   2/ 851   (0.24%)&lt;br /&gt;[904]   3.0- 4.0  sec   1.19 MBytes   10.0 Mbits/sec   1.830 ms   0/ 850   (0%)&lt;br /&gt;[904]   4.0-  5.0 sec   1.19 MBytes   9.98 Mbits/sec   1.846 ms   1/ 850   (0.12%) &lt;br /&gt;[904]   5.0- 6.0 sec   1.19 MBytes   10.0 Mbits/sec   1.806 ms   0/  851   (0%)&lt;br /&gt;[904]   6.0- 7.0 sec   1.06 MBytes   8.87 Mbits/sec   1.803  ms   1/ 755   (0.13%)&lt;br /&gt;[904]   7.0- 8.0 sec   1.19 MBytes   10.0  Mbits/sec   1.831 ms   0/ 850   (0%)&lt;br /&gt;[904]   8.0- 9.0 sec   1.19  MBytes   10.0 Mbits/sec   1.841 ms   0/ 850   (0%)&lt;br /&gt;[904]   9.0-10.0  sec   1.19 MBytes   10.0 Mbits/sec   1.801 ms   0/ 851   (0%) &lt;br /&gt;[904]   0.0-10.0 sec   11.8 MBytes   &lt;span style="color:red;"&gt;9.86  Mbits/sec&lt;/span&gt;   &lt;span style="color:red;"&gt;2.618 ms   9/ 8409  (0.11%)&lt;/span&gt;  &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt;  &lt;a name="iperf-m"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Maximum Segment Size (-m  argument) display:&lt;br /&gt;&lt;br /&gt;The Maximum Segment Size (MSS) is the largest amount  of data, in bytes, that a computer can support in a single, unfragmented TCP  segment.&lt;br /&gt;It can be calculated as follows:&lt;br /&gt;MSS = MTU - TCP &amp;amp; IP  headers&lt;br /&gt;The TCP &amp;amp; IP headers are equal to 40 bytes.&lt;br /&gt;The MTU or Maximum  Transmission Unit is the greatest amount of data that can be transferred in a  frame.&lt;br /&gt;Here are some default MTU size for different network  topology:&lt;br /&gt;Ethernet - 1500 bytes: used in a LAN.&lt;br /&gt;PPPoE - 1492 bytes: used  on ADSL links.&lt;br /&gt;Token Ring (16Mb/sec) - 17914 bytes: old technology developed  by IBM.&lt;br /&gt;Dial-up - 576 bytes&lt;br /&gt;&lt;br /&gt;Generally, a higher MTU (and MSS) brings  higher bandwidth efficiency&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client  side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -m  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Client connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16.0 KByte  (default)&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[  3] local 10.6.2.5 port 41532 connected with 10.1.1.1 port 5001&lt;br /&gt;[  3]   0.0-10.2 sec   1.27 MBytes   &lt;span style="color:red;"&gt;1.04 Mbits/sec&lt;/span&gt;&lt;br /&gt;[ 3]  &lt;span style="color:red;"&gt;MSS size 1448 bytes (MTU 1500 bytes, ethernet)&lt;/span&gt; &lt;br /&gt;&lt;br /&gt;&lt;/i&gt;Here the MSS is not equal to 1500 - 40 but to 1500 - 40 - 12  (Timestamps option) = 1448&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server  side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-M"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Maximum Segment Size (-M  argument) settings:&lt;br /&gt;&lt;br /&gt;Use the -M argument to change the MSS. (See the  previous test for more explanations about the MSS)&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -M 1300 -m &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;WARNING:  attempt to set TCP maximum segment size to &lt;span style="color:red;"&gt;1300&lt;/span&gt;, but got  536&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;Client  connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16.0 KByte (default) &lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[ 3] local  10.6.2.5 port 41533 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 3]   0.0-10.1  sec   4.29 MBytes   &lt;span style="color:red;"&gt;3.58 Mbits/sec&lt;/span&gt;&lt;br /&gt;[ 3] &lt;span style="color:red;"&gt;MSS size 1288 bytes (MTU 1328 bytes, unknown interface)&lt;/span&gt;  &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-P"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="400" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Parallel tests (-P  argument):&lt;br /&gt;&lt;br /&gt;Use the -P argument to run parallel tests.&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Client side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -c 10.1.1.1 -P 2  &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;------------------------------------------------------------ &lt;br /&gt;Client connecting to 10.1.1.1, TCP port 5001&lt;br /&gt;TCP window size: 16.0 KByte  (default)&lt;br /&gt;------------------------------------------------------------&lt;br /&gt;[  3] local 10.6.2.5 port 41534 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 4] local  10.6.2.5 port 41535 connected with 10.1.1.1 port 5001&lt;br /&gt;[ 4]     0.0-10.1  sec   1.35 MBytes   1.12 Mbits/sec&lt;br /&gt;[ 3]     0.0-10.1 sec   1.35  MBytes   1.12 Mbits/sec&lt;br /&gt;&lt;span style="color:red;"&gt;[SUM]&lt;/span&gt;  0.0-10.1 sec   2.70  MBytes   &lt;span style="color:red;"&gt;2.24 Mbits/sec&lt;/span&gt; &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Server side:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -s &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt; &lt;a name="iperf-h"&gt;&lt;/a&gt; &lt;/p&gt;&lt;hr width="550" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;img src="./image/carre.gif" /&gt; Iperf help:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#iperf -h &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;i&gt;Usage: iperf [-s|-c host]  [options]&lt;br /&gt;iperf [-h|--help] [-v|--version]&lt;br /&gt;&lt;br /&gt;Client/Server:&lt;br /&gt;&lt;table class="texte_table" border="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;i&gt;-f&lt;br /&gt;-i&lt;br /&gt;-l&lt;br /&gt;-m&lt;br /&gt;-p&lt;br /&gt;-u&lt;br /&gt;-w&lt;br /&gt;-B&lt;br /&gt;-C&lt;br /&gt;-M&lt;br /&gt;-N&lt;br /&gt;-V  &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;--format&lt;br /&gt;--interval&lt;br /&gt;--len&lt;br /&gt;--print_mss&lt;br /&gt;--port&lt;br /&gt;--udp &lt;br /&gt;--window&lt;br /&gt;--bind&lt;br /&gt;--compatibility&lt;br /&gt;--mss&lt;br /&gt;--nodelay &lt;br /&gt;--IPv6Version &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;[kmKM]&lt;br /&gt;#&lt;br /&gt;#[KM]&lt;br /&gt; &lt;br /&gt;#&lt;br /&gt; &lt;br /&gt;#[KM]&lt;br /&gt;"host"&lt;br /&gt; &lt;br /&gt;# &lt;br /&gt; &lt;br /&gt;  &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;format to report: Kbits, Mbits, KBytes, MBytes&lt;br /&gt;seconds between  periodic bandwidth reports&lt;br /&gt;length of buffer to read or write (default 8 KB) &lt;br /&gt;print TCP maximum segment size (MTU - TCP/IP header)&lt;br /&gt;server port to  listen on/connect to&lt;br /&gt;use UDP rather than TCP&lt;br /&gt;TCP window size (socket  buffer size)&lt;br /&gt;bind to "host", an interface or multicast address&lt;br /&gt;for use  with older versions does not sent extra msgs&lt;br /&gt;set TCP maximum segment size  (MTU - 40 bytes)&lt;br /&gt;set TCP no delay, disabling Nagle's Algorithm&lt;br /&gt;Set the  domain to IPv6 &lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Server specific:&lt;br /&gt;&lt;table class="texte_table" border="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;i&gt;-s&lt;br /&gt;-U&lt;br /&gt;-D &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;--server&lt;br /&gt;--single_udp&lt;br /&gt;--daemon &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;             &lt;br /&gt; &lt;br /&gt;  &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;run in server mode&lt;br /&gt;run in single threaded UDP mode&lt;br /&gt;run the server  as a daemon &lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Client specific:&lt;br /&gt;&lt;table class="texte_table" border="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;i&gt;-b&lt;br /&gt;-c&lt;br /&gt;-d&lt;br /&gt;-n&lt;br /&gt;-r&lt;br /&gt;-t&lt;br /&gt;-F&lt;br /&gt;-I&lt;br /&gt;-L&lt;br /&gt;-P&lt;br /&gt;-T &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;--bandwidth    &lt;br /&gt;--client&lt;br /&gt;--dualtest&lt;br /&gt;--num&lt;br /&gt;--tradeoff &lt;br /&gt;--time&lt;br /&gt;--fileinput&lt;br /&gt;--stdin&lt;br /&gt;--listenport&lt;br /&gt;--parallel&lt;br /&gt;--ttl  &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;#[KM] &lt;br /&gt;"host"&lt;br /&gt; &lt;br /&gt;#[KM]&lt;br /&gt; &lt;br /&gt;#&lt;br /&gt;"name"&lt;br /&gt; &lt;br /&gt;# &lt;br /&gt;#&lt;br /&gt;# &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;for UDP, bandwidth to send at in bits/sec (default 1 Mbit/sec, implies  -u)&lt;br /&gt;run in client mode, connecting to "host"&lt;br /&gt;Do a bidirectional test  simultaneously&lt;br /&gt;number of bytes to transmit (instead of -t)&lt;br /&gt;Do a  bidirectional test individually&lt;br /&gt;time in seconds to transmit for (default 10  secs)&lt;br /&gt;input the data to be transmitted from a file&lt;br /&gt;input the data to be  transmitted from stdin&lt;br /&gt;port to recieve bidirectional tests back on &lt;br /&gt;number of parallel client threads to run&lt;br /&gt;time-to-live, for multicast  (default 1) &lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Miscellaneous:&lt;br /&gt;&lt;table class="texte_table" border="0"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;i&gt;-h&lt;br /&gt;-v &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;--help&lt;br /&gt;--version &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;                  &lt;br /&gt;  &lt;/i&gt;&lt;/td&gt; &lt;td&gt;&lt;i&gt;print this message and quit&lt;br /&gt;print version information and quit  &lt;/i&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/i&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt;  &lt;/p&gt;&lt;hr width="550" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;br /&gt;&lt;a name="jperf"&gt;JPERF&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://code.google.com/p/xjperf/" target="_BLANK"&gt;Jperf&lt;/a&gt; is a graphical  frontend for Iperf written in Java.  &lt;/p&gt;&lt;hr width="450" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;img src="./image/carre.gif" /&gt; 1. Installation:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://code.google.com/p/xjperf/downloads/list" target="_BLANK"&gt;Download&lt;/a&gt;  Jperf.&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Linux&lt;br /&gt;&lt;br /&gt;Uncompress the  downloaded file:&lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#tar -xvf jperf2.0.0.zip &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Launch Jperf. &lt;br /&gt;&lt;br /&gt;&lt;table class="texte_table1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;b&gt;#cd jperf2.0.0&lt;br /&gt;#./jperf.sh &lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;If you have  the following message, it means that you need to install Iperf with: "apt-get  install iperf"&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Iperf is probably not in your Path!&lt;br /&gt;Please download  it here 'http://dast.nlanr.net/Projects/Iperf/'&lt;br /&gt;and put the executable in  your PATH environment variable.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_error.gif" target="_blank"&gt;&lt;img alt="jperf default settings" src="./jperf/jperf_error_small.gif" /&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; Microsoft Windows&lt;br /&gt;&lt;br /&gt;Uncompress the downloaded  file with your favorite program.&lt;br /&gt;Access the uncompressed folder called by  default "jperf2.0.0" and double-click on "jperf.bat".&lt;br /&gt;Note that the iperf  utility is already present in the /bin folder.  &lt;/p&gt;&lt;hr width="450" align="center"&gt;  &lt;p class="texte_petit"&gt;&lt;img src="./image/carre.gif" /&gt; 2. Examples:&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; &lt;a name="jperf-default"&gt;Default settings, bandwidth  measurement:&lt;/a&gt;&lt;br /&gt;Also check "&lt;a href="#iperf-default"&gt;Iperf&lt;/a&gt;" section for  more details.&lt;br /&gt;&lt;br /&gt;- Linux client:&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_linux_default.png" target="_blank"&gt;&lt;img alt="jperf default settings" src="./jperf/jperf_linux_default_small.png" /&gt;&lt;/a&gt;  &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;- Windows server:&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_win_default.gif" target="_blank"&gt;&lt;img alt="jperf default settings" src="./jperf/jperf_win_default_small.gif" /&gt;&lt;/a&gt;  &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt;    &lt;img src="./image/up.gif" /&gt; &lt;a href="#jperf"&gt;Jperf&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; &lt;a name="jperf-d"&gt;Simultaneous bi-directional bandwidth measurement:&lt;/a&gt;&lt;br /&gt;Also  check "&lt;a href="#iperf-d"&gt;Iperf&lt;/a&gt;" section for more details.&lt;br /&gt;&lt;br /&gt;- Linux  client:&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_linux_d.png" target="_blank"&gt;&lt;img alt="jperf bidirectionnal bandwidth measurement" src="./jperf/jperf_linux_d_small.png" /&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;-  Windows server:&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_win_d.gif" target="_blank"&gt;&lt;img alt="jperf bidirectionnal bandwidth measurement" src="./jperf/jperf_win_d_small.gif" /&gt;&lt;/a&gt; &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;img src="./image/up.gif" /&gt; &lt;a href="./iperf.php"&gt;Top of the page&lt;/a&gt;    &lt;img src="./image/up.gif" /&gt; &lt;a href="#jperf"&gt;Jperf&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="./image/droite.gif" /&gt; &lt;a name="jperf-u-b"&gt;Jitter measurement:&lt;/a&gt;&lt;br /&gt;Also  check "&lt;a href="#iperf-u-b"&gt;Iperf&lt;/a&gt;" section for more details.&lt;br /&gt;&lt;br /&gt;- Linux  client:&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_linux_jitter.png" target="_blank"&gt;&lt;img alt="jperf jitter measurement" src="./jperf/jperf_linux_jitter_small.png" /&gt;&lt;/a&gt;  &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;- Windows server:&lt;br /&gt;&lt;br /&gt;&lt;table&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td style="border: 1px solid black;"&gt;&lt;a href="./jperf/jperf_win_jitter.gif" target="_blank"&gt;&lt;img alt="jperf jitter measurement" src="./jperf/jperf_win_jitter_small.gif" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-6897184147114335763?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/6897184147114335763/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=6897184147114335763' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6897184147114335763'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6897184147114335763'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/network-speed-test-applications.html' title='Network speed test applications references'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-8150097367543224224</id><published>2008-10-03T12:21:00.000-07:00</published><updated>2009-04-22T07:05:46.220-07:00</updated><title type='text'>I worked on</title><content type='html'>-&gt; RADIUS Server installation/configuration.&lt;br /&gt;-&gt; Extreme switch configuration&lt;br /&gt;-&gt; Astaro Firewall installation/configuration&lt;br /&gt;-&gt; Zenoss installation/configuration&lt;br /&gt;-&gt; Network speed testing using different networking tools, i.e. iftop, scp, cadaver etc.&lt;br /&gt;-&gt; 3DNS - Name Server configuration&lt;br /&gt;-&gt; Sawmill upgrade&lt;br /&gt;-&gt; Astaro firewall upgrade&lt;br /&gt;-&gt; Zenoss upgrade&lt;br /&gt;-&gt; perl script to fetch attributes and values from LDAP&lt;br /&gt;-&gt; Research on freeIPA&lt;br /&gt;-&gt; DHCP Server Installation/Configuration&lt;br /&gt;-&gt; Xwiki installation&lt;br /&gt;-&gt; perl script to fetch domain registration information&lt;br /&gt;-&gt; perl script to purge MySQL Database based upon given criteria.&lt;br /&gt;-&gt; vmware installation&lt;br /&gt;-&gt; Fodora DS web interface customization&lt;br /&gt;-&gt; Net-SNMP&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-8150097367543224224?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/8150097367543224224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=8150097367543224224' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8150097367543224224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8150097367543224224'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/i-worked-on-at-cait.html' title='I worked on'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-209386933706292100</id><published>2008-10-03T12:19:00.000-07:00</published><updated>2008-10-03T12:21:32.960-07:00</updated><title type='text'>Blogging softwares/CMS</title><content type='html'>&lt;ul&gt;&lt;li&gt;xwiki&lt;/li&gt;&lt;li&gt;Apache Roller&lt;/li&gt;&lt;li&gt;Twiki&lt;/li&gt;&lt;li&gt;joomla&lt;/li&gt;&lt;li&gt;kablink&lt;/li&gt;&lt;li&gt;wordpress&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-209386933706292100?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/209386933706292100/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=209386933706292100' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/209386933706292100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/209386933706292100'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/10/blogging-softwarescms.html' title='Blogging softwares/CMS'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-24115606116380050</id><published>2008-09-03T08:16:00.000-07:00</published><updated>2008-09-05T10:49:23.287-07:00</updated><title type='text'>Creating test file</title><content type='html'>&lt;span style="font-style: italic;"&gt;dd if=/dev/urandom of=/usr/local/src/test123 bs=1024 count=30000&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;It will create a test file of approximately 31MB.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Webdav Client:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;cadaver (Text Based), most of the time comes installed with linux.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-style: italic;"&gt;                       eg. cadaver https://webdav.myorg.org/data/share&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;skunkdav -&gt; JAVA based Application.&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;iftop &lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt; Network speed (upload and download speed) test application.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-24115606116380050?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/24115606116380050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=24115606116380050' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/24115606116380050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/24115606116380050'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/09/creating-test-file.html' title='Creating test file'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-8946983841959743876</id><published>2008-08-13T06:12:00.000-07:00</published><updated>2008-08-20T09:14:52.957-07:00</updated><title type='text'>SNMP Tutorial Links</title><content type='html'>&lt;span style="font-size:78%;"&gt;http://www.dpstele.com/layers/l2/snmp_tutorials.php&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;SNMPv3&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;http://www.netadmintools.com/art485.html&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-8946983841959743876?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/8946983841959743876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=8946983841959743876' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8946983841959743876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8946983841959743876'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/snmp-tutorial-links.html' title='SNMP Tutorial Links'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3346209322172946242</id><published>2008-08-11T11:56:00.000-07:00</published><updated>2008-08-20T09:06:44.729-07:00</updated><title type='text'>RHEL Administrator Guide References</title><content type='html'>&lt;span style="font-size:78%;"&gt;&lt;a href="https://www.redhat.com/docs/manuals/enterprise/RHEL-3-Manual/pdf/rhel-ig-x8664-multi-en.pdf"&gt;https://www.redhat.com/docs/manuals/enterprise/RHEL-3-Manual/pdf/rhel-ig-x8664-multi-en.pdf&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;span class="a"  style="font-size:78%;"&gt;https://www.&lt;b&gt;redhat&lt;/b&gt;.com/docs/manuals/&lt;wbr&gt;&lt;b&gt;enterprise&lt;/b&gt;/RHEL-4-Manual/pdf/rhel-isa-en.pdf&lt;br /&gt;&lt;/span&gt;&lt;span class="a"  style="font-size:78%;"&gt;www.centos.org/docs/4/pdf/rhel-sag-en.pdf&lt;br /&gt;&lt;/span&gt;&lt;span class="a"  style="font-size:78%;"&gt;www.centos.org/docs/4/pdf/rhel-sg-en.pdf&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3346209322172946242?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3346209322172946242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3346209322172946242' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3346209322172946242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3346209322172946242'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/rhel-administrator-guide-references.html' title='RHEL Administrator Guide References'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-1650728068357543569</id><published>2008-08-08T12:24:00.001-07:00</published><updated>2008-08-08T12:24:56.992-07:00</updated><title type='text'>Life will be really easy if such .........................</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_bxU3yPOCe6M/SJydgwBet7I/AAAAAAAAAA0/F1BWQtnwTgA/s1600-h/Success+Way.jpg"&gt;&lt;img style="cursor: pointer;" src="http://4.bp.blogspot.com/_bxU3yPOCe6M/SJydgwBet7I/AAAAAAAAAA0/F1BWQtnwTgA/s320/Success+Way.jpg" alt="" id="BLOGGER_PHOTO_ID_5232230053070157746" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-1650728068357543569?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/1650728068357543569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=1650728068357543569' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/1650728068357543569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/1650728068357543569'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/life-will-be-really-easy-if-such.html' title='Life will be really easy if such .........................'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_bxU3yPOCe6M/SJydgwBet7I/AAAAAAAAAA0/F1BWQtnwTgA/s72-c/Success+Way.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7904340296084403244</id><published>2008-08-08T10:59:00.001-07:00</published><updated>2008-08-08T11:02:24.779-07:00</updated><title type='text'>Personnel</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_bxU3yPOCe6M/SJyKK_v-O3I/AAAAAAAAAAs/-OBY4MFpRvk/s1600-h/Success+Next+Exit.JPG"&gt;&lt;img style="cursor: pointer;" src="http://4.bp.blogspot.com/_bxU3yPOCe6M/SJyKK_v-O3I/AAAAAAAAAAs/-OBY4MFpRvk/s320/Success+Next+Exit.JPG" alt="" id="BLOGGER_PHOTO_ID_5232208788613643122" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7904340296084403244?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7904340296084403244/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7904340296084403244' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7904340296084403244'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7904340296084403244'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/personnel.html' title='Personnel'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_bxU3yPOCe6M/SJyKK_v-O3I/AAAAAAAAAAs/-OBY4MFpRvk/s72-c/Success+Next+Exit.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7249564302581224523</id><published>2008-08-01T10:36:00.000-07:00</published><updated>2008-10-16T09:17:09.175-07:00</updated><title type='text'>Tutorial Links</title><content type='html'>http://ebook.brawijaya.ac.id/?file=manual&lt;br /&gt;&lt;br /&gt;http://ebook.brawijaya.ac.id/index.php3?man=rute/node1.html&lt;br /&gt;&lt;br /&gt;http://www.linuxhomenetworking.com&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Link to configure tftp server:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:78%;"&gt;http://www.linux-tutorial.info/modules.php?name=Howto&amp;amp;pagename=Clone-HOWTO/setting-up.html&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Networking Tutorial&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;http://www.2000trainers.com/&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7249564302581224523?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7249564302581224523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7249564302581224523' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7249564302581224523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7249564302581224523'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/tutorial-links.html' title='Tutorial Links'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-8810754768611723506</id><published>2008-08-01T08:01:00.000-07:00</published><updated>2008-10-03T12:19:11.041-07:00</updated><title type='text'>Applications</title><content type='html'>&lt;ul&gt;&lt;li&gt;mutt - Non-GUI Mail Clients&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;tcpdump&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;head -1 /home/alice/getme&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt; who am i&lt;/li&gt;&lt;/ul&gt;&lt;ul style="text-align: left;"&gt;&lt;li&gt;fuser - display information about the process using the filesystem. It also defines a convenient way to send signals to those processes.&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Usage:&lt;/li&gt;&lt;ul&gt;&lt;li&gt;fuser -v mount_point&lt;/li&gt;&lt;li&gt;fuser -km mount_point&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;li&gt;Saving power consumption&lt;/li&gt;&lt;ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span class="Object" id="OBJ_PREFIX_DWT355"&gt;&lt;span class="Object" id="OBJ_PREFIX_DWT356"&gt;&lt;a target="_blank" href="http://lesswatts.org/"&gt;http://lesswatts.org&lt;/a&gt;&lt;/span&gt;&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-8810754768611723506?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/8810754768611723506/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=8810754768611723506' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8810754768611723506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8810754768611723506'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/applications.html' title='Applications'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-6779517703016806793</id><published>2008-08-01T07:57:00.000-07:00</published><updated>2008-08-01T07:59:10.713-07:00</updated><title type='text'>Environment Variables in Linux</title><content type='html'>LANG&lt;br /&gt;LOGNAME&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-6779517703016806793?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/6779517703016806793/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=6779517703016806793' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6779517703016806793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/6779517703016806793'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/environment-variables-in-linux.html' title='Environment Variables in Linux'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-3389040328146497088</id><published>2008-08-01T06:19:00.000-07:00</published><updated>2008-08-01T06:21:07.990-07:00</updated><title type='text'>How do you know which startup script is responsible for TCP port 111?</title><content type='html'>#lsof -i tcp:111&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-3389040328146497088?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/3389040328146497088/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=3389040328146497088' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3389040328146497088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/3389040328146497088'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/how-do-you-know-which-startup-script-is.html' title='How do you know which startup script is responsible for TCP port 111?'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7781644966361166389</id><published>2008-08-01T06:11:00.000-07:00</published><updated>2008-08-01T10:38:57.455-07:00</updated><title type='text'>To verify whether process is running or not</title><content type='html'>#pgrep processName&lt;br /&gt;&lt;br /&gt;Example:-&lt;br /&gt;    [root@st06410722744 ~]# pgrep sendmail&lt;br /&gt;    2482&lt;br /&gt;    2490&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7781644966361166389?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7781644966361166389/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7781644966361166389' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7781644966361166389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7781644966361166389'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/to-verify-whether-process-is-running-or.html' title='To verify whether process is running or not'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-8887763049646475727</id><published>2008-08-01T06:07:00.000-07:00</published><updated>2008-08-01T06:09:34.564-07:00</updated><title type='text'>Connecting MySql Remotely</title><content type='html'>$mysql -h hostname &lt;hostname&gt; -u username &lt;username&gt; --password=password&lt;password&gt;&lt;/password&gt;&lt;/username&gt;&lt;/hostname&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-8887763049646475727?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/8887763049646475727/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=8887763049646475727' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8887763049646475727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/8887763049646475727'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/connecting-mysql-remotely.html' title='Connecting MySql Remotely'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3811456087481420306.post-7640620416905983508</id><published>2008-08-01T05:57:00.000-07:00</published><updated>2008-08-01T06:04:12.204-07:00</updated><title type='text'>Reading .gz file</title><content type='html'>$zcat access-443-*2008* | grep ptb&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3811456087481420306-7640620416905983508?l=rbasukala.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rbasukala.blogspot.com/feeds/7640620416905983508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3811456087481420306&amp;postID=7640620416905983508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7640620416905983508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3811456087481420306/posts/default/7640620416905983508'/><link rel='alternate' type='text/html' href='http://rbasukala.blogspot.com/2008/08/reading-gz-file.html' title='Reading .gz file'/><author><name>RB</name><uri>http://www.blogger.com/profile/12979942751752540724</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
