mirror of
https://github.com/electerm/electerm.git
synced 2026-04-25 05:25:50 +03:00
Page:
How to use ssh tunnel
Pages
AI model config guide
Auto data Sync
Autorun electerm when login to os
Command line usage
Connecting to Servers with Special Character Encoding
Connection Hopping Behavior Change in electerm since v1.50.65
Contributors
Create bookmark by AI
Create personal access token
Create secret gist
Custom CSS examples
Custom sync server
Deep link support
Default Profile
Develop in windows
Home
How Electerm Gets the Current Working Directory (pwd) in Terminal When "SFTP Follow Terminal Path" Is Enabled
How to use ssh tunnel
In windows can not access port 30975 issue
Know issues
MCP Widget Usage Guide
Migrate from Version 2 to Version 3
RDP File Transfer
RDP Limitation
SSH Certificate Authentication Guide for electerm
Sponsor electerm
Terminal keywords highlight regular expression exmaples
Troubleshoot
Upgrading from 1.x to 2.x: Data Loss Issue and Recovery
VNC‐session‐known‐issues
Warning about sftp follow ssh path function
WebDAV sync
Workspace Feature
batch operation
gitee data sync warning
privacy notice
proxy format
quick command templates
quick connect
ssh agent
No results
Table of Contents
This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
How to Use SSH Tunnel
English
When creating ssh bookmark, could set ssh tunnel to forward local request to remote server, or forward remote server request to local.
Examples:
- Set remote port 6000, local port 5000, set forward local request to remote, then when visiting http://127.0.0.1:5000, would get content from remote-server:6000, equals "ssh -L"
- Set remote port 6000, local port 5000, set forward remote request to local, then when visiting http://remote-server:6000, would get content from http://127.0.0.1:5000, equals "ssh -R"
中文
在创建 SSH 书签时,可以设置 SSH 隧道来转发本地请求到远程服务器,或转发远程服务器请求到本地。
示例:
- 设置远程端口 6000,本地端口 5000,设置转发本地请求到远程,然后当访问 http://127.0.0.1:5000 时,会获取远程服务器:6000 的内容,等同于 "ssh -L"
- 设置远程端口 6000,本地端口 5000,设置转发远程请求到本地,然后当访问 http://remote-server:6000 时,会获取 http://127.0.0.1:5000 的内容,等同于 "ssh -R"