You are not logged in.
i want to start using vpn.
i choose fastestvpn.com and they have a guide for archlinux here:
FastestVPN archlinux
i walked through the guide and i think i succeeded to connect (i got in the end: Initialization sequence completed).
but my IP didn't change.
it stays the same as before (before = before i connected to a VPN server).
when i connect to one of their servers, i do it as root and the command is (for example):
openvpn uk2-tcp.ovpn
this connect me to a UK server using tcp.
again, it seems that i connected but the problem is that when i surf the web, i surf on my ISP connection and NOT using the VPN server i connected to.
Last edited by andav (2022-11-27 21:42:05)
Offline
If you are using Firefox select settings within Firefox - then General - Network Settings and uncheck 'Enable DNS over HTTPS'
Restart Firefox and check your IP again.
Offline
curl ifconfig.me
before and after establishing a connection to the VPN server
Offline
If you are using Firefox select settings within Firefox - then General - Network Settings and uncheck 'Enable DNS over HTTPS'
Restart Firefox and check your IP again.
i'm not using firefox.
im using google chrome.
curl ifconfig.me
before and after establishing a connection to the VPN server
before i get:
147.235.210.XXX
after connecting to VPN in another terminal i get:
195.191.219.XXX
another thing is that i think i'm behind NAT of the ISP.
in my router my gateway address is 100.74.XXX.XXX
Last edited by andav (2022-11-27 21:14:13)
Offline
tucuxi wrote:curl ifconfig.me
before and after establishing a connection to the VPN serverbefore i get:
147.235.210.XXX
after connecting to VPN in another terminal i get:
195.191.219.XXX
The VPN appears to be working. Which IP does your browser show when you navigate to http://ifconfig.me/ ?
My Arch Linux Stuff • Forum Etiquette • Community Ethos - Arch is not for everyone
Offline
wait i think im wrong (maybe).
the problem was that i always check what is my ip with:
https://whatismyipaddress.com/
there it always tell me what is my isp and he recognize my (right) location so i thought that there is a problem (i thought that using the VPN, it shouldn't recognize my ISP and real location).
but if i press on the IP it recognized, i get that this IP is in fact in the country where the server i connected to is located.
so maybe everything is OK and i was wrong?
Last edited by andav (2022-11-27 21:33:47)
Offline
andav wrote:tucuxi wrote:curl ifconfig.me
before and after establishing a connection to the VPN serverbefore i get:
147.235.210.XXX
after connecting to VPN in another terminal i get:
195.191.219.XXXThe VPN appears to be working. Which IP does your browser show when you navigate to http://ifconfig.me/ ?
it shows 195.191.219.XXX
Offline
thank you all,
i think everything is OK and i was wrong from the beginning :-)
Last edited by andav (2022-11-27 21:43:38)
Offline
wait i think im wrong (maybe).
the problem was that i always check what is my ip with:
https://whatismyipaddress.com/
there it always tell me what is my isp and he recognize my (right) location so i thought that there is a problem (i thought that using the VPN, it shouldn't recognize my ISP and real location).
but if i press on the IP it recognized, i get that this IP is in fact in the country where the server i connected to is located.
so maybe everything is OK and i was wrong?
Websites will track you with cookies and browser fingerprinting. If you want to increase your anonymity, you should first close your browser completely and then open a new private session after you connect the VPN. If you connect the VPN while you have a session open, every website to which you are connected will recognize that it's still you and connect the VPN IP to your profile.
Depending on how much effort you want to make, here are some other suggestions:
You can manually set your browser's user agent string to something indistinct and common while using the VPN to reduce fingerprinting. It depends on the browser, but you can usually do it with a command-line option or environment variable which makes it easy to use a script or alias. For lists of current common user-agent strings, see https://useragentstring.com/pages/useragentstring.php and https://developers.whatismybrowser.com/ … s/explore/
Instead of setting the VPN to reroute all traffic through it, you can bind it to a network namespace and then selectively launch programs in that namespace. This can avoid leaking your IP address to websites when the VPN goes up or down.
These points are only valid if you are trying to remain anonymous to website. If you are only trying to protect your traffic from your ISP then the VPN should do the job. The only thing that you need to check is that DNS lookups go through the VPN and not your ISP's DNS server.
My Arch Linux Stuff • Forum Etiquette • Community Ethos - Arch is not for everyone
Offline
andav wrote:wait i think im wrong (maybe).
the problem was that i always check what is my ip with:
https://whatismyipaddress.com/
there it always tell me what is my isp and he recognize my (right) location so i thought that there is a problem (i thought that using the VPN, it shouldn't recognize my ISP and real location).
but if i press on the IP it recognized, i get that this IP is in fact in the country where the server i connected to is located.
so maybe everything is OK and i was wrong?Websites will track you with cookies and browser fingerprinting. If you want to increase your anonymity, you should first close your browser completely and then open a new private session after you connect the VPN. If you connect the VPN while you have a session open, every website to which you are connected will recognize that it's still you and connect the VPN IP to your profile.
Depending on how much effort you want to make, here are some other suggestions:
You can manually set your browser's user agent string to something indistinct and common while using the VPN to reduce fingerprinting. It depends on the browser, but you can usually do it with a command-line option or environment variable which makes it easy to use a script or alias. For lists of current common user-agent strings, see https://useragentstring.com/pages/useragentstring.php and https://developers.whatismybrowser.com/ … s/explore/
Instead of setting the VPN to reroute all traffic through it, you can bind it to a network namespace and then selectively launch programs in that namespace. This can avoid leaking your IP address to websites when the VPN goes up or down.
These points are only valid if you are trying to remain anonymous to website. If you are only trying to protect your traffic from your ISP then the VPN should do the job. The only thing that you need to check is that DNS lookups go through the VPN and not your ISP's DNS server.
thank you very much for the inforamtion.
you said:
"...check if DNS lookups go through the VPN and not your ISP's DNS server"
how can i check if the DNS lookups go through my VPN or not?
Last edited by andav (2022-11-28 00:54:11)
Offline
you said:
"...check if DNS lookups go through the VPN and not your ISP's DNS server"
how can i check if the DNS lookups go through my VPN or not?
You can check for leaks with online services such as https://www.dnsleaktest.com/
My Arch Linux Stuff • Forum Etiquette • Community Ethos - Arch is not for everyone
Offline
andav wrote:you said:
"...check if DNS lookups go through the VPN and not your ISP's DNS server"
how can i check if the DNS lookups go through my VPN or not?You can check for leaks with online services such as https://www.dnsleaktest.com/
great. thank you very much!
Offline