Try another ssh port if the current one is taken.
This commit is contained in:
parent
b49d74d999
commit
956b9ded0a
|
@ -34,12 +34,17 @@ func (s *stepForwardSSH) Run(state multistep.StateBag) multistep.StepAction {
|
||||||
|
|
||||||
for {
|
for {
|
||||||
sshHostPort = offset + config.SSHHostPortMin
|
sshHostPort = offset + config.SSHHostPortMin
|
||||||
|
if sshHostPort >= config.SSHHostPortMax {
|
||||||
|
offset = 0
|
||||||
|
sshHostPort = config.SSHHostPortMin
|
||||||
|
}
|
||||||
log.Printf("Trying port: %d", sshHostPort)
|
log.Printf("Trying port: %d", sshHostPort)
|
||||||
l, err := net.Listen("tcp", fmt.Sprintf(":%d", sshHostPort))
|
l, err := net.Listen("tcp", fmt.Sprintf(":%d", sshHostPort))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
defer l.Close()
|
defer l.Close()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
offset++
|
||||||
}
|
}
|
||||||
ui.Say(fmt.Sprintf("Found port for SSH: %d.", sshHostPort))
|
ui.Say(fmt.Sprintf("Found port for SSH: %d.", sshHostPort))
|
||||||
|
|
||||||
|
|
|
@ -42,12 +42,17 @@ func (s *StepForwardSSH) Run(state multistep.StateBag) multistep.StepAction {
|
||||||
|
|
||||||
for {
|
for {
|
||||||
sshHostPort = offset + s.HostPortMin
|
sshHostPort = offset + s.HostPortMin
|
||||||
|
if sshHostPort >= s.HostPortMax {
|
||||||
|
offset = 0
|
||||||
|
sshHostPort = s.HostPortMin
|
||||||
|
}
|
||||||
log.Printf("Trying port: %d", sshHostPort)
|
log.Printf("Trying port: %d", sshHostPort)
|
||||||
l, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", sshHostPort))
|
l, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", sshHostPort))
|
||||||
if err == nil {
|
if err == nil {
|
||||||
defer l.Close()
|
defer l.Close()
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
offset++
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a forwarded port mapping to the VM
|
// Create a forwarded port mapping to the VM
|
||||||
|
|
Loading…
Reference in New Issue