Java代码实现ssh连接Linux
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash

·
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.apache.sshd.client.SshClient;
import org.apache.sshd.client.channel.ChannelShell;
import org.apache.sshd.client.channel.ClientChannel;
import org.apache.sshd.client.channel.ClientChannelEvent;
import org.apache.sshd.client.future.ConnectFuture;
import org.apache.sshd.client.session.ClientSession;
import org.apache.sshd.common.channel.PtyMode;
import org.apache.sshd.common.util.io.NoCloseInputStream;
import org.apache.sshd.common.util.io.NoCloseOutputStream;
public class SshClientTest {
public static void main(String[] args) throws Exception {
try (SshClient client = SshClient.setUpDefaultClient()) {
//PropertyResolverUtils.updateProperty(client, FactoryManager.IDLE_TIMEOUT, 30000L);
client.start();
ConnectFuture connect = client.connect("username", "xxx.xxx.xx.x", 22);
if (connect.await(5000L)) {
try (ClientSession session = connect.getSession()) {
session.addPasswordIdentity("password");
session.auth().verify(5000L);
try (ChannelShell channel = (ChannelShell) session.createChannel(ClientChannel.CHANNEL_SHELL)) {
channel.setAgentForwarding(true);
channel.setPtyType("xterm");
channel.setPtyColumns(160);
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
channel.setPtyWidth(0);
channel.setPtyHeight(0);
Map<PtyMode, Integer> ptyModes = new HashMap<>();
ptyModes.put(PtyMode.TTY_OP_OSPEED, 38400);
ptyModes.put(PtyMode.TTY_OP_ISPEED, 38400);
channel.setPtyModes(ptyModes);
channel.setIn(new NoCloseInputStream(System.in));
channel.setOut(new NoCloseOutputStream(System.out));
channel.setErr(new NoCloseOutputStream(System.err));
channel.open();
System.out.println(channel.getProperties());
channel.waitFor(Arrays.asList(ClientChannelEvent.CLOSED), 0);
} finally {
session.close(false);
}
} finally {
client.stop();
}
}
}
}
}
推荐内容
阅读全文
AI总结




A beautiful web dashboard for Linux
最近提交(Master分支:7 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
相关推荐
查看更多
linux-dash

A beautiful web dashboard for Linux
linux-dash

A beautiful web dashboard for Linux
linux-dash

热门开源项目
活动日历
查看更多
直播时间 2025-04-09 14:34:18

樱花限定季|G-Star校园行&华中师范大学专场
直播时间 2025-04-07 14:51:20

樱花限定季|G-Star校园行&华中农业大学专场
直播时间 2025-03-26 14:30:09

开源工业物联实战!
直播时间 2025-03-25 14:30:17

Heygem.ai数字人超4000颗星火燎原!
直播时间 2025-03-13 18:32:35

全栈自研企业级AI平台:Java核心技术×私有化部署实战
所有评论(0)