VPN연결 | Linux 서버에서 KT고정아이피 사용하기
페이지 정보
작성자 하이프록시 조회41회 댓글0건본문
Linux KT고정아이피 PPTP
리눅스 접속은 root 계정으로 접속합니다.
1. 서버에 pptp 설치를 진행 합니다.
apt install pptp-linux
apt install network-manager-pptp
2. 서버 세팅을 진행합니다.
pptpsetup --create haiproxy --server 서버주소 --username haiproxy@아이디@p --password 비밀번호
서버주소는 p1.haiproxy.net 입력해주시고,
아이디는 KT고정 상품 구매한 HAIPROXY@아이디@p 형태로 입력 하시면 됩니다.
3. 라우팅 설정을 진행합니다.
vi /etc/ppp/ip-up.d/route-traffic
파일 내용
#!/bin/sh
route add -net 0.0.0.0/0 dev ppp0
실행권한 부여
chmod 755 /etc/ppp/ip-up.d/route-traffic
4. 접속하기 / 접속끊기
pppd call haiproxy updetach
poff