Salut à tous.
J’aimerais savoir si (xserver-)xorg, autorise par défaut la connexion à distance ou c’est désactiver par défaut et autoriser seulement en local ?
Par défaut, la porte est fermée aux visiteurs trop curieux.
Par défaut, seules les connexions locales sont autorisées.
Pour autoriser les connexions X à distance, on doit donner l’autorisation depuis le système local.
/etc/X11/Xsession.d
[code]
This file is sourced by Xsession(5), not executed.
If xhost (from x11-xserver-utils) is installed, use it to give access
to the X server to any process from the same user on the local host.
Unlike other uses of xhost, this is safe since the kernel can check
the actual owner of the calling process.
if type xhost >/dev/null 2>&1; then
xhost +si:localuser:$(id -un) || :
fi[/code]
man xhost
OPTIONS
Xhost accepts the following command line options described below. For security, the options that affect access control may only
be run from the "controlling host". For workstations, this is the same machine as the server.[i] For X terminals, it is the login
host.
For security, the options that affect access control may only be run from the “controlling host”. : Par sécurité, les options qui touchent access control(liste des machines et utilisateurs autorisés) ne peuvent être lancées que depuis le système local, depuis le système ayant la main sur son service X.
Merci 
Bonjour,
Il est aussi possible de faire du X11 Forwarding via une connexion ssh (Faut installer Xming pour le client Windows);
Ou alors tu peux installer un serveur Xrdp.
A+