<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Poderosa: great alternative to putty</title>
	<atom:link href="http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/</link>
	<description>Zend Framework, PHP, Django, Python, SQL, MySQL, PostgreSQL, Oracle, PL/SQL, data model patterns, OOP, design patterns, JavaScript, jQuery, HTML, XHTML, CSS, XML, web services &#38; APIs, Security, E-commerce and much more</description>
	<lastBuildDate>Fri, 03 Feb 2012 23:50:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jismon K Joy</title>
		<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/comment-page-1/#comment-488</link>
		<dc:creator>Jismon K Joy</dc:creator>
		<pubDate>Mon, 12 Jul 2010 07:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.richardknop.com/?p=542#comment-488</guid>
		<description>Java Script for Pedorosa auto login:

//AutoLogin.js  

import Poderosa;  

import Poderosa.ConnectionParam;  

import Poderosa.Terminal;  

import Poderosa.Macro;  

import Poderosa.View;  

import System.Drawing;  

import System.Threading;  

var vars = new Object();  

// telnet  

//connect(&quot;xxx.xxx.xxx.xxx&quot;, ConnectionMethod.Telnet, 23, EncodingType.UTF8, &quot;User Name&quot;, &quot;Password&quot;);  

// SSH

connect(&quot;xxx.xxx.xxx.xxx&quot;, ConnectionMethod.SSH2, 22, EncodingType.EUC_JP, &quot;User Name&quot;, &quot;Password&quot;);

connect(&quot;xxx.xxx.xxx.xxx-2&quot;, ConnectionMethod.SSH2, 22, EncodingType.EUC_JP, &quot;User Name2&quot;, &quot;Password&quot;);


function connect(host, method, port, encoding, id, password) {  

   vars.env = new Environment();  

   if (method == ConnectionMethod.Telnet) {  

   vars.param = new TelnetTerminalParam(host);  

    } else {  

        vars.param = new SSHTerminalParam(method, host, id, password);  

     }  

    vars.param.Port = port;  

    vars.param.Encoding = encoding;  

     vars.connection = vars.env.Connections.Open(vars.param);  

     if (method == ConnectionMethod.Telnet) {  

         wait(&quot;login: &quot;);  

         sendln(id);  

         wait(&quot;Password: &quot;);  

        sendln(password);  

     }  

 }  

   

 function sendln(s) {  
 vars.connection.TransmitLn(s);  

 }  

    

 function wait(s) {  

     Thread.Sleep(10);  

     var r = vars.connection.ReceiveData();  

     while(r.indexOf(s) == -1) {  

         Thread.Sleep(10);  

         r += vars.connection.ReceiveData();  

     }  

 }</description>
		<content:encoded><![CDATA[<p>Java Script for Pedorosa auto login:</p>
<p>//AutoLogin.js  </p>
<p>import Poderosa;  </p>
<p>import Poderosa.ConnectionParam;  </p>
<p>import Poderosa.Terminal;  </p>
<p>import Poderosa.Macro;  </p>
<p>import Poderosa.View;  </p>
<p>import System.Drawing;  </p>
<p>import System.Threading;  </p>
<p>var vars = new Object();  </p>
<p>// telnet  </p>
<p>//connect(&#8220;xxx.xxx.xxx.xxx&#8221;, ConnectionMethod.Telnet, 23, EncodingType.UTF8, &#8220;User Name&#8221;, &#8220;Password&#8221;);  </p>
<p>// SSH</p>
<p>connect(&#8220;xxx.xxx.xxx.xxx&#8221;, ConnectionMethod.SSH2, 22, EncodingType.EUC_JP, &#8220;User Name&#8221;, &#8220;Password&#8221;);</p>
<p>connect(&#8220;xxx.xxx.xxx.xxx-2&#8243;, ConnectionMethod.SSH2, 22, EncodingType.EUC_JP, &#8220;User Name2&#8243;, &#8220;Password&#8221;);</p>
<p>function connect(host, method, port, encoding, id, password) {  </p>
<p>   vars.env = new Environment();  </p>
<p>   if (method == ConnectionMethod.Telnet) {  </p>
<p>   vars.param = new TelnetTerminalParam(host);  </p>
<p>    } else {  </p>
<p>        vars.param = new SSHTerminalParam(method, host, id, password);  </p>
<p>     }  </p>
<p>    vars.param.Port = port;  </p>
<p>    vars.param.Encoding = encoding;  </p>
<p>     vars.connection = vars.env.Connections.Open(vars.param);  </p>
<p>     if (method == ConnectionMethod.Telnet) {  </p>
<p>         wait(&#8220;login: &#8220;);  </p>
<p>         sendln(id);  </p>
<p>         wait(&#8220;Password: &#8220;);  </p>
<p>        sendln(password);  </p>
<p>     }  </p>
<p> }  </p>
<p> function sendln(s) {<br />
 vars.connection.TransmitLn(s);  </p>
<p> }  </p>
<p> function wait(s) {  </p>
<p>     Thread.Sleep(10);  </p>
<p>     var r = vars.connection.ReceiveData();  </p>
<p>     while(r.indexOf(s) == -1) {  </p>
<p>         Thread.Sleep(10);  </p>
<p>         r += vars.connection.ReceiveData();  </p>
<p>     }  </p>
<p> }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gromett</title>
		<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/comment-page-1/#comment-418</link>
		<dc:creator>Gromett</dc:creator>
		<pubDate>Mon, 12 Apr 2010 00:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.richardknop.com/?p=542#comment-418</guid>
		<description>To get Putty to auto login create a shortcut to the putty program then edit it.  In the target box put this.

Z:\Putty\putty.exe  -ssh -l root -P 22 xx.xx.xx.xx -pw yourpassword

xx.xx.xx.xx is the IP address.

I have one of these saved for each server I manage with a descriptive filename.

This is for windows obviously.</description>
		<content:encoded><![CDATA[<p>To get Putty to auto login create a shortcut to the putty program then edit it.  In the target box put this.</p>
<p>Z:\Putty\putty.exe  -ssh -l root -P 22 xx.xx.xx.xx -pw yourpassword</p>
<p>xx.xx.xx.xx is the IP address.</p>
<p>I have one of these saved for each server I manage with a descriptive filename.</p>
<p>This is for windows obviously.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enkhbilguun Erdenetsogt</title>
		<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/comment-page-1/#comment-366</link>
		<dc:creator>Enkhbilguun Erdenetsogt</dc:creator>
		<pubDate>Thu, 14 Jan 2010 08:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.richardknop.com/?p=542#comment-366</guid>
		<description>Oh, it&#039;s working. :-)
Found it was my fault. I like it :-P</description>
		<content:encoded><![CDATA[<p>Oh, it&#8217;s working. <img src='http://blog.richardknop.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Found it was my fault. I like it <img src='http://blog.richardknop.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Knop</title>
		<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/comment-page-1/#comment-365</link>
		<dc:creator>Richard Knop</dc:creator>
		<pubDate>Tue, 12 Jan 2010 21:54:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.richardknop.com/?p=542#comment-365</guid>
		<description>That&#039;s weird. It works for me, I tried SSH with different port and everything&#039;s fine. You must be writing the port number in wrong field or something.</description>
		<content:encoded><![CDATA[<p>That&#8217;s weird. It works for me, I tried SSH with different port and everything&#8217;s fine. You must be writing the port number in wrong field or something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enkhbilguun Erdenetsogt</title>
		<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/comment-page-1/#comment-364</link>
		<dc:creator>Enkhbilguun Erdenetsogt</dc:creator>
		<pubDate>Tue, 12 Jan 2010 01:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.richardknop.com/?p=542#comment-364</guid>
		<description>After the installation, I feel Putty is better. At least, with Putty, you can adjust SSH port number. Poderosa returning error of invalid port when I change the SSH port.</description>
		<content:encoded><![CDATA[<p>After the installation, I feel Putty is better. At least, with Putty, you can adjust SSH port number. Poderosa returning error of invalid port when I change the SSH port.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enkhbilguun Erdenetsogt</title>
		<link>http://blog.richardknop.com/2010/01/poderosa-great-alternative-to-putty/comment-page-1/#comment-363</link>
		<dc:creator>Enkhbilguun Erdenetsogt</dc:creator>
		<pubDate>Mon, 11 Jan 2010 11:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.richardknop.com/?p=542#comment-363</guid>
		<description>Hello,
Thanks for the information. I&#039;ve been looking for any alternative to putty.
However, as I certainly know, you can easily make your password remembered in the Putty.
;-)

--
Enkhbilguun E.</description>
		<content:encoded><![CDATA[<p>Hello,<br />
Thanks for the information. I&#8217;ve been looking for any alternative to putty.<br />
However, as I certainly know, you can easily make your password remembered in the Putty. <img src='http://blog.richardknop.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>&#8211;<br />
Enkhbilguun E.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

