Linux ターミナル#
Linux 上の v2rayA
- 現在のシェルに対して単発で Proxy を使用
export http_proxy="http://127.0.0.1:20171"
export https_proxy="http://127.0.0.1:20171"
- 成功したかどうかを確認
echo $http_proxy
echo $https_proxy
Windows ターミナル#
Windows 上の Clash
- 現在のシェル
$env:HTTP_PROXY="http://127.0.0.1:7890"
$env:HTTPS_PROXY="http://127.0.0.1:7890"
set http_proxy=http://127.0.0.1:7890
set https_proxy=http://127.0.0.1:7890