在Go 中使用pem/Key 進行SSH 驗證
使用私鑰連接到遠端SSH 伺服器是一種便捷的方法自動化任務並管理資源。 Go程式語言提供了ssh套件,它提供了對建立SSH連接的支援。但是,文件對於如何使用私鑰進行身份驗證可能有些不清楚。
要使用帶有pem 金鑰的SSH 連接到伺服器,您可以按照以下步驟操作:
範例:
<code class="go">package main import ( "crypto/x509" "fmt" "io/ioutil" "log" "net" "os" "golang.org/x/crypto/ssh" ) func main() { // Parse the private key key, err := ioutil.ReadFile("mykey.pem") if err != nil { log.Fatal(err) } // Get the signer signer, err := ssh.ParsePrivateKey(key) if err != nil { log.Fatal(err) } // Switch to using an agent if SSH_AUTH_SOCK is set if authSock := os.Getenv("SSH_AUTH_SOCK"); authSock != "" { sock, err := net.Dial("unix", authSock) if err != nil { log.Fatalf("Failed to connect to agent: %v", err) } _ = sock // TODO(harsh) // Implement working with agent. } // Create the AuthMethod authMethods := []ssh.AuthMethod{ssh.PublicKeys(signer)} // Set up the ClientConfig clientConfig := &ssh.ClientConfig{ User: "username", Auth: authMethods, HostKeyCallback: ssh.InsecureIgnoreHostKey(), } // Dial the connection client, err := ssh.Dial("tcp", "aws-hostname:22", clientConfig) if err != nil { log.Fatal(err) } // Create a session session, err := client.NewSession() if err != nil { log.Fatal(err) } // Execute a command output, err := session.Output("whoami") if err != nil { log.Fatal(err) } fmt.Println("Output:", string(output)) // Close the session and client _ = session.Close() _ = client.Close() }</code>
透過以下步驟,您可以使用私鑰建立安全的SSH 連接,並使用Go 標準庫的ssh 套件在遠端伺服器上執行命令。
以上是如何在 Go 中使用 PEM/Key 進行 SSH 驗證?的詳細內容。更多資訊請關注PHP中文網其他相關文章!