【JSch】JSch通过堡垒机连接内网

 pom


    
      com.jcraft
      jsch
      0.1.54
    
       
        
            cn.hutool
            hutool-all
            5.8.16
        
        
            com.google.guava
            guava
            21.0
        

代码

 Session session = JschUtil.getSession("堡垒机IP", 堡垒机开放端口, "堡垒机用户名", "堡垒机密码");
JschUtil.bindPort(session, "内网iP", 内网端口, 内网端口映射到的堡垒机端口(一般为堡垒机开放端口) );

      Properties sessionConfig = new Properties();
// 去掉首次连接确认
      sessionConfig.put("StrictHostKeyChecking", "no");
      session.setConfig(sessionConfig);

        ChannelExec channelExec = (ChannelExec) session.openChannel("exec");
        channelExec.setCommand("pwd");
        channelExec.connect();
       InputStream inputStream = channelExec.getInputStream();

        String result = new String(ByteStreams.toByteArray(inputStream));

        System.out.println(result);

来源:

一篇让你熟练掌握Google Guava包(全网最全) - 掘金 (juejin.cn)

(9条消息) Java中InputStream和String之间的转换方法_inputstream 转string_lmy86263的博客-CSDN博客

(8条消息) java程序使用Jsch 实现 ssh连接_jsch ssh_渣渣苏的博客-CSDN博客

Jsch(SSH)工具-JschUtil (hutool.cn)

JSch - Java Secure Channel (jcraft.com)

SSH 协议的 ssh StrictHostKeyChecking - aspirant - 博客园 (cnblogs.com)

(9条消息) java.util.Properties类操作properties文件_爱吃牛肉的大老虎的博客-CSDN博客

你可能感兴趣的:(服务器,服务器)