rootsecure9797 1 Posted ... Hello is tor network lock be have in next version of eddie? Quote Share this post Link to post
LZ1 672 Posted ... Hello! I don't think that's in the cards at the moment. But there's nothing stopping you from using Tor or Network Lock right now. Quote Hide LZ1's signature Hide all signatures Hi there, are you new to AirVPN? Many of your questions are already answered in this guide. You may also read the Eddie Android FAQ. Moderators do not speak on behalf of AirVPN. Only the Official Staff account does. Please also do not run Tor Exit Servers behind AirVPN, thank you. Did you make a guide or how-to for something? Then contact me to get it listed in my new user guide's Guides Section, so that the community can find it more easily. Share this post Link to post
rootsecure9797 1 Posted ... Hello! I don't think that's in the cards at the moment. But there's nothing stopping you from using Tor or Network Lock right now.Can you tell me how i can do it? Quote Share this post Link to post
LZ1 672 Posted ... For network lock you just download the Eddie client and click to enable it. For Tor you download the Tor browser bundle typically, start the browser and then go into the Eddie preferences>protocols and enable Tor. Then you click the test button, to make sure it works. Quote Hide LZ1's signature Hide all signatures Hi there, are you new to AirVPN? Many of your questions are already answered in this guide. You may also read the Eddie Android FAQ. Moderators do not speak on behalf of AirVPN. Only the Official Staff account does. Please also do not run Tor Exit Servers behind AirVPN, thank you. Did you make a guide or how-to for something? Then contact me to get it listed in my new user guide's Guides Section, so that the community can find it more easily. Share this post Link to post
zhang888 1066 Posted ... Tor>VPN and Network Lock are 2 quite self-refuting ideas.Network Lock ensures that you are connecting only to Air nodes, while with Tor before VPNyou are randomly connecting to as many guards as possible. This is an important point you have to understand before trying other various approaches.One of the easy solutions would be creating a virtual network interface, or another virtual machine,binding Tor on that network with a firewall rule to push all traffic via Tor, then enabling Network Lockwith an exception for local networks and connecting over that to VPN. Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
Macppl 2 Posted ... Tor>VPN and Network Lock are 2 quite self-refuting ideas.Network Lock ensures that you are connecting only to Air nodes, while with Tor before VPNyou are randomly connecting to as many guards as possible. This is an important point you have to understand before trying other various approaches.One of the easy solutions would be creating a virtual network interface, or another virtual machine,binding Tor on that network with a firewall rule to push all traffic via Tor, then enabling Network Lockwith an exception for local networks and connecting over that to VPN.Sounds interesting. Could you please explain more on the practical steps on how to create virtual network interface and binding Tor? I use Mac OSX. For ordinary users like me it is too technical. Quote Share this post Link to post
zhang888 1066 Posted ... https://support.apple.com/kb/PH21618?viewlocale=en_US&locale=en_US Or using the command line: sudo ifconfig bridge1 createsudo ifconfig bridge1 192.168.1.123/24 Assuming your network segment is 192.168.1.1/24 and you are assigning 192.168.1.123 to your new bridge.Then some additional torrc configuration has to be done, according to:https://trac.torproject.org/projects/tor/wiki/doc/TransparentProxy ¶ Local Redirection and Anonymizing MiddleboxVirtualAddrNetworkIPv4 192.168.1.123/32AutomapHostsOnResolve 1TransPort 9040DNSPort 53 Then you have to configure pf rules as per this example (save to a file, then pfctl -f /some/file) : int_if = "bridge1"trans_port = "9040"set skip on lomatch in all scrub (no-df random-id)pass in quick on $int_if inet proto tcp to !($int_if) rdr-to 127.0.0.1 port $trans_portpass in quick on $int_if inet proto udp to port domain rdr-to 127.0.0.1 port domain Then you need to block outgoing connections from your main interface, here it will be veryspecific to each setup (Ethernet/Wireless) and interface names, but generally it will be something like: block drop out on en0 inet proto tcp allblock drop out on en0 inet proto udp all 1 LZ1 reacted to this Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
rootsecure9797 1 Posted ... https://support.apple.com/kb/PH21618?viewlocale=en_US&locale=en_US Or using the command line: sudo ifconfig bridge1 createsudo ifconfig bridge1 192.168.1.123/24 Assuming your network segment is 192.168.1.1/24 and you are assigning 192.168.1.123 to your new bridge.Then some additional torrc configuration has to be done, according to:https://trac.torproject.org/projects/tor/wiki/doc/TransparentProxy ¶ Local Redirection and Anonymizing MiddleboxVirtualAddrNetworkIPv4 192.168.1.123/32AutomapHostsOnResolve 1TransPort 9040DNSPort 53 Then you have to configure pf rules as per this example (save to a file, then pfctl -f /some/file) : int_if = "bridge1"trans_port = "9040"set skip on lomatch in all scrub (no-df random-id)pass in quick on $int_if inet proto tcp to !($int_if) rdr-to 127.0.0.1 port $trans_portpass in quick on $int_if inet proto udp to port domain rdr-to 127.0.0.1 port domain Then you need to block outgoing connections from your main interface, here it will be veryspecific to each setup (Ethernet/Wireless) and interface names, but generally it will be something like: block drop out on en0 inet proto tcp allblock drop out on en0 inet proto udp allIs it soo hard to add this feature in to eddie client? because i am not good in english... Quote Share this post Link to post
zhang888 1066 Posted ... The question here is not hard or not but if it is the correct way to get things done.Not everything that is potentially possible should be part of the client, one of the reasons is thatthis adds major networking complexity that might break things for people who are not familiar with it. Note that the more common, secure and recommended approach to have such setup is running Torcompletely isolated in a VM, which will do the Tor tasks with minimum privileges in a virtual environment. https://www.howtoforge.com/how-to-set-up-a-tor-middlebox-routing-all-virtualbox-virtual-machine-traffic-over-the-tor-networkhttps://www.malwaretech.com/2015/08/creating-ultimate-tor-virtual-network.html 1 rootsecure9797 reacted to this Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post
rootsecure9797 1 Posted ... The question here is not hard or not but if it is the correct way to get things done.Not everything that is potentially possible should be part of the client, one of the reasons is thatthis adds major networking complexity that might break things for people who are not familiar with it. Note that the more common, secure and recommended approach to have such setup is running Torcompletely isolated in a VM, which will do the Tor tasks with minimum privileges in a virtual environment. https://www.howtoforge.com/how-to-set-up-a-tor-middlebox-routing-all-virtualbox-virtual-machine-traffic-over-the-tor-networkhttps://www.malwaretech.com/2015/08/creating-ultimate-tor-virtual-network.htmlI am tried with pfSense, can`t install pkg >< soo i can`t install this. Quote Share this post Link to post
zhang888 1066 Posted ... That's a different issue, there are pfSense community forums for such questions as well.If you follow the above tutorial step by step it should work. Quote Hide zhang888's signature Hide all signatures Occasional moderator, sometimes BOFH. Opinions are my own, except when my wife disagrees. Share this post Link to post