Ubuntu Server, vários usuários remotos simultâneos

2

Estou configurando um novo Ubuntu Server (16.04) para o qual até 50 pessoas terão acesso ao mesmo tempo. Eu segui este tutorial para configurar o XRDP com o xfce e tudo está bem até agora, o problema é que apenas 10 usuários podem estar logados ao mesmo tempo. Alguém pode ajudar sobre isso. obrigada.

    
por S.Ghanim 06.02.2017 / 08:14

2 respostas

3

Eu descobri a solução, eu aumentei o MaxSessions no arquivo /etc/xrdp/sesman.ini.

obrigado George sua resposta serviu como uma ótima pista.

    
por S.Ghanim 06.02.2017 / 12:14
4

Você precisa aumentar a conexão padrão permitida usando o

/etc/ssh/sshd_config

Arquivo, adicione as linhas

MaxSessions 50
MaxStartups 50:30:100

para esse arquivo. Então reinicie seu sistema.

Formulário man sshd_config (5):

MaxSessions
         Specifies the maximum number of open shell, login or subsystem
         (e.g. sftp) sessions permitted per network connection.  Multiple
         sessions may be established by clients that support connection
         multiplexing.  Setting MaxSessions to 1 will effectively disable
         session multiplexing, whereas setting it to 0 will prevent all
         shell, login and subsystem sessions while still permitting for-
         warding.  The default is 10.

 MaxStartups
         Specifies the maximum number of concurrent unauthenticated con-
         nections to the SSH daemon.  Additional connections will be
         dropped until authentication succeeds or the LoginGraceTime
         expires for a connection.  The default is 10:30:100.

         Alternatively, random early drop can be enabled by specifying the
         three colon separated values ''start:rate:full'' (e.g.
         "10:30:60").  sshd(8) will refuse connection attempts with a
         probability of ''rate/100'' (30%) if there are currently
         ''start'' (10) unauthenticated connections.  The probability
         increases linearly and all connection attempts are refused if the
         number of unauthenticated connections reaches ''full'' (60).
    
por George Udosen 06.02.2017 / 09:51