gpt4 book ai didi

go - 使用 ssh 和交互式 shell 时如何模拟按键

转载 作者:行者123 更新时间:2023-12-04 03:35:16 27 4
gpt4 key购买 nike

卡在按键上

我正在尝试创建一个脚本,用于从 HP proCurve 交换机进行备份。为此,我使用了包 golang.org/x/crypto/ssh

Golang 对我来说并不陌生,我有相当多的“围棋”知识。但是我在建立连接后卡住了。开关要求我按任意键继续,但我不知道如何模拟按键。 (见下图)

Terminal response


当前代码

这是我目前使用的代码:

package main

import (
"bufio"
"fmt"
"log"
"net"
"os"

"golang.org/x/crypto/ssh"
)

type password string

func main() {

host := "192.168.2.43:22"
user := "admin"
pass := "admin"

config := &ssh.ClientConfig{
User: user,
Auth: []ssh.AuthMethod{
ssh.Password(pass),
},
Config: ssh.Config{
KeyExchanges: []string{"diffie-hellman-group-exchange-sha1", "diffie-hellman-group1-sha1"},
},

HostKeyCallback: ssh.HostKeyCallback(func(hostname string, remote net.Addr, key ssh.PublicKey) error { return nil }),
}
conn, err := ssh.Dial("tcp", host, config)
if err != nil {
panic("Failed to dial: " + err.Error())
}
defer conn.Close()

// Each ClientConn can support multiple interactive sessions,
// represented by a Session.
session, err := conn.NewSession()
if err != nil {
panic("Failed to create session: " + err.Error())
}
defer session.Close()

// Set IO
session.Stdout = os.Stdout
session.Stderr = os.Stderr
in, _ := session.StdinPipe()

// Set up terminal modes
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
}

// Request pseudo terminal
if err := session.RequestPty("xterm", 80, 40, modes); err != nil {
log.Fatalf("request for pseudo terminal failed: %s", err)
}

// Start remote shell
if err := session.Shell(); err != nil {
log.Fatalf("failed to start shell: %s", err)
}

// Accepting commands
for {

reader := bufio.NewReader(os.Stdin)
str, _ := reader.ReadString('\n')
fmt.Fprint(in, str)

// Solutition to keypress to continue

fmt.Fprint(in, " \n")
fmt.Fprint(in, "show run \n")

}

}


我努力实现的目标

但是当我手动按下任意键时,脚本将完美地运行所有命令。那么有谁知道我如何在下面的代码中模拟任何键:


for {

reader := bufio.NewReader(os.Stdin)
str, _ := reader.ReadString('\n')
fmt.Fprint(in, str)

// Solutition to keypress to continue

fmt.Fprint(in, " \n")
fmt.Fprint(in, "show run \n")

}

最佳答案

在写入 ssh 连接之前,您正在从标准输入中读取数据。因此,此屏幕只能通过手动干预跳过。

命令行标准输入的读取应该在您要在主机上运行的任何初始命令之后进行,因此它的组织方式如下:

    // Requires keypress to continue
fmt.Fprint(in, " \n")
// List out useful information
fmt.Fprint(in, "show run \n")

// Forward user commands to the remote shell
for {
reader := bufio.NewReader(os.Stdin)
str, _ := reader.ReadString('\n')
fmt.Fprint(in, str)
}

关于go - 使用 ssh 和交互式 shell 时如何模拟按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67031719/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com