Notice
Recent Comments
변군이글루
[리눅스] 리눅스에서 HTTP Proxy Server 설정하기 본문
1. 로그인 세션 동안만 유지되는 방법
$ export http_proxy=[proxy서버]:[proxy포트]
$ export https_proxy=[proxy서버]:[proxy포트]
$ unset http_proxy
$ unset https_proxy
2. 로그인 세션이 종료된 후에도 프록시를 유지시키는 방법
*** .bashrc, .bash_profile, /etc/profile
$ vi ~/.bashrc
---
export http_proxy=[proxy서버]:[proxy포트]
export https_proxy=[proxy서버]:[proxy포트]
---
$ source ~/.bashrc
참고 URL :
http://krespo.net/188
https://en.wikipedia.org/wiki/Proxy_server#/media/File:CPT-Proxy.svg
'서___리눅스' 카테고리의 다른 글
리눅스 ISO 파일 만들기(mkisofs) (0) | 2017.07.12 |
---|---|
[리눅스] Proxy 서버 구축(squid) (0) | 2017.05.26 |
[리눅스] 리눅스에서 HTTP Proxy Server 설정하기 (0) | 2017.05.26 |
[리눅스] mongoDB 소스 설치 (0) | 2017.04.24 |
[리눅스] Install MongoDB on or CentOS6 Linux (1) | 2017.04.24 |
[리눅스] CentOS 7에서 방화벽(firewalld) 설정하기 (0) | 2017.04.20 |
0 Comments