ssh.go 2.0 KB
Newer Older
E
eoLinker API Management 已提交
1 2 3
package utils

import (
Y
Your Name 已提交
4 5 6
	"fmt"
	"net"
	"time"
Y
Your Name 已提交
7 8

	"golang.org/x/crypto/ssh"
Y
Your Name 已提交
9
	// "io/ioutil"
E
eoLinker API Management 已提交
10 11
)

Y
Your Name 已提交
12 13
//SSHClient SSHClient
func SSHClient(user, password, host, key string, port int, cipherList []string) (*ssh.Client, error) {
Y
Your Name 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26
	var (
		auth         []ssh.AuthMethod
		addr         string
		clientConfig *ssh.ClientConfig
		client       *ssh.Client
		config       ssh.Config
		err          error
	)
	// get auth method
	auth = make([]ssh.AuthMethod, 0)
	if key == "" {
		auth = append(auth, ssh.Password(password))
	} else {
E
eoLinker API Management 已提交
27

Y
Your Name 已提交
28 29 30 31 32
		pemBytes := []byte(key)
		var signer ssh.Signer
		if password == "" {
			signer, err = ssh.ParsePrivateKey(pemBytes)
		} else {
E
eoLinker API Management 已提交
33
			// 使用私钥解析密码
Y
Your Name 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
			signer, err = ssh.ParsePrivateKeyWithPassphrase(pemBytes, []byte(password))
		}
		if err != nil {
			return nil, err
		}
		auth = append(auth, ssh.PublicKeys(signer))
	}

	if len(cipherList) == 0 {
		config = ssh.Config{
			Ciphers: []string{"aes128-ctr", "aes192-ctr", "aes256-ctr", "aes128-gcm@openssh.com", "arcfour256", "arcfour128", "aes128-cbc", "3des-cbc", "aes192-cbc", "aes256-cbc"},
		}
	} else {
		config = ssh.Config{
			Ciphers: cipherList,
		}
	}
	clientConfig = &ssh.ClientConfig{
		User:    user,
		Auth:    auth,
		Timeout: 30 * time.Second,
		Config:  config,
		HostKeyCallback: func(hostname string, remote net.Addr, key ssh.PublicKey) error {
			return nil
		},
	}

	// connet to ssh
	addr = fmt.Sprintf("%s:%d", host, port)

	if client, err = ssh.Dial("tcp", addr, clientConfig); err != nil {
		return nil, err
	}
Y
Your Name 已提交
67 68
	return client, nil
}
Y
Your Name 已提交
69

Y
Your Name 已提交
70 71 72 73 74 75
//SessionConnect SessionConnect
func SessionConnect(client *ssh.Client) (*ssh.Session, error) {
	var (
		session *ssh.Session
		err     error
	)
Y
Your Name 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
	// create session
	if session, err = client.NewSession(); err != nil {
		return nil, err
	}

	modes := ssh.TerminalModes{
		ssh.ECHO:          0,     // disable echoing
		ssh.TTY_OP_ISPEED: 14400, // input speed = 14.4kbaud
		ssh.TTY_OP_OSPEED: 14400, // output speed = 14.4kbaud
	}

	if err := session.RequestPty("xterm", 80, 40, modes); err != nil {
		return nil, err
	}

	return session, nil
}