![]() |
2009-10-18
, 00:53
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#31
|
The Following User Says Thank You to icbolsh For This Useful Post: | ||
![]() |
2009-10-18
, 10:29
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#32
|
![]() |
2009-10-19
, 01:03
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#33
|
![]() |
2009-10-19
, 01:29
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#34
|
After trying so many different things, it seems as though the VPN is sort of working. I am not sure what is going on. So When I login to my vpn Jaiku works but Twitter fails to load(both are block normally) via Mauku. But I can't go to Twitter's website either via Tear. So it is kind of working because I can go to Jaiku.
Here is my current configuration:
client
dev tun
proto udp
remote openvpn.ivacy.com 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ivacy-keys/ivacy-ca.crt
cert ivacy-keys/ivacy-client.crt
key ivacy-keys/ivacy-client.key
tls-auth ivacy-keys/ivacy-tls.key 1
ns-cert-type server
comp-lzo
verb 3
auth-user-pass
redirect-gateway
script-security 3
reneg-sec 0
redirect-gateway def1
ca ivacy-ca.crt
cert ivacy-client.crt
key ivacy-client.key
tls-auth ivacy-tls.ke
![]() |
2009-10-19
, 02:51
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#35
|
![]() |
2009-10-19
, 03:22
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#36
|
up /etc/openvpn/update-resolv-conf down /etc/openvpn/update-resolv-confforeign_option_1='dhcp-option DNS 1.254.2.2' foreign_option_2='dhcp-option DNS 1.254.2.3' foreign_option_3='dhcp-option DOMAIN vpn'
The Following User Says Thank You to allnameswereout For This Useful Post: | ||
![]() |
2009-10-19
, 03:46
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#37
|
![]() |
2009-10-19
, 04:22
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#38
|
So I copied resolv.conf and moved it so I can open it and just see (since I don't know how to open it within XTerm), and all it says is "nameserver 127.0.0.1". It doesn't list a bunch of different ones. Should I change it to list 1.254.2.2 and 1.254.2.3?
up /etc/openvpn/update-resolv-conf down /etc/openvpn/update-resolv-conf
script-security 2
#!/bin/bash # # Parses DHCP options from openvpn to update resolv.conf # To use set as 'up' and 'down' script in your openvpn *.conf: # up /etc/openvpn/update-resolv-conf # down /etc/openvpn/update-resolv-conf # # Used snippets of resolvconf script by Thomas Hood <jdthood@yahoo.co.uk> # and Chris Hanson # Licensed under the GNU GPL. See /usr/share/common-licenses/GPL. # # 05/2006 chlauber@bnc.ch # # Example envs set from openvpn: # foreign_option_1='dhcp-option DNS 193.43.27.132' # foreign_option_2='dhcp-option DNS 193.43.27.133' # foreign_option_3='dhcp-option DOMAIN be.bnc.ch' [ -x /sbin/resolvconf ] || exit 0 case $script_type in up) for optionname in ${!foreign_option_*} ; do option="${!optionname}" echo $option part1=$(echo "$option" | cut -d " " -f 1) if [ "$part1" == "dhcp-option" ] ; then part2=$(echo "$option" | cut -d " " -f 2) part3=$(echo "$option" | cut -d " " -f 3) if [ "$part2" == "DNS" ] ; then IF_DNS_NAMESERVERS="$IF_DNS_NAMESERVERS $part3" fi if [ "$part2" == "DOMAIN" ] ; then IF_DNS_SEARCH="$part3" fi fi done R="" if [ "$IF_DNS_SEARCH" ] ; then R="${R}search $IF_DNS_SEARCH " fi for NS in $IF_DNS_NAMESERVERS ; do R="${R}nameserver $NS " done echo -n "$R" | /sbin/resolvconf -a "${dev}.inet" ;; down) /sbin/resolvconf -d "${dev}.inet" ;; esac
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 194.109.6.66
nameserver 194.109.9.99
![]() |
2009-10-19
, 05:08
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#39
|
![]() |
2009-10-19
, 05:26
|
Posts: 194 |
Thanked: 39 times |
Joined on Sep 2008
|
#40
|