(本地)Web 浏览器如何通过 AWS E2 进行 SSH 隧道流量?
嘿,我有一个安装了 raspbian 的 raspberry pi 我想知道我是否可以使用 localhost.run,这是一个允许使用 ssh 进行隧道传输的网站,我可以将它与希望运行 java 版本的 mc 服务器一起使用吗,如果它安全且可靠?
基于 linux 的“headless-box-1”上的一个应用程序正在监听http://127.0.0.1:7860上的 HTTP 连接。这限制了与自我的联系。
但我希望它正在侦听来自 LAN 上任何计算机的连接。
有没有我可以在 headless-box-1 (192.168.1.100) 上运行的命令,它可以让我在笔记本电脑 1 上浏览到http://192.168.1.100 :7861,它会双向路由所有从局域网公共端口:7861 到仅本地主机:7860 的通信?
在此设置中,安全性和 HTTPS 不是问题。我找到的所有答案都是针对 ssh-tunneling 的,这与笔记本电脑端的 ssh over 有关,这似乎过分了。
该设备不断尝试连接到特定已知端口上的远程服务器。
在远程服务器上,除了打开的 TCP 端口之外什么都没有。
我想将远程服务器的端口转发到我的电脑并打开一个 TCP 服务器来读取数据。
最终,我想使用 Python 来实现这一点,
但与此同时,我正在尝试使用 ssh 来执行此操作:ssh -N -R 10000:localhost:10000 username@hostname
,
并且在我这边(我的电脑),我试图打开一个套接字(使用 python)来收听10000端口,尝试打开Hercules模拟TCP服务器,但没有收到任何数据。
显然,缺少了什么,它是什么?
ps 在远程服务器上打开 TCP 服务器将获取数据,
但我需要控制来自 My Pc 的连接。
我尝试创建一个 SSH 隧道,localhost:80 -> localhost:81 我在本地生成我的密钥并在云中的授权密钥上添加 .pub。但我收到了,权限被拒绝(公钥)。好的,使用 root 访问的密钥不同(我输入了 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).
我有两台服务器,server1
并且server2
,我可以通过以下方式server2
连接server1
:
localUser@localMachine $ ssh user1@server1
user1@server1 $ ssh user2@server2
user2@server2 $
我可以使用以下方法一步完成:
localUser@localMachine $ ssh -t user1@server1 ssh user2@server2
user2@server2 $
我希望能够简单地ssh server2
从我的本地机器运行并直接连接。我可以将上面的命令设置为别名,但我更愿意通过~/.ssh/config
. 问题是我需要在连接到 server2 时使用 server1 上存在的 ssh 凭据,并且我不想将它们复制到我的本地计算机上。这意味着我通过将以下内容添加到我的 local 来设置它的“正常”方式~/.ssh/config
失败:
Host server1
Hostname server1.example.com
User user1
Host server2
Hostname server2.example.com
User user2
ProxyJump server1
如果我现在尝试连接,我会得到:
$ ssh server2
[email protected]: Permission denied (publickey).
这是因为我需要使用~/.ssh/id_rsa_pub
密钥,server1
而不是我本地机器上的密钥。那么,如何设置我的本地~/.ssh/config
以便它连接到server2
、通过server1
和使用中存在的凭据server1
?
所有机器都是 Linux 机器,遥控器运行 Ubuntu Server 18.04.4,我的本地机器运行 Arch Linux。
我尝试了 Hauke's answer 中给出的解决方案,并将以下内容添加到我的~/.ssh/config
:
Host server1server2
Hostname server1
User user1
RemoteCommand ssh [email protected]
这几乎可以工作!我现在可以连接到server2
using ssh server1server2
,但没有收到提示:
localUser@localMachine $ ssh server1server2
Pseudo-terminal will not be allocated because stdin is not a terminal.
hostname
server2
正如您在上面看到的,我已连接到server2
甚至可以在那里运行命令,但我没有得到提示。然后我尝试在配置文件中添加-t -t
命令ssh
:
Host server1server2
Hostname server1
User user1
RemoteCommand ssh -t -t [email protected]
这给了我一个提示,但是我的 shell 的初始化文件没有被读取,并且按Ctrl+C会终止ssh
连接。ssh user2@server1
我需要它的行为方式与我已经完成然后从 server1完全相同ssh user2@server2
。这意味着应该读取我的正常 shell 初始化文件并且 Ctrl+C 不应该终止会话。
我注意到,当我在本地创建从我的 PC 到远程的隧道时,对于某些设备(通常是路由器),通过 http 或 https 的连接不会发生。我得到一个弹出窗口,上面写着:
The 'Host' field contained in Http header is invalid
如果在文件文件中设置以下内容hosts
:
127.0.0.1 modemtim
我使用modemtim连接,而不仅仅是127.0.0.1,一切正常。
SSH 命令:
ssh -L 8080:<IP_REMOTE_ROUTER>:80 <USER>@<REMOTE_TUNNEL>
为什么?
我正在尝试第一次连接到 SSH。但它说
The authenticity of host '[<host>]:<port>' can't be established.
ECDSA key fingerprint is SHA256:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '[<host>]:<port>' (ECDSA) to the list of known hosts.
root@<host>: Permission denied (publickey).
是不是有违章之类的?
sshpass -p '1234567*' ssh -L 1080:192.168.0.1:2222 [email protected] -p 4422 -f -C -N
上述代码适用于 macOS(通过 gateway.com:4422 使用用户名 admin 和密码 1234567* 创建到 192.168.0.1:2222 的 1080 隧道)。\
它在 Linux 上不起作用 - 该进程似乎立即运行并终止。