“Across the Great Wall we can reach every corner in the world.”1
Remote Port Forwarding
让云服务器方便快捷地使用本地代理
- 建立远程端口转发
ssh -R 1082:127.0.0.1:1082 s2-ljy -p 22
- 配置云服务器的代理环境变量
export HTTP_PROXY="http://127.0.0.1:1082"
export HTTPS_PROXY="http://127.0.0.1:1082"
Caution
这是临时设置, 仅对当前终端生效, 如果想永久设置, 请编辑 ~/.bashrc
Local vs Remote Port Forwarding
Local Port Forwarding
ssh -L [本地端口]:[目标主机]:[目标端口] [SSH服务器]
作用:
- 在本地机器上监听一个端口,所有发往该端口的流量都会通过 SSH 隧道转发到目标主机:目标端口
- 适用于访问远程内网服务(如数据库、Web 服务)
Example:
ssh -L 8080:localhost:80 user@remote-server
本地访问 localhost:8080
→ 实际访问的是 remote-server
上的 localhost:80
Remote Port Forwarding
ssh -R [远程端口]:[目标主机]:[目标端口] [SSH服务器]
作用:
- 在远程 SSH 服务器上监听一个端口,所有发往该端口的流量都会通过 SSH 隧道转发到目标主机:目标端口(通常是你的本地机器)
- 适用于让外部访问你的本地服务(如本地开发环境暴露给公网)
Example:
ssh -R 1082:127.0.0.1:1082 s2-ljy -p 22
s2-ljy 这台服务器上访问 localhost:1082
-> 实际访问的是本机的 localhost:1082
Summary
特性 | Local Port Forwarding (-L ) | Remote Port Forwarding (-R ) |
---|---|---|
监听端口的机器 | 你的本地电脑 | 远程 SSH 服务器 |
数据流向 | 本地 → 远程 | 远程 → 本地 |
典型用途 | 访问远程内网服务 | 暴露本地服务给远程 |
示例 | ssh -L 8080:localhost:80 user@server | ssh -R 9000:localhost:3000 user@server |
Configuring Mirrors for Development Tools
pip
- 临时使用:
pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple [some-package]
- 设为默认:
升级 pip 到最新的版本后进行配置:
python -m pip install -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple --upgrade pip
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
pyenv
export PYTHON_BUILD_MIRROR_URL="https://registry.npmmirror.com/-/binary/python"
export PYTHON_BUILD_MIRROR_URL_SKIP_CHECKSUM=1
# Then
pyenv install 3.12
poetry
通过以下命令为单个项目设置首选镜像:
poetry source add --priority=primary mirrors https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/
rust
安装 Rust:
export RUSTUP_DIST_SERVER="https://rsproxy.cn"
export RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"
curl --proto '=https' --tlsv1.2 -sSf https://rsproxy.cn/rustup-init.sh | sh
设置 crates.io 镜像:
修改 ~/.cargo/config
[source.crates-io]
replace-with = 'rsproxy-sparse'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true
npm
# 查询当前使用的镜像源
npm get registry
# 设置为淘宝镜像源
npm config set registry https://registry.npmmirror.com/
# 验证
npm get registry
yarn
# 查询当前使用的镜像源
yarn config get registry
# 设置为淘宝镜像源
yarn config set registry https://registry.npmmirror.com/
pnpm
# 查询当前使用的镜像源
pnpm get registry
# 设置为淘宝镜像源
pnpm config set registry https://registry.npmmirror.com/
golang
go env -w GOPROXY=https://goproxy.cn,direct
git
git clone https://gitclone.com/github.com/gogs/gogs.git
更多配置方式请参阅官网