返回列表 發帖

Raspberry Pi —— Connecting a proxy server

本帖最後由 角色 於 2019-4-3 08:53 編輯

如果你家里有proxy server (上外国网站,如果V2Ray),那么你家里的Raspberry Pi就可以科学上网。假如你家里有一台proxy server,IP address = 192.168.55.22, 还有接过去不需要credentials(login name and password)。在Raspberry Pi forum里,就有一篇关于怎样设置[1],但是具体怎样set,在[1]最后的一个链接最为重要[2]。

1. Edit /etc/apt/apt.conf.d/10proxy
  1. sudo vi /etc/apt/apt.conf.d/10proxy
複製代碼
, 输入下面句子:
  1. Acquire::http::Proxy "http://192.168.55.22:1080";
  2. Acquire::https::Proxy "https://192.168.55.22:1080";
複製代碼
2. Edit /etc/environment
  1. sudo vi /etc/environment
複製代碼
,

输入下面句子
  1. export http_proxy="http://192.168.55.22:1080"
  2. export https_proxy="https://192.168.55.22:1080"
  3. export no_proxy="localhost, 127.0.0.1"
複製代碼
,

然后重新启动Raspberry  Pi就可以科学上网。

References:
[1] https://www.raspberrypi.org/forums/viewtopic.php?t=18634
[2] https://theailearner.com/2018/03 ... pi-to-proxy-server/

返回列表