Fedora39 プロキシクライアントの設定方法

環境
# cat /etc/redhat-release
Fedora release 39 (Thirty Nine)

概要
Proxy サーバーに接続するための、プロキシクライアントの設定を行います

操作方法
1.新規作成 (プロキシサーバーを環境変数に設定)
# vi /etc/profile.d/proxy.sh

ARK_PROXY_URL="prox.arkgame.com:3128"

HTTP_PROXY=$ARK_PROXY_URL
HTTPS_PROXY=$ARK_PROXY_URL
FTP_PROXY=$ARK_PROXY_URL
http_proxy=$ARK_PROXY_URL
https_proxy=$ARK_PROXY_URL
ftp_proxy=$ARK_PROXY_URL

export HTTP_PROXY HTTPS_PROXY FTP_PROXY http_proxy https_proxy ftp_proxy

設定内容を反映する
# source /etc/profile.d/proxy.sh

2.dnf の個別設定
# vi /etc/dnf/dnf.conf

# 最終行に追記
proxy=prox.arkgame.com:3128

3.curlの個別設定を行います
# vi ~/.curlrc

# 新規作成
proxy=prox.arkgame.com:3128

4.wgetの個別設定を行います
# vi /etc/wgetrc
# 最終行に追記

http_proxy = prox.arkgame.com:3128
https_proxy = prox.arkgame.com:3128
ftp_proxy = prox.arkgame.com:3128

 

Fedora 39

Posted by arkgame