Documentation ¶
Index ¶
Constants ¶
const ( STATUS_CONNECTING = "Connecting..." STATUS_CONNECTED = "Connected" STATUS_CLOSED = "Closed" )
The ssh connection available statuses
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JumpHostConf ¶ added in v0.6.3
type JumpHostConf struct { // user@server:port URI string `yaml:"uri"` Identity string `yaml:"identity"` Password string `yaml:"password"` }
JumpHostConf holds a jump host configuration
type RemoteShell ¶ added in v0.7.0
type RemoteShell struct {
// contains filtered or unexported fields
}
RemoteShell handles remote shell connections. It uses an ssh connection object and requests a shell inside a pty to the remote server
func NewRemoteShell ¶ added in v0.7.0
func NewRemoteShell(sshConn *SshConnection) *RemoteShell
NewRemoteShell creates a new RemoteShell object
func (*RemoteShell) Start ¶ added in v0.7.0
func (rs *RemoteShell) Start(cmd string, requestPty bool)
Start starts the remote shell
func (*RemoteShell) Stop ¶ added in v0.7.0
func (rs *RemoteShell) Stop()
Stop stops the remote shell
type SshClientConf ¶ added in v0.6.3
type SshClientConf struct { Identity string `yaml:"identity"` Password string `yaml:"password"` KnownHosts string `yaml:"known_hosts"` ServerURI string `yaml:"server"` // it this value is true host keys are not checked // against known_hosts file Insecure bool `yaml:"insecure"` Quiet bool `yaml:"quiet"` JumpHosts []*JumpHostConf `yaml:"jump_hosts"` }
SshClientConf holds the ssh client configuration
func (*SshClientConf) GetServerEndpoint ¶ added in v0.6.3
func (c *SshClientConf) GetServerEndpoint() *utils.Endpoint
GetServerEndpoint Builds a server endpoint object from the Server string
type SshConnection ¶
type SshConnection struct { Client *ssh.Client // used to inform the tunnels if this sshClient // is Connected. Tunnels will wait on this waitGroup to // know if the ssh client is Connected or not Connected sync.WaitGroup // contains filtered or unexported fields }
SshConnection implements an ssh client
func NewSshConnection ¶
func NewSshConnection(conf *SshClientConf) *SshConnection
NewSshConnection creates a new SshConnection instance
func (*SshConnection) GetConnectionStatus ¶ added in v0.6.3
func (s *SshConnection) GetConnectionStatus() string
GetConnectionStatus returns the current connection status as a string
func (*SshConnection) GrabPubKey ¶ added in v0.6.3
func (s *SshConnection) GrabPubKey()
GrabPubKey is an helper function that gets server pubkey
func (*SshConnection) Start ¶
func (s *SshConnection) Start()
Start connects the ssh client to the remote server and keeps it connected sending keep alive packet and reconnecting in the event of network failures
func (*SshConnection) Stop ¶ added in v0.7.0
func (s *SshConnection) Stop()
Stop closes the ssh conn instance client connection