fixed ssh port forwarding

This commit is contained in:
afeiszli 2022-02-21 16:39:52 -05:00
parent ca1c69264c
commit 4dc9f74ae4

View file

@ -50,10 +50,12 @@ func portForwardServices() error {
case "dns":
err = iptablesPortForward("coredns", "53", "53", false)
case "ssh":
err = iptablesPortForward("127.0.0.1", "22", "22", true)
err = iptablesPortForward("netmaker", "22", "22", false)
default:
params := strings.Split(service, ":")
err = iptablesPortForward(params[0], params[1], params[2], true)
if len(params) == 3 {
err = iptablesPortForward(params[0], params[1], params[2], true)
}
}
if err != nil {
return err