Ubuntu 12.04에서 VPN에 액세스해야합니다.
네트워크 관리자에 VPN 연결> VPN 구성이 있지만 사용자 이름과 비밀번호를 요청합니다.
내가 가진 모든 일부입니다 .crt
, .csr
, .key
, .ovpn
일부 Windows 클라이언트에 적합 파일.
저는 VPN을 처음 접하는 초보자입니다.
Ubuntu 12.04에서 VPN에 액세스해야합니다.
네트워크 관리자에 VPN 연결> VPN 구성이 있지만 사용자 이름과 비밀번호를 요청합니다.
내가 가진 모든 일부입니다 .crt
, .csr
, .key
, .ovpn
일부 Windows 클라이언트에 적합 파일.
저는 VPN을 처음 접하는 초보자입니다.
답변:
이것이 내가 작동하기 위해 따라야 할 절차입니다. 네트워크 관리자에 ovpn 가져 오기가 제대로 수행되지 않는 버그가 있습니다-2010 년 이후 (!)
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/606365
그 문제가 해결 될 때까지이 사이트를 찾았습니다
http://howto.praqma.net/ubuntu/vpn/openvpn-access-server-client-on-ubuntu
순서
Create a new folder in your home dir - I called mine vpn.config
Copy your downloaded client.ovpn file into the new folder
Open client.opvn in an editor
Open a new file
Cut the lines between <ca> tags in client.ovpn
Paste into new file, save this file as ca.crt
Remove both <ca> tags from client.ovpn
Open a new file
Cut the lines between <cert> tags in client.ovpn
Paste into new file, save this file as client.crt
Remove both <cert> tags from client.ovpn
Open a new file
Cut the lines between <key> tags in client.ovpn
Paste into new file, save this file as client.key
Remove both <key> tags from client.ovpn
Open a new file - this is the last one :-)
Cut the lines between <tls-auth> tags in client.ovpn
Paste into new file, save this file as ta.key
Remove both <tls-auth> tags from client.ovpn
And remove this line:
key-direction 1
Now position the cursor in client.ovpn, right above the line # -----BEGIN RSA SIGNATURE-----
Insert the following lines
ca ca.crt
cert client.crt
key client.key
tls-auth ta.key 1
Save and close all the files.
Goto Network Manager -> Edit Connections ->VPN
click Import, browse to the modified client.ovpn in the folder you recently created - and where your certificates are, and import that file
Enter vpn username and password if prompted
On the VPN page, select Advanced
On the General Tab, uncheck the first option, "Use custom gateway"
Save
Use...
network-manager-openvpn-gnome
Ubuntu Software Center에서 설치하십시오 (일반적으로 창 하단에서 "XX 기술 항목 표시"를 클릭하지 않으면 openvpn을 검색 할 때 검색 결과에서 숨겨집니다).
또는 터미널 ( Ctrl+ Alt+ T)을 사용할 수 있습니다 .
sudo aptitude install network-manager-openvpn-gnome
이 후 openvpn VPN에 연결하는 옵션이
네트워크 관리자-> VPN 연결-> VPN 구성
.ovpn
파일 의 기능과 일치하는지 확인하십시오 (예 : 게이트웨이 포트, 탭 또는 튠, TCP 또는 UDP 등). 이 모든 작업이 완료되면 VPN 연결을 설정할 수 있어야합니다.
어떤 문제에 대한 해결책 :
WiFi 연결 / 연결 해제
VPN에서 호스트에 연결할 수 없음-방화벽 구성
이 파일에서 :
sudo gedit /etc/firestarter/user-pre
해당 규칙을 추가하십시오.
iptables -A INPUT -j ACCEPT -s xxx.xxx.xxx.xxx -p esp
iptables -A INPUT -j ACCEPT -s xxx.xxx.xxx.xxx -p udp -m multiport -sports isakmp,10000
iptables -A INPUT -j ACCEPT -i tun+
iptables -A OUTPUT -j ACCEPT -d xxx.xxx.xxx.xxx -p esp
iptables -A OUTPUT -j ACCEPT -d xxx.xxx.xxx.xxx -p udp -m multiport -dports isakmp,10000
iptables -A OUTPUT -j ACCEPT -o tun+
xxx.xxx.xxx.xxx를 VPN 게이트웨이의 IP 주소로 바꾸십시오.