mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Turn on X11Forwarding by default on the server. Any risk is to the client,
where it is already disabled by default. Reminded by: peter
This commit is contained in:
parent
1357c5d3cc
commit
1610cd7fa6
2 changed files with 2 additions and 2 deletions
|
|
@ -113,7 +113,7 @@ fill_default_server_options(ServerOptions *options)
|
|||
if (options->print_motd == -1)
|
||||
options->print_motd = 1;
|
||||
if (options->x11_forwarding == -1)
|
||||
options->x11_forwarding = 0;
|
||||
options->x11_forwarding = 1;
|
||||
if (options->x11_display_offset == -1)
|
||||
options->x11_display_offset = 10;
|
||||
if (options->strict_modes == -1)
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ IgnoreRhosts yes
|
|||
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
|
||||
#IgnoreUserKnownHosts yes
|
||||
StrictModes yes
|
||||
X11Forwarding no
|
||||
X11Forwarding yes
|
||||
X11DisplayOffset 10
|
||||
PrintMotd yes
|
||||
KeepAlive yes
|
||||
|
|
|
|||
Loading…
Reference in a new issue