Golang Go语言中 crypto/ssh 执行远程命令

Golang Go语言中 crypto/ssh 执行远程命令

felix

前言

远程执行命令有什么用?为什么要远程执行命令? 如果你只有 2,3 台服务器需要管理的时候,远程执行命令确实没有没多大作用,你可以登录到每台服务器上去完成各种操作。 当你的服务器大于 3 台的时候,远程执行的命令的方式就可以大大提高你的生产力了。

如果你有一个可以远程执行命令的工具,那么就可以像操作单台机器那样操作多台机器,机器越多,效率提高的越多。 远程执行命令最常用的方法就是利用 SSH 协议,将命令发送到远程机器上执行,并获取返回结果。

连接

连接包含了认证,可以使用 password 或者 sshkey 2 种方式来认证。下面的示例为了简单,使用了密码认证的方式来完成连接。

package main

import ( “fmt” “github.com/mitchellh/go-homedir” “golang.org/x/crypto/ssh” “io/ioutil” “log” “time” )

func main(){ sshHost := “home.xxx.cn” sshUser := “x” sshPassword := “xxxxxx” sshType := “password”//password 或者 key sshKeyPath := “”//ssh id_rsa.id 路径" sshPort := 22

//创建 sshp 登陆配置
config := &ssh.ClientConfig{
	Timeout:         time.Second,//ssh 连接 time out 时间一秒钟, 如果 ssh 验证错误 会在一秒内返回
	User:            sshUser,
	HostKeyCallback: ssh.InsecureIgnoreHostKey(), //这个可以, 但是不够安全
	//HostKeyCallback: hostKeyCallBackFunc(h.Host),
}
if sshType == "password" {
	config.Auth = []ssh.AuthMethod{ssh.Password(sshPassword)}
} else {
	config.Auth = []ssh.AuthMethod{publicKeyAuthFunc(sshKeyPath)}
}



//dial 获取 ssh client
addr := fmt.Sprintf("%s:%d", sshHost, sshPort)
sshClient, err := ssh.Dial("tcp", addr, config)
if err != nil {
	log.Fatal("创建 ssh client 失败",err)
}
defer sshClient.Close()


//创建 ssh-session
session, err := sshClient.NewSession()
if err != nil {
	log.Fatal("创建 ssh session 失败",err)
}
defer session.Close()
//执行远程命令
combo,err := session.CombinedOutput("whoami; cd /; ls -al;echo https://github.com/dejavuzhou/felix")
if err != nil {
	log.Fatal("远程执行 cmd 失败",err)
}
log.Println("命令输出:",string(combo))

}

func publicKeyAuthFunc(kPath string) ssh.AuthMethod { keyPath, err := homedir.Expand(kPath) if err != nil { log.Fatal(“find key’s home dir failed”, err) } key, err := ioutil.ReadFile(keyPath) if err != nil { log.Fatal(“ssh key file read failed”, err) } // Create the Signer for this private key. signer, err := ssh.ParsePrivateKey(key) if err != nil { log.Fatal(“ssh key signer failed”, err) } return ssh.PublicKeys(signer) }

代码详解

1 配置ssh.ClientConfig

  • 建议 TimeOut 自定义一个比较端的时间
  • 自定义HostKeyCallback 如果像简便就使用 ssh.InsecureIgnoreHostKey回调, 这种方式不是很安全
  • publicKeyAuthFunc 如果使用key登陆 就需要着用这个函数量读取id_rsa私钥,当然你可以自定义这个访问让他支持字符串

2 ssh.Dial创建 ssh 客户端

拼接字符串得到 ssh 连接地址,同时不要忘记 defer client.Close()

3 sshClient.NewSession 创建 session 会话

  • 可以自定义 stdin,stdout
  • 可以创建 pty
  • 可以 SetEnv

3 执行命令 CombinedOutput run ...

打印结果

2019/05/21 18:39:22 命令输出: pi
总用量 91
drwxr-xr-x  23 root root  4096 5 月  20 11:13 .
drwxr-xr-x  23 root root  4096 5 月  20 11:13 ..
drwxr-xr-x   2 root root  4096 4 月   8 17:51 bin
drwxr-xr-x   6 root root  2560 1 月   1  1970 boot
drwxr-xr-x  14 root root  3280 5 月  21 12:17 dev
drwxr-xr-x  87 root root  4096 5 月  17 09:57 etc
drwxr-xr-x   4 root root  4096 5 月  17 09:56 home
drwxr-xr-x  16 root root  4096 4 月   8 17:58 lib
drwx------   2 root root 16384 4 月   8 18:24 lost+found
drwxr-xr-x   2 root root  4096 4 月   8 17:37 media
drwxr-xr-x   2 root root  4096 4 月  18 22:18 miwifi
drwxr-xr-x   2 root root  4096 4 月   8 17:37 mnt
-rw-r--r--   1 root root  2787 4 月  19 10:42 nginx_default_site.conf
drwxr-xr-x   3 root root  4096 4 月   8 17:48 opt
dr-xr-xr-x 139 root root     0 1 月   1  1970 proc
drwx------   6 root root  4096 5 月  20 11:12 root
drwxr-xr-x  24 root root   760 5 月  21 18:39 run
drwxr-xr-x   2 root root  4096 4 月  19 13:48 sbin
drwxr-xr-x   2 root root  4096 4 月   8 17:37 srv
dr-xr-xr-x  12 root root     0 5 月  21 18:25 sys
drwxrwxrwt   8 root root  4096 5 月  21 18:35 tmp
drwxr-xr-x  10 root root  4096 4 月   8 17:37 usr
drwxr-xr-x  12 root root  4096 4 月  19 10:10 var
drwxrwxrwx   3 root root  4096 4 月  19 10:35 www
https://github.com/dejavuzhou/felix

高级用法


更多关于Golang Go语言中 crypto/ssh 执行远程命令的实战教程也可以访问 https://www.itying.com/category-94-b0.html

3 回复

敢写 ssh.InsecureIgnoreHostKey() 然后不在显著位置解释风险的都是耍流氓

更多关于Golang Go语言中 crypto/ssh 执行远程命令的实战系列教程也可以访问 https://www.itying.com/category-94-b0.html


我写了! 大多数人都不看 hostkey 的.

在Golang中使用crypto/ssh包执行远程命令是一个常见的需求,它允许你通过SSH协议连接到远程服务器并执行命令。以下是一个简要的步骤指南和示例代码,帮助你理解如何实现这一功能:

  1. 导入必要的包: 你需要导入crypto/sshcrypto/x509encoding/pemio/ioutil以及log等包。

  2. 建立SSH连接: 使用ssh.Dial函数建立与远程服务器的SSH连接。你需要提供服务器的地址、端口以及认证信息(如用户名、密码或私钥)。

  3. 创建会话: 使用连接对象的NewSession方法创建一个新的SSH会话。

  4. 执行命令: 在会话中调用Run方法执行远程命令。

  5. 处理输出和错误: 从Run方法的返回值中获取命令的输出和错误信息。

  6. 关闭会话和连接: 执行完毕后,别忘了关闭会话和SSH连接以释放资源。

示例代码:

package main

import (
    "crypto/ssh"
    "crypto/x509"
    "encoding/pem"
    "fmt"
    "io/ioutil"
    "log"
)

func main() {
    // 读取私钥
    key, err := ioutil.ReadFile("path/to/private/key")
    if err != nil {
        log.Fatalf("unable to read private key: %v", err)
    }

    // 解析私钥
    parsedKey, err := ssh.ParsePrivateKey(key)
    if err != nil {
        log.Fatalf("unable to parse private key: %v", err)
    }

    // 连接到SSH服务器并执行命令(省略具体细节)
    // ...
    fmt.Println("Command executed successfully")
}

注意:省略了部分细节,如连接配置和命令执行的具体实现。

回到顶部