obtendo conexão recusada ao tentar o ssh remoto para o servidor lubuntu [closed]

0

minhas tentativas de ssh remoto para o meu tempo limite do servidor Lubbert SSH. Eu tentei habilitar o encaminhamento de porta no meu roteador wifi. Como parte da solução de problemas (e para segurança), alterei a entrada de porta # do arquivo sshd_config de 22 para 1022. A conexão LAN sempre funciona (mesmo roteador wifi).

O incrível é que a conexão LAN ainda funciona, embora o cliente SSH ainda esteja usando a porta 22. Estou surpreso com isso, já que o arquivo SSHD_Config agora é a porta 1022.

Alguma idéia disso e também como solucionar o problema de conexão remota?

Obrigado

pergunta editada para incluir sshd_config por comentário de Robert Reidl

#   $OpenBSD: sshd_config,v 1.101 2017/03/14 07:19:07 djm Exp $

# This is the sshd server system-wide configuration file.  See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented.  Uncommented options override the
# default value.

#Port 1022
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::

#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_ecdsa_key
#HostKey /etc/ssh/ssh_host_ed25519_key

# Ciphers and keying
#RekeyLimit default none

# Logging
#SyslogFacility AUTH
#LogLevel INFO

# Authentication:

#LoginGraceTime 2m
#PermitRootLogin prohibit-password
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10

#PubkeyAuthentication yes

# Expect .ssh/authorized_keys2 to be disregarded by default in future.
#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2

#AuthorizedPrincipalsFile none

#AuthorizedKeysCommand none
#AuthorizedKeysCommandUser nobody

# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes

# To disable tunneled clear text passwords, change to no here!
#PasswordAuthentication yes
#PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes
#GSSAPIKeyExchange no

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
PrintMotd no
#PrintLastLog yes
#TCPKeepAlive yes
#UseLogin no
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none

# no default banner path
#Banner none

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

# override default of no subsystems
Subsystem   sftp    /usr/lib/openssh/sftp-server

# Example of overriding settings on a per-user basis
#Match User anoncvs
#   X11Forwarding no
#   AllowTcpForwarding no
#   PermitTTY no
#   ForceCommand cvs server

Informação adicional:

port fwd config in 
router: ext: 0.0.0.0 1022 / 1022 
int: 192.168.0.17 1022 / 1022 22 
udp/tcp:    Both enabled:   Yes


UFW config 

To                         Action      From
--                         ------      ----
1022                       ALLOW IN    Anywhere
22/tcp                     ALLOW IN    Anywhere
1022 (v6)                  ALLOW IN    Anywhere (v6)
22/tcp (v6)                ALLOW IN    Anywhere (v6)
    
por or Else 22.01.2018 / 03:32

3 respostas

1

Remova o # na frente de Port 1022 e na frente de qualquer outra linha que você queira alterar e reinicie sshd .

Isso comenta cada linha, o que significa que suas alterações não são usadas e os padrões são.

    
por m_krsic 23.01.2018 / 19:00
0

Além disso, ao abrir portas através do seu firewall / roteador, você pode fazer a porta de destino como 22. So Source port 1022 destination port 22. Dessa forma, em sua rede local, você pode fazer coisas sob a porta padrão 22, sem precisar alterar configurações e tal. No entanto, ao conectar-se a partir do wan, você usaria a porta 1022 e seu roteador a converteria para a porta 22 em seu endereço IP da máquina na rede. No seu exemplo, o roteador ext: 0.0.0.0 1022/1022 int: 192.168.0.17 22/22 udp / tcp: ambos habilitados: Sim

apenas certifique-se de alterá-lo de volta para 22 em / etc / ssh / sshd_config

    
por JesseMP 23.01.2018 / 19:50
0

Ha HA depois de desligar o UFW e desligar o Firewall do roteador, consegui fazer o ssh a partir de um local remoto. Transformando o Firewall do roteador em "baixo", ainda posso ssh a partir de um local remoto. As configurações médias e altas para o encaminhamento remoto ssh bloco de firewall, aparentemente. muito interessante. fwiw o roteador é um ARRIS SBG6782-AC. Obrigado a todos

    
por or Else 26.01.2018 / 02:49