웹 서버의 SSH 터널, localhost:80 -> localhost:81, 그러나 권한이 거부되었습니다(공개 키).

웹 서버의 SSH 터널, localhost:80 -> localhost:81, 그러나 권한이 거부되었습니다(공개 키).

SSH 터널 설정을 시도했습니다(localhost:80 -> localhost:81). 로컬에서 키를 생성하고 클라우드의 authenticate_keys에 .pub를 추가했습니다. 그런데 승인이 거부되었습니다(공개키). 알겠습니다. 루트 액세스와 다른 키가 있고(저는 user@ip를 입력했습니다), "사용자"에게 터미널 액세스 권한을 부여하는 키가 이미 서버에 있습니다.

제가 이해한 바에 따르면, 동일한 키를 사용하고 싶지 않으면 새 사용자를 만들어야 합니다. 그럼에도 불구하고 동일한 기존 키를 사용할 수 없습니다.

원격 포트 포워딩인지 동적 포트 포워딩인지도 모르겠습니다.

편집하다:

/etc/ssh/sshd_config서버의 파일

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

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

# 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.

Include /etc/ssh/sshd_config.d/*.conf

#Port 22
#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 no
#PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware 
issues with
# some PAM modules and threads)
KbdInteractiveAuthentication 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 KbdInteractiveAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via KbdInteractiveAuthentication 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 KbdInteractiveAuthentication to 'no'.
UsePAM yes

#AllowAgentForwarding yes
#AllowTcpForwarding yes
#GatewayPorts no
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
PrintMotd no
#PrintLastLog yes
#TCPKeepAlive yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /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

다음 명령을 사용하여 터널링을 시도합니다. ssh -R 81:localhost:80 ubuntu@localhost 포트 80의 데이터를 암호화하고 포트 81로 전달합니다.

터미널 응답:ubuntu@localhost: Permission denied (publickey).

답변1

나는 마침내 그 뒤에 숨은 순서를 이해했습니다.

서버에서 SSH 터널(명령어)을 사용해야 한다고 생각해서 오류가 발생했습니다.

그러나 명령은 클라이언트에 있습니다. SSH 포트 22를 통해 일어나는 모든 일을 이해하지 못합니다. 그러니까...내 서비스 포트는 노출될 필요가 없습니다.

ssh -L targetPort:localhost:webServerPort -C -N -l user server_ip

이것은 클라이언트에서 실행되면서 작동합니다. SSH는 포트 22를 사용하여 webServerPort 정보를 제공합니다.

관련 정보