This forum is for general conversation and user-user networking.
Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech
-
vihut
- OpenVpn Newbie
- Posts: 2
- Joined: Wed Mar 10, 2021 11:54 am
Post
by vihut » Wed Mar 10, 2021 12:04 pm
Hi,
I am using the following openvpn config to route my traffic VPN trough TOR , I use a fairly secure paid vpn but for more privacy trying to use this setup to remove any cases of the VPN tracking:
Code: Select all
client
dev tun
proto tcp
remote ip port
resolv-retry infinite
nobind
persist-key
persist-tun
cipher aes-256-cbc
auth sha256
tls-client
remote-cert-tls server
#Tor Socks proxy
socks-proxy 127.0.0.1 9050
up-delay
route [bridgeip] 255.255.255.255 [defaultgateway]
pull-filter ignore "route-ipv6"
pull-filter ignore "ifconfig-ipv6"
dhcp-option DNS 8.8.8.8
auth-user-pass vpnauth
compress
verb 1
reneg-sec 0
disable-occ
This configuration seems to work , but my concern is that if this configuration is secure and is there a better way to configure this to make this more efficient and secure?
-
TinCanTech
- OpenVPN Protagonist
- Posts: 11139
- Joined: Fri Jun 03, 2016 1:17 pm
Post
by TinCanTech » Thu Mar 11, 2021 12:33 am
vihut wrote: ↑Wed Mar 10, 2021 12:04 pm
trying to use this setup to remove any cases of the VPN tracking
Once you are connected to the VPN server,
that is where
they track you from ..
-
vihut
- OpenVpn Newbie
- Posts: 2
- Joined: Wed Mar 10, 2021 11:54 am
Post
by vihut » Sun Mar 14, 2021 10:46 am
TinCanTech wrote: ↑Thu Mar 11, 2021 12:33 am
vihut wrote: ↑Wed Mar 10, 2021 12:04 pm
trying to use this setup to remove any cases of the VPN tracking
Once you are connected to the VPN server,
that is where
they track you from ..
The VPN in this case is bought anonymously , the only thing linking it to me currently is the IP i use to connect with , i believe routing it through TOR using this config should help with it?