利用jsch远程连接win10

2023-11-12 01:51
文章标签 连接 win10 远程 jsch

本文主要是介绍利用jsch远程连接win10,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

测试jsch远程连接win10记录

1、开启win10自带的ssh服务

右键点击左下角的开始:
请添加图片描述

点击应用与功能:

在这里插入图片描述

点击可选功能:

在这里插入图片描述

点击添加功能:

在这里插入图片描述

安装OpenSSH服务器,以管理员身份运行命令提示符(cmd)

在这里插入图片描述

输入指令 net start sshd 开始ssh服务, (net stop sshd 是停止服务)

在这里插入图片描述

我这里是本地连接测试,所以不需要关心防火墙的问题,如果是正真的远程连接,需要自行打开相应的端口(默认是22)

2、编写java代码

导入jsch包

<dependency><groupId>com.jcraft</groupId><artifactId>jsch</artifactId><version>0.1.53</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.6</version></dependency>

测试代码

	@Testpublic void Test07(){String host = "192.168.15.130"; // 这是ip地址String user = "administrator";	// 这是用户名,我试了我电脑的用户失败了,好像只能用管理员账户String password = "1421512634"; // 密码String command1 = "ipconfig"; // 要执行的命令try {java.util.Properties config = new java.util.Properties();config.put("StrictHostKeyChecking", "no");JSch jsch = new JSch();Session session = jsch.getSession(user, host, 22); // 这里的22是端口session.setPassword(password);session.setConfig(config);session.connect();System.out.println("Connected");Channel channel = session.openChannel("exec");((ChannelExec) channel).setCommand(command1);channel.setInputStream(null);((ChannelExec) channel).setErrStream(System.err);InputStream in = channel.getInputStream(); //这一部分都是官方的固定写法channel.connect();try{// 加GBK,解决中文乱码BufferedReader inputReader = new BufferedReader(new InputStreamReader(in,"GBK")); String inputLine = null;while((inputLine = inputReader.readLine()) != null) {System.out.println(inputLine);}}catch (Exception e){e.printStackTrace();}channel.disconnect();session.disconnect();System.out.println("DONE");} catch (Exception e) {e.printStackTrace();}}

输出结果
在这里插入图片描述

这篇关于利用jsch远程连接win10的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/394286

相关文章

W外链微信推广短连接怎么做?

制作微信推广链接的难点分析 一、内容创作难度 制作微信推广链接时,首先需要创作有吸引力的内容。这不仅要求内容本身有趣、有价值,还要能够激起人们的分享欲望。对于许多企业和个人来说,尤其是那些缺乏创意和写作能力的人来说,这是制作微信推广链接的一大难点。 二、精准定位难度 微信用户群体庞大,不同用户的需求和兴趣各异。因此,制作推广链接时需要精准定位目标受众,以便更有效地吸引他们点击并分享链接

Java 连接Sql sever 2008

Java 连接Sql sever 2008 /Sql sever 2008 R2 import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class TestJDBC

实例:如何统计当前主机的连接状态和连接数

统计当前主机的连接状态和连接数 在 Linux 中,可使用 ss 命令来查看主机的网络连接状态。以下是统计当前主机连接状态和连接主机数量的具体操作。 1. 统计当前主机的连接状态 使用 ss 命令结合 grep、cut、sort 和 uniq 命令来统计当前主机的 TCP 连接状态。 ss -nta | grep -v '^State' | cut -d " " -f 1 | sort |

【Go】go连接clickhouse使用TCP协议

离开你是傻是对是错 是看破是软弱 这结果是爱是恨或者是什么 如果是种解脱 怎么会还有眷恋在我心窝 那么爱你为什么                      🎵 黄品源/莫文蔚《那么爱你为什么》 package mainimport ("context""fmt""log""time""github.com/ClickHouse/clickhouse-go/v2")func main(

nginx长连接的问题

转自: http://www.360doc.com/content/12/1108/17/1073512_246644318.shtml

NGINX轻松管理10万长连接 --- 基于2GB内存的CentOS 6.5 x86-64

转自:http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=190176&id=4234854 一 前言 当管理大量连接时,特别是只有少量活跃连接,NGINX有比较好的CPU和RAM利用率,如今是多终端保持在线的时代,更能让NGINX发挥这个优点。本文做一个简单测试,NGINX在一个普通PC虚拟机上维护100k的HTTP

TL-Tomcat中长连接的底层源码原理实现

长连接:浏览器告诉tomcat不要将请求关掉。  如果不是长连接,tomcat响应后会告诉浏览器把这个连接关掉。    tomcat中有一个缓冲区  如果发送大批量数据后 又不处理  那么会堆积缓冲区 后面的请求会越来越慢。

DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed

DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed 文章目录 DBeaver 连接 MySQL 报错 Public Key Retrieval is not allowed问题解决办法 问题 使用 DBeaver 连接 MySQL 数据库的时候, 一直报错下面的错误 Public Key Retrieval is

Github连接方式

打开Linux中git的配置文件: /home/username/git/MyRepository/.git/config [core]repositoryformatversion = 0filemode = truebare = falselogallrefupdates = true[remote "origin"]fetch = +refs/heads/*:refs/remot

ora-01017 ora-02063 database link,oracle11.2g通过dblink连接oracle11.2g

错误图示: 问题解决 All database links, whether public or private, need username/password of the remote/target database. Public db links are accessible by all accounts on the local database, while private