java调用远程python命令,JAVA\Python\C#\C++实现SSH2远程调用Linux主机执行命令

该代码示例展示了如何使用Java的JSch库、Python的paramiko库和C#的Tamir.SharpSsh库进行SSH远程命令执行。通过这些库,可以连接到远程Linux主机,执行命令如`ls -lh`,并获取命令的输出结果。这些库在自动化运维和远程管理场景中非常实用。
摘要由CSDN通过智能技术生成

JAVA

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import com.jcraft.jsch.ChannelExec;

import com.jcraft.jsch.JSch;

import com.jcraft.jsch.JSchException;

import com.jcraft.jsch.Session;

public class SSHHelper {

/**

* 远程 执行命令并返回结果调用过程 是同步的(执行完才会返回)

* @param host linux主机名

* @param user 用户名

* @param psw 密码

* @param port 端口

* @param command 命令行

* @return

*/

public static String exec(String host,String user,String psw,int port,String command){

StringBuffer sb= new StringBuffer();

Session session =null;

ChannelExec openChannel =null;

try {

JSch jsch=new JSch();

session = jsch.getSession(user, host, port);

java.util.Properties config = new java.util.Properties();

config.put("StrictHostKeyChecking", "no");//跳过公钥的询问

session.setConfig(config);

session.setPassword(psw);

session.connect(5000);//设置连接的超时时间

openChannel = (ChannelExec) session.openChannel("exec");

openChannel.setCommand(command); //执行命令

int exitStatus = openChannel.getExitStatus(); //退出状态为-1,直到通道关闭

System.out.println(exitStatus);

// 下面是得到输出的内容

openChannel.connect();

InputStream in = openChannel.getInputStream();

BufferedReader reader = new BufferedReader(new InputStreamReader(in));

String buf = null;

while ((buf = reader.readLine()) != null) {

sb.append(buf+"\n");

}

} catch (JSchException | IOException e) {

sb.append(e.getMessage()+"\n");

}finally{

if(openChannel!=null&&!openChannel.isClosed()){

openChannel.disconnect();

}

if(session!=null&&session.isConnected()){

session.disconnect();

}

}

return sb.toString();

}

public static void main(String args[]){

String exec = exec("***.***.***.***", "***", "***", 22, "ls");

System.out.println(exec);

}

}

Python

import paramiko

ssh = paramiko.SSHClient()

ssh.load_system_host_keys()

ssh.connect(hostname='***.***.***.***', port=22,username='root', password='password')

stdin, stdout, stderr = ssh.exec_command("ls -lh")

print(stdout.read().decode('UTF-8', 'ignore'))

ssh.close()

C#

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using Tamir.SharpSsh;

namespace SSHTest{

class Program

{

public static string ssh_conn(string ip, string root, string pass, string command)

{

SshStream ssh = new SshStream(ip, root, pass);

ssh.Prompt = "#";

ssh.RemoveTerminalEmulationCharacters = true;

string response = ssh.ReadResponse();

ssh.Write(command);

ssh.Flush();

ssh.Write("/n");

response = ssh.ReadResponse();

//Console.WriteLine(response);

return response;

}

}

}

C++

#include

#include "ssh2.h"

int main(int argc, const char * argv[])

{

using namespace std;

using namespace fish;

Ssh2 ssh("***.***.***.***");

ssh.Connect("test","xxxxxx");

Channel* channel = ssh.CreateChannel();

channel->Write("cd /;pwd");

cout<Read()<

channel->Write("ssh 127.0.0.1");

cout<Read(":")<

channel->Write("xxxxxx");

cout<Read()<

channel->Write("pwd");

cout<Read()<

delete channel;

return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值