struct mapping, initialize conneciton works

This commit is contained in:
Wyatt Miller 2019-08-13 11:43:40 -04:00
parent e80d9c4563
commit 3594b1e5f1
2 changed files with 32 additions and 5 deletions

View File

@ -1,13 +1,11 @@
package main
import "fmt"
func main() {
//fmt.Println("Hello!")
//var config Configuration
config := initializeConfig("config.yaml")
fmt.Println(config.Hosts)
sshConn, sshConfig := initializeConnection(config)
sshConn.DialConnection(sshConfig)
}

31
ssh.go
View File

@ -1,8 +1,37 @@
package main
type sshConnection struct {
import (
"fmt"
"golang.org/x/crypto/ssh"
)
type SSHConnection struct {
Username string
Password string
Port string
Hosts []string
}
func initializeConnection(config Configuration) (SSHConnection, *ssh.ClientConfig) {
var sshConn SSHConnection
sshConn.Username = config.Username
sshConn.Password = config.Password
sshConn.Port = config.Port
sshConn.Hosts = config.Hosts
sshConfig := &ssh.ClientConfig{
User: sshConn.Username,
Auth: []ssh.AuthMethod{
ssh.Password(sshConn.Password),
},
}
return sshConn, sshConfig
}
func (sshConn SSHConnection) DialConnection(sshConnec *ssh.ClientConfig) {
for _, j := range sshConn.Hosts {
fmt.Println(j)
}
}