diff options
Diffstat (limited to 'internal/route/install.go')
-rw-r--r-- | internal/route/install.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/route/install.go b/internal/route/install.go index 9a8f2e39..86462a8a 100644 --- a/internal/route/install.go +++ b/internal/route/install.go @@ -98,9 +98,10 @@ func GlobalInit(customConf string) error { } if conf.SSH.StartBuiltinServer { - ssh.Listen(conf.SSH.ListenHost, conf.SSH.ListenPort, conf.SSH.ServerCiphers) + ssh.Listen(conf.SSH.ListenHost, conf.SSH.ListenPort, conf.SSH.ServerCiphers, conf.SSH.ServerMACs) log.Info("SSH server started on %s:%v", conf.SSH.ListenHost, conf.SSH.ListenPort) log.Trace("SSH server cipher list: %v", conf.SSH.ServerCiphers) + log.Trace("SSH server MAC list: %v", conf.SSH.ServerMACs) } if conf.SSH.RewriteAuthorizedKeysAtStart { |