mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 07:59:23 +00: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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65357
@ -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 New Issue
Block a user