afunms

My Software,My Dream—Forge a more perfect NMS product.

test SSH

package com.test;

import de.mud.ssh.*
;


/**
 * This is an example for using the SshWrapper class. Note that the
 * password here is in plaintext, so do not make this .class file
 * available with your password inside it.
 
*/

public class SshWrapperExample 
{
    
public static void
 main(String args[]) 
    
{
     SshWrapper ssh 
= new
 SshWrapper();
     
try
 
     
{
          
byte[] buffer = new byte[256
];
          ssh.connect(
"192.168.2.155"23
);
          ssh.login(
"root""root"
);
          ssh.setPrompt(
"#"
);
          ssh.send(
"sar 1 3"
);
          ssh.read(buffer);
          System.out.println(
new
 String(buffer));
     }
 
     
catch
 (java.io.IOException e) 
     
{
          e.printStackTrace();
     }

    }

}

posted on 2008-01-30 15:50 afunms 阅读(247) 评论(1)  编辑  收藏

Feedback

# re: test SSH 2008-05-29 19:50 赵志华

您好


这个代码可以ssh到网元马?

我测试了好像不可以阿  回复  更多评论   



只有注册用户登录后才能发表评论。


网站导航:
 

My Links

News

留言簿(18)

随笔档案

相册

搜索

最新评论

阅读排行榜