You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client/cmd/root.go
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,6 @@ const (
35
35
wireguardPortFlag="wireguard-port"
36
36
networkMonitorFlag="network-monitor"
37
37
disableAutoConnectFlag="disable-auto-connect"
38
-
serverSSHAllowedFlag="allow-server-ssh"
39
38
extraIFaceBlackListFlag="extra-iface-blacklist"
40
39
dnsRouteIntervalFlag="dns-router-interval"
41
40
enableLazyConnectionFlag="enable-lazy-connection"
@@ -64,7 +63,6 @@ var (
64
63
customDNSAddressstring
65
64
rosenpassEnabledbool
66
65
rosenpassPermissivebool
67
-
serverSSHAllowedbool
68
66
interfaceNamestring
69
67
wireguardPortuint16
70
68
networkMonitorbool
@@ -176,7 +174,6 @@ func init() {
176
174
)
177
175
upCmd.PersistentFlags().BoolVar(&rosenpassEnabled, enableRosenpassFlag, false, "[Experimental] Enable Rosenpass feature. If enabled, the connection will be post-quantum secured via Rosenpass.")
178
176
upCmd.PersistentFlags().BoolVar(&rosenpassPermissive, rosenpassPermissiveFlag, false, "[Experimental] Enable Rosenpass in permissive mode to allow this peer to accept WireGuard connections without requiring Rosenpass functionality from peers that do not have Rosenpass enabled.")
179
-
upCmd.PersistentFlags().BoolVar(&serverSSHAllowed, serverSSHAllowedFlag, false, "Allow SSH server on peer. If enabled, the SSH server will be permitted")
180
177
upCmd.PersistentFlags().BoolVar(&autoConnectDisabled, disableAutoConnectFlag, false, "Disables auto-connect feature. If enabled, then the client won't connect automatically when the service starts.")
181
178
upCmd.PersistentFlags().BoolVar(&lazyConnEnabled, enableLazyConnectionFlag, false, "[Experimental] Enable the lazy connection feature. If enabled, the client will establish connections on-demand. Note: this setting may be overridden by management configuration.")
0 commit comments