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:
Kris Kennaway 2000-09-02 03:49:22 +00:00
parent 1357c5d3cc
commit 1610cd7fa6
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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