<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; secure shell</title>
	<atom:link href="http://www.ghacks.net/tag/secure-shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 23:31:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Five handy secure shell tips and tricks</title>
		<link>http://www.ghacks.net/2009/10/17/five-handy-secure-shell-tips-and-tricks/</link>
		<comments>http://www.ghacks.net/2009/10/17/five-handy-secure-shell-tips-and-tricks/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 17:47:49 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[linux shell]]></category>
		<category><![CDATA[secure shell]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17386</guid>
		<description><![CDATA[I use secure shell a LOT, every day. So much so that I often take for granted how important this tool is. Not only does it allow me to log into remote machines to handle management of said machine, it can do other things as well &#8211; X tunneling being one of the most useful features. But [...]]]></description>
			<content:encoded><![CDATA[<p>I use secure shell a LOT, every day. So much so that I often take for granted how important this tool is. Not only does it allow me to log into remote machines to handle management of said machine, it can do other things as well &#8211; X tunneling being one of the most useful features. But for many users ssh only serves as a means to log in, do a few command-line tasks, and log out. It doesn&#8217;t (and shouldn&#8217;t) have to be that way.</p>
<p>With Secure Shell there are a number of ways to use (and configure) this tool to make it more useful and more secure. In this article  you will learn five different (and handy) secure shell tips to make sure your ssh usage is as good as it can be. And for some basic secure shell knowledge, check out my article &#8220;<a title="Get to know Linux: Secure Shell" href="http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/" target="_blank">Get to know Linux: Secure shell</a>&#8220;.</p>
<p><span id="more-17386"></span><strong>Password-less logon</strong></p>
<p>Have have dealt with this before (as a side note), but wanted to re-iterate this process. Because I use ssh so much I get tired of having to enter passwords constantly. Now I will preface this by saying only do this on a network you trust. Yes you will be logging into ssh with a certificate, and that certificate will be on your machine, but you don&#8217;t want to employ this method on a network that can not be trusted. With that in mind, here are the steps for setting this up.</p>
<p>On the local machine issue the command:</p>
<p><em>ssh-keygen -t dsa</em></p>
<p>This command will generate a public key that will be then copied to your server. During this creation process you will be asked for a password &#8211; just press enter to use a blank password for this. You will have to verify the password, so hit enter again. )</p>
<p>With the key created you have to copy it to the server you want to ssh into. To do this enter the command:</p>
<p><em>ssh-copy-id -i .ssh/id_dsa.pub username@destination</em></p>
<p>Where <em>username</em> is the username you will be logging into on the remote server and <em>destination</em> is the IP address of the remote server.</p>
<p>Now when you go to secure shell into that remote machine you will not have to enter a password.</p>
<p><strong>Block root login</strong></p>
<p>Although secure shell is a secure means of logging into your server, you do not want to allow root access (for obvious reasons). Blocking root access is simple. Open up the <strong>/etc/ssh/sshd_config</strong> file and look for this line:</p>
<p><em>PermitRootLogin</em></p>
<p>and make sure it is set to &#8220;no&#8221; (no quotes). So the complete line will read:</p>
<p><em>PermitRootLogin no</em></p>
<p>Once you have saved that file, restart the ssh daemon with the command:</p>
<p><em>sudo /etc/init.d/ssh restart</em></p>
<p>Now the root user can no longer log in remotely via ssh.</p>
<p><strong>Enable X tunneling</strong></p>
<p>Secure shell is made even more powerful when you can run a remote X application on your local machine. And what is better is that it&#8217;s not difficult at all. In order to allow X tunneling you will first need to open up the <strong>/etc/ssh/sshd_config </strong>file and search for this line:</p>
<p><em>X11Forwarding</em></p>
<p>and make sure it looks like:</p>
<p><em>X11Forwarding yes</em></p>
<p>Once that is set save the file, restart sshd, and you are ready to tunnel and X Windows application through ssh. To accomplish this you have to add the <em>-X </em>flag to your secure shell command like this:</p>
<p><em>ssh -v -l USERNAME IP_ADDRESS -X</em></p>
<p>Where USERNAME is the username you want to log in with and IP_ADDRESS is the actual IP address of the machine you are logging into.</p>
<p><strong>Final thoughts</strong></p>
<p>There are so many cool tricks and tips with secure shell, but the above three are, in my opinion, the most helpful. Have you come across a helpful ssh tip you&#8217;d like to share? Or are you looking for a particular behavior out of secure shell? If so. share with your fellow Ghacks readers.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/linux-shell/" title="linux shell" rel="tag">linux shell</a>, <a href="http://www.ghacks.net/tag/secure-shell/" title="secure shell" rel="tag">secure shell</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/18/linux-command-line-fu/" title="Linux Command Line Fu (February 18, 2009)">Linux Command Line Fu</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/" title="Get To Know Linux: Secure Shell (February 17, 2009)">Get To Know Linux: Secure Shell</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/17/five-handy-secure-shell-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Backup your Linux box with rsync</title>
		<link>http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/</link>
		<comments>http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 14:13:15 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[automated backup]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[linux backup]]></category>
		<category><![CDATA[secure shell]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17157</guid>
		<description><![CDATA[In this Linux backup series we have taken a look at Flyback (&#8221;Quick and easy backups with Flyback&#8220;), Backerupper (&#8221;Simple gui backup tool Backerupper&#8220;), and Back In Time (&#8221;Linux Back In Time: Backup made easy&#8220;). But what Linux series would be complete without a command line entry? Not this one.
There is one thing that most [...]]]></description>
			<content:encoded><![CDATA[<p>In this Linux backup series we have taken a look at Flyback (&#8221;<a title="Flyback" href="http://www.ghacks.net/2009/10/08/quick-and-easy-backups-with-flyback/" target="_blank">Quick and easy backups with Flyback</a>&#8220;), Backerupper (&#8221;<a title="Backerupper" href="http://www.ghacks.net/2009/10/09/simple-gui-backup-tool-backerupper/" target="_blank">Simple gui backup tool Backerupper</a>&#8220;), and Back In Time (&#8221;<a title="Back In Time" href="http://www.ghacks.net/2009/10/10/linux-back-in-time-backup-made-easy/" target="_blank">Linux Back In Time: Backup made easy</a>&#8220;). But what Linux series would be complete without a command line entry? Not this one.</p>
<p>There is one thing that most Linux backup tools have in common and that is their underlying technologies. In most cases one of the tools that make the GUI backup tools possible is the venerable rsync. Rsync is an incredibly fast and lightweight file copy tool that can not only copy files to and from a local machine, it can also copy over a network connection &#8211; which makes rsync an ideal candidate for user-generated backup scripts or cron jobs.</p>
<p>In this tutorial you will learn how easy it is to use rysnc to not only back up specified directories to an external usb drive, but also to backup over a network connection via ssh.</p>
<p><span id="more-17157"></span><strong>Command structure</strong></p>
<p>The structure of the rsync command is:</p>
<p>rsync [OPTIONS] <strong>SOURCE</strong> <em>DESTINATION</em></p>
<p>Where SOURCE is the location of the directory to be backed up and DESTINATION is where the backup will be placed.</p>
<p>Now the structure of the command changes when you are employing a network facility such as ssh. At that point the command structure would look like:</p>
<p>rsync [OPTIONS] ssh <strong>SOURCE </strong><em>user@destination:/directory</em></p>
<p>Where <em>user </em>is the user name on the remote machine, <em>destination</em> would be either an IP address or domain, and <em>/directory</em> is the explicit path to the directory you want to back up to.</p>
<p><strong>Usage</strong></p>
<p>For the first example we are going to backup the directory <strong>/home/jlwallen/Documents</strong> to the directory <strong>/media/disk/BACKUPS</strong>. This destination is a directory located on an external USB drive obviously mounted to <strong>/media/disk</strong>. The command for this backup will be:</p>
<p><code>rsync -avh /home/jlwallen/Documents /media/disk/BACKUPS</code></p>
<p>This is where we run into our first &#8220;gotcha&#8221;. What happens with the above command is that any subdirectory in <strong>/home/jlwallen/Documents</strong> will be created on <strong>/media/disk/BACKUPS</strong>. So if you want to create a similar directory structure on the destination you should first create a parent directory similar to that of the source. So before you run the rsync command issue this command:</p>
<p><em>mkdir /media/disk/BACKUPS/Documents</em></p>
<p>The new rsync command would be:</p>
<p><code>rsync -avh /home/jlwallen/Documents /media/disk/BACKUPS/Documents</code></p>
<p>The options used in the above command are:</p>
<ul>
<li>a: Archive mode</li>
<li>v: Verbose mode</li>
<li>h: Output in human readable format.</li>
</ul>
<p>Now let&#8217;s backup the same source to a remote location with the help of secure shell. It will help your cause to first make sure you can log into the remove machine via ssh. Once you have that working you are ready to backup. Using our same example we are going to backup to user jlwallen at the IP address 192.168.1.10 to the directory <strong>/home/jlwallen/BACKUPS/Documents</strong>. To do this the command would look like:</p>
<p><code>rsync -avhe ssh /home/jlwallen/Documents jlwallen@192.168.1.10:/home/jlwallen/BACKUPS/Documents</code></p>
<p>The added option is e which allows you to specify the remote shell to use.</p>
<p>You will be prompted for the remote users&#8217; password and then the coping will begin. But what if you don&#8217;t want to have to use a password? If you are wanting to set up automated, remote backups you will have to allow this process to happen without entering a password. To do this you have to create an SSH key without a password. Here are the steps for this:</p>
<p>create an ssh key on the source machine with the command:</p>
<p><em>ssh-keygen -t dsa</em></p>
<p>Press enter when prompted for a password.</p>
<p>Once the key is created copy that key to the destination key with the following command:</p>
<p><code>ssh-copy-id -i .ssh/id_dsa.pub username@destination</code></p>
<p>Where username is the user on the remote machine and destination is the IP or domain of the remote machine.</p>
<p>Now rsync copying can be done without having to enter a password.</p>
<p><strong>Final thoughts</strong></p>
<p>The nice thing about this setup is you can now use rsync to create a cron job for backup automation. Rsync is an incredibly flexible and reliable means for backing up your directories and files. It should be since it is the foundation that so many other backup tools were based on.</p>

	Tags: <a href="http://www.ghacks.net/tag/automated-backup/" title="automated backup" rel="tag">automated backup</a>, <a href="http://www.ghacks.net/tag/backup/" title="backup" rel="tag">backup</a>, <a href="http://www.ghacks.net/tag/linux-backup/" title="linux backup" rel="tag">linux backup</a>, <a href="http://www.ghacks.net/tag/secure-shell/" title="secure shell" rel="tag">secure shell</a>, <a href="http://www.ghacks.net/tag/ssh/" title="ssh" rel="tag">ssh</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/" title="Get To Know Linux: Secure Shell (February 17, 2009)">Get To Know Linux: Secure Shell</a> (4)</li>
	<li><a href="http://www.ghacks.net/2007/02/17/zip-encrypt-ftp-backups/" title="Zip Encrypt Ftp Backups (February 17, 2007)">Zip Encrypt Ftp Backups</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/03/yadis-backup-software/" title="Yadis! Backup Software (October 3, 2009)">Yadis! Backup Software</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/windows-backup-software-backup-maker/" title="Windows Backup Software: Backup Maker (April 24, 2009)">Windows Backup Software: Backup Maker</a> (18)</li>
	<li><a href="http://www.ghacks.net/2008/10/02/windows-backup-software-deltacopy/" title="Windows Backup Software DeltaCopy (October 2, 2008)">Windows Backup Software DeltaCopy</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Get To Know Linux: Secure Shell</title>
		<link>http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/</link>
		<comments>http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 18:05:37 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[port 22]]></category>
		<category><![CDATA[secure shell]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshd]]></category>
		<category><![CDATA[x tunneling]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=10615</guid>
		<description><![CDATA[If you spend enough time with Linux at some point you are going to want (or need) to log on to a remote machine. And logging on to a remote machine is something you want to do in a secure enviroment. To gain security when having to do any remote administration, your best bet is [...]]]></description>
			<content:encoded><![CDATA[<p>If you spend enough time with Linux at some point you are going to want (or need) to log on to a remote machine. And logging on to a remote machine is something you want to do in a secure enviroment. To gain security when having to do any remote administration, your best bet is secure shell.</p>
<p>Secure shell was created as a replacement for telnet because telnet transmitted unencrypted passwords. The encryption is handled via public key cryptography. Through secure shell the user can issue commands on a remote server or even tunnel the X protocol in order to run remote graphic applications locally.</p>
<p><span id="more-10615"></span>Using secure shell on Linux will require you to install openssh-clients and if you want to run an secure shell server (so others can secure shell into your machine) you will need to install openssh-server. These can be found in your Add/Remove Program utility. During the installation you will most likely be informed that the installer needs to generate a key. You won&#8217;t have to do anything for this key generation. And, depending upon the Add/Remove Program utility that you use you may not even see any sign that this is happening.</p>
<p><strong>Basic usage</strong></p>
<p>To use secure shell you will need to open up a terminal window (gnome-terminal, konsole, aterm, eterm, etc). Once this is open you can begin. The structure of the command is:</p>
<p>ssh OPTIONS REMOTE_SERVER_ADDRESS</p>
<p>Secure shell has quite a list of options available. For a complete listing of these options issue the command <em>man ssh</em> to see them all. But the most useful options are:</p>
<ul>
<li>-v This gives verbose output so you can see all output given as a connection is being made.</li>
<li>-l This allows you to specify a username for the connection.</li>
<li>-X This instructs the remote server to allow the tunneling of X protocols.</li>
</ul>
<p>Say you want to connect user <strong>jlwallen</strong> to server <strong>192.168.1.10</strong> and you want to tunnel X. The command to do this would be:</p>
<p><em>ssh -v -l jlwallen 192.168.1.10 -X</em></p>
<p>You would see a good deal of information pass by before you are asked for the users password. If this is the first time you&#8217;ve attempted this connection you will be prompted (via Y or N) if you want to allow the addition of a key to be placed in the ~/.ssh/known_hosts file. If you are wanting to make this connection you will have to accept this key.</p>
<p><strong>ssh daemon</strong></p>
<p>Now if you want to have the secure shell daemon running on your machine (so that users can log on) you will have to start the deamon. The ssh daemon (sshd) is started from the init.d system. On a Fedora-like system this daemon is started like so:</p>
<p>/etc/rc.d/init.d/sshd start</p>
<p>On a Ubuntu-based system this daemon is started like so:</p>
<p>/etc/init.d/sshd start</p>
<p>Once the daemon is started users can now log in. NOTE: The sshd daemon runs on port 22 so you will need to have that port open in order to allow connections.</p>
<p><strong>Final Thoughts</strong></p>
<p>Secure shell is one of the better means of logging into a remote machine securly. Sure there are other methods but secure shell is easy to use, reliable, and secure.</p>

	Tags: <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/port-22/" title="port 22" rel="tag">port 22</a>, <a href="http://www.ghacks.net/tag/secure-shell/" title="secure shell" rel="tag">secure shell</a>, <a href="http://www.ghacks.net/tag/ssh/" title="ssh" rel="tag">ssh</a>, <a href="http://www.ghacks.net/tag/sshd/" title="sshd" rel="tag">sshd</a>, <a href="http://www.ghacks.net/tag/x-tunneling/" title="x tunneling" rel="tag">x tunneling</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/11/securely-copy-files-with-scp/" title="Securely copy files with scp (April 11, 2009)">Securely copy files with scp</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/03/29/remote-ssh-run-processes-anywhere-on-different-platforms/" title="Remote SSH: Run processes anywhere on different platforms (March 29, 2009)">Remote SSH: Run processes anywhere on different platforms</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/10/17/five-handy-secure-shell-tips-and-tricks/" title="Five handy secure shell tips and tricks (October 17, 2009)">Five handy secure shell tips and tricks</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/10/11/backup-your-linux-box-with-rsync/" title="Backup your Linux box with rsync (October 11, 2009)">Backup your Linux box with rsync</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/11/22/access-remote-unix-guis-in-windows-xming/" title="Access remote Unix GUIs in Windows: Xming (November 22, 2008)">Access remote Unix GUIs in Windows: Xming</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/17/get-to-know-linux-secure-shell/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Connect Bot SSH Client For Android Phone</title>
		<link>http://www.ghacks.net/2009/02/07/connect-bot-ssh-client-for-android-phone/</link>
		<comments>http://www.ghacks.net/2009/02/07/connect-bot-ssh-client-for-android-phone/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 15:54:07 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Google Android]]></category>
		<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[android apps]]></category>
		<category><![CDATA[android connectbot]]></category>
		<category><![CDATA[android secure shell]]></category>
		<category><![CDATA[android ssh]]></category>
		<category><![CDATA[connect bot]]></category>
		<category><![CDATA[connectbot]]></category>
		<category><![CDATA[g1 apps]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[google g1]]></category>
		<category><![CDATA[secure shell]]></category>
		<category><![CDATA[t-mobile g1]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2009/02/07/connect-bot-ssh-client-for-android-phone/</guid>
		<description><![CDATA[I bought the T-Mobile G1 phone just a few days ago and have been playing around with the Android Market quite a bit. One of the applications that I discovered on Android Market was Connect Bot. Connect Bot is a SSH Client for the Android Phone which webmasters (and other users) can use to connect [...]]]></description>
			<content:encoded><![CDATA[<p>I bought the T-Mobile G1 phone just a few days ago and have been playing around with the Android Market quite a bit. One of the applications that I discovered on Android Market was Connect Bot. Connect Bot is a SSH Client for the Android Phone which webmasters (and other users) can use to connect to their servers right from the Android Phone.</p>
<p><a href="http://code.google.com/p/connectbot/">Connect Bot</a> is probably the number one must have application for webmasters who operate their own servers. It can be used to log into the server using the phone. For those who do not know what SSH is, it basically allows a user to exchange data using a secure channel between two network devices.</p>
<p>Some examples where this could come in handy would be to restart the web server, configure services or monitor the connections, processes and resource usage while on the road.</p>
<p><span id="more-10396"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/02/android_ssh.png" alt="android ssh" title="android ssh" width="480" height="320" class="alignnone size-full wp-image-10394" /><br />
<img src="http://www.ghacks.net/wp-content/uploads/2009/02/android_phone_secure_shell.png" alt="android phone secure shell" title="android phone secure shell" width="480" height="320" class="alignnone size-full wp-image-10395" /></p>
<p>The application can be installed right from the Android Market. Must have for any webmaster and admin with their own servers.</p>

	Tags: <a href="http://www.ghacks.net/tag/android/" title="android" rel="tag">android</a>, <a href="http://www.ghacks.net/tag/android-apps/" title="android apps" rel="tag">android apps</a>, <a href="http://www.ghacks.net/tag/android-connectbot/" title="android connectbot" rel="tag">android connectbot</a>, <a href="http://www.ghacks.net/tag/android-secure-shell/" title="android secure shell" rel="tag">android secure shell</a>, <a href="http://www.ghacks.net/tag/android-ssh/" title="android ssh" rel="tag">android ssh</a>, <a href="http://www.ghacks.net/tag/connect-bot/" title="connect bot" rel="tag">connect bot</a>, <a href="http://www.ghacks.net/tag/connectbot/" title="connectbot" rel="tag">connectbot</a>, <a href="http://www.ghacks.net/tag/g1-apps/" title="g1 apps" rel="tag">g1 apps</a>, <a href="http://www.ghacks.net/tag/google-android/" title="google android" rel="tag">google android</a>, <a href="http://www.ghacks.net/tag/google-g1/" title="google g1" rel="tag">google g1</a>, <a href="http://www.ghacks.net/tag/secure-shell/" title="secure shell" rel="tag">secure shell</a>, <a href="http://www.ghacks.net/tag/t-mobile-g1/" title="t-mobile g1" rel="tag">t-mobile g1</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/02/21/download-all-applications-from-android-market-for-free/" title="Download All Applications From Android Market For Free (February 21, 2009)">Download All Applications From Android Market For Free</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/09/29/5-must-have-google-android-applications/" title="5 Must Have Google Android Applications (September 29, 2008)">5 Must Have Google Android Applications</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/02/04/google-android-application-store-browser/" title="Google Android Application Store Browser (February 4, 2009)">Google Android Application Store Browser</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/06/04/pc-remote-access/" title="Android PC Remote Access (June 4, 2009)">Android PC Remote Access</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/06/23/t-mobile-mytouch/" title="T-Mobile myTouch (June 23, 2009)">T-Mobile myTouch</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/02/07/connect-bot-ssh-client-for-android-phone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
