Ⅰ linux 如何設置代理
linux設置代理linux系統設置yum,wget,rpm命令使用代理:1.Using
yum
with
a
proxyserver---------------------------------------To
enable
yum
operations
to
use
aproxy
server
you
should
first
add
the
following
parameter
to
/etc/yum.conf
proxy=http://yourproxy:8080/
where
yourproxy
is
the
name
of
the
proxy
server
you
want
to
access
and
8080
isthe
proxy
port.
If
the
server
requires
authentication
you
can
specify
the
logincredentials
like:proxy=http://username:password@yourproxy:8080/---------------------------------------2.
The
rpm
package
manager
makesuse
of
the
proxy
environment
variable.
This
can
be
set
system
wide
in
/etc/profile
or
user
specific
in
~/.bash_profile:export
http_proxy=http://yourproxy:8080/export
ftp_proxy=http://yourproxy:8080/---------------------------------------3.
To
use
wget
throug
a
proxy
serveradd
the
following
lines
to
/etc/wgetrc
http_proxy
=
http://yourproxy:8080/
ftp_proxy
=
http://yourproxy:8080/
Ⅱ 【proxy】Linux上各類代理設置
代理伺服器(Proxy Server)是個人網路和Internet服務商之間的中間代理機構,它負責轉發合法的網路信息,對轉發進行控制和登記。
代理伺服器作為連接Internet(廣域網)與Intranet(區域網)的橋梁,在實際應用中發揮著極其重要的作用。
Linux下有很多程序都只有命令行介面,對於這類程序,它們通過代理伺服器(proxy)訪問網路的方式也不盡相同。
本文總結了一些常用Windows/Linux程序配置代理伺服器的方法。
對於大多數Linux控制台程序,例如 Debian 或Ubuntu中的apt-get和aptitude命令、 git命令 、wget命令,這些程序都使用http_proxy和ftp_proxy環境變數來獲取代理服務的配置。
# export http_proxy="http://username:password@proxyServer:port/"
# export https_proxy="http://username:password@proxyServer:port/"
# export ftp_proxy="http://username:password@proxyServer:port/"
# export no_proxy="127.0.0.1,192.168.124.0/16,*.example.com"
如果你的代理伺服器需要用戶名和密碼才能訪問,需要填寫上面的username和passwd部分,否則的話,省略這兩部分。
proxyServer為代理伺服器的域名(如果能解析)或者IP。
no_proxy 設置你明確不需要走代理的IP 域名 網段之類,用逗號隔開,如網路要求訪問外網走代理,訪問內網無需走代理的情況。
# export http_proxy="http://proxyServer:port/"
# export https_proxy="http:/proxyServer:port/"
# export ftp_proxy="http://proxyServer:port/"
將代理設置添加到環境文件
# cat >> /etc/profile << EOF
export http_proxy="http://username:password@proxyServer:port/"
export https_proxy="http://username:password@proxyServer:port/"
export ftp_proxy="http://username:password@proxyServer:port/"
export no_proxy="127.0.0.1,192.168.124.0/16,*.example.com"
EOF
# source /etc/profile
# unset http_proxy
# unset https_proxy
# unset ftp_proxy
# unset no_proxy
set http_proxy="http://username:password@proxyServer:port/"
set https_proxy="http://username:password@proxyServer:port/"
set ftp_proxy="http://username:password@proxyServer:port/"
set no_proxy="127.0.0.1,192.168.124.0/16,*.example.com"
谷歌瀏覽器訪問:chrome://settings/
其他瀏覽器代理設置,大同小異,無需贅言了!
因為某些原因,國內網路訪問 Docker Hub 拉取官方 Docker 鏡像時經常超時。怎麼解決呢?可以使用 HTTP 代理來加速訪問。
國內稍具規模的中大型技術公司應該有正常訪問國外網站的代理伺服器。
# mkdir -p /etc/systemd/system/docker.service.d
# vim /etc/systemd/system/docker.service.d/http-proxy.conf
###############################################################
[Service]
Environment="HTTP_PROXY=http://username:password@proxyServer:port/"
Environment="HTTPS_PROXY=http://username:password@proxyServer:port/"
Environment="NO_PROXY=localhost,127.0.0.1"
###############################################################
# systemctl daemon-reload
# systemctl restart docker
# docker info | grep -i proxy
# docker build --help
# docker build \
--build-arg http_proxy="http://username:password@proxyServer:port/" \
--build-arg https_proxy="http://username:password@proxyServer:port/" \
-f Dockerfile \
-t sonatype/nexus3:3.5.2 .
Linux下代理伺服器(proxy)配置
https://www.cnblogs.com/klb561/p/9175583.html
docker代理配置
https://blog.frognew.com/2017/01/docker-http-proxy.html
Control Docker with systemd
https://docs.docker.com/config/daemon/systemd/#httphttps-proxy
Ⅲ linux伺服器如何使用代理
不同的代理伺服器設置略有 不同,具體分類操作如下:
設置HTTP及HTTPS代理
對於http及https類型的請求,可以通過設置http_proxy或。方法是export http_proxy=http://proxyaddress:port。
可以寫在$HOME/.bash_profile或/etc/profile中。
設置tsocks代理
見:http://renyongjie668.blog.163.com/blog/static/16005312011824112410588/
有了tsocks代理,其實後面其他設置方式都不是很重要了,幾乎都可以用tsocks來做。
設置SSH代理
同樣用tsocks來實現代理。
Ubuntu中apt-get代理設置
新版的Ubuntu已經不支持export http_proxy就能給apt-get設置代理的方式了。這種方法要用到/etc/apt/文件夾下的apt.conf文件。注意: 某些情況下,系統安裝過程中沒有建立apt配置文件。下面的操作將視情況修改現有的配置文件或者新建配置文件。
sudo vi /etc/apt/apt.conf
在您的apt.conf文件中加入下面這行(根據你的實際情況替換yourproxyaddress和proxyport)。
Acquire::http::Proxy "http://proxyaddress:port";
如果需要用戶名密碼登陸:
Acquire::http::Proxy "http://username:password@proxyaddress:port";
保存apt.conf文件。(其他的協議自己可以適當修改)
Ⅳ 如何在Linux上設置全局代理
設置全局代理,方法如下:
修改 /etc/profile 文件,添加下面內容:
http_proxy=http://username:password@yourproxy:8080/
ftp_proxy=http://username:password@yourproxy:8080/
export http_proxy
export ftp_proxy
如果沒有密碼限制,則以上內容可以修改為以下內容:
http_proxy=http://yourproxy:8080/
ftp_proxy=http://yourproxy:8080/
export http_proxy
export ftp_proxy
Ⅳ 如何在Linux下配置socks5代理
1、配置 Socks5 編譯環境。
yum -y install gcc automake autoconf libtool make
2、安裝 Socks5 需要的包。
yum -y install pam-devel openldap-devel cyrus-sasl-devel
3、下載,編譯安裝 Socks5 。wget -c
http://downloads.sourceforge.net/project/ss5/ss5/3.6.4-3/ss5-3.6.4-3.tar.gz
tar zxvf ss5-3.6.4-3.tar.gz
cd ss5-3.6.4
./configure
make
make install
#安裝後 BUG 需要手工修正一下
# vi /etc/rc.d/init.d/ss5 找到38行
/usr/local/sbin/ss5
改為
/usr/sbin/ss5
# vi /etc/rc.d/init.d/ss5 找到40行
echo "done"
;;
改成
echo "done"
fi
;;
4、啟動ss5服務。/etc/init.d/ss5 start
5、添加 ss5 到服務中,並隨開機啟動。
chkconfig --add ss5
chkconfig ss5 on
6、刪除Socks V4模塊,並改名為 mod_socks4.so.bk。
mv /usr/lib/ss5/mod_socks4.so /usr/lib/ss5/mod_socks4.so.bk
7、添加 SS5 用戶,ss5 默認使用1080埠,並允許任何人使用。#修改 /etc/opt/ss5/ss5.conf 的下面文件
# SHost SPort Authentication
#auth 0.0.0.0/0 - -
為
# SHost SPort Authentication
#auth 0.0.0.0/0 - u
8、在 /etc/opt/ss5/ss5.passwd 中添加用戶名和密碼如:test test,使用用戶驗證,重啟ss5服務即可。
/etc/init.d/ss5 restart
Ⅵ 如何安裝適用於 Linux 的 VMM 代理
若要在虛擬機上安裝適用於 Linux 的 VMM 代理
在 VMM 管理伺服器上,使用管理許可權打開命令提示符會話。
轉到 c:\Program Files\Microsoft System Center 2012 \virtual Machine Manager\agents\Linux 文件夾。
將所有代理的安裝文件從該文件夾都復制到虛擬機上的新文件夾,然後,打開 Linux 作為來賓操作系統在其正在運行的虛擬機上的新文件夾。
Ⅶ linux 設置代理上網
Linux下有很多程序都只有命令行介面,對於這類程序,它們通過代理伺服器(proxy)訪問網路的方式也不盡相同。在本文中Easwy總結了一些常用Linux程序配置代理伺服器的方法。
對於大多數Linux控制台程序,例如Debian或Ubuntu中的 apt-get 和 aptitude 命令、 git 命令、 wget 命令,這些程序都使用 http_proxy 和 ftp_proxy 環境變數來獲取代理服務的配置。
方法是在你的 ~/.bashrc 里加上類似下面的話:
如果你的代理伺服器需要用戶名和密碼才能訪問,需要填寫上面的username和passwd部分,否則的話,省略這兩部分。
這樣配置之後,退出再登錄一次,或者直接使用下面的命令source一下 .bashrc :
現在,上述程序就可以通過代理伺服器訪問網路了。
Ⅷ 如何在Linux下使用代理伺服器
linux自帶firefox 打開FireFox,編輯->首選項->常規->連接 設置FF訪問網際網路的方式 連接設置 手動配置代理 然後輸入代理伺服器IP和埠號即可。