初级会员
  • 第 8108 位会员
  • xl_9300
  • xl_9300@126.com
  • 2017-04-19 06:35:35
  • Offline
  • 0

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • ``` client, err := ssh.Dial("tcp", "192.168.1.71:22", &ssh.ClientConfig{ User: "kevin", Auth: []ssh.AuthMethod{ ssh.Password("ajiao0106"), }, //需要验证服务端,不做验证返回nil就可以,点击HostKeyCallback看源码就知道了 HostKeyCallback: func(hostname string, remote net.Addr, key ssh.PublicKey) error { return nil }, }) fmt.Println(err) fmt.Println(client) ```