본문으로 바로가기

프록시 서버 설정

category [ 서버 & DB 관련 ]/리눅스 2019. 8. 22. 14:44
1. 로그인 세션 동안만 유지되는 방법
# 프록시 서버 설정
$ export http_proxy=http://www.yourproxyserver.com:port
$ export https_proxy=http://www.yourproxyserver.com:port
#프록시서버 해제
$ unset http_proxy
$ unset https_proxy


2. 로그인 세션이 종료된 후에도 프록시를 유지시키는 방법

# 여기서는 .bashrc에 작업했지만 .profile, .bash_profile, .bashrc_profile 어디에 설정해도 동일합니다.
$ vi ~/.bashrc
 
#아래내용 추가
export http_proxy=http://www.yourproxyserver.com:port
export https_proxy=http://www.yourproxyserver.com:port
# 저장후
 
$source ~/.bashrc



$ wget www.daum.net
#혹은
$ curl -0 www.daum.net


출처 https://krespo.net/188