Jump to content
Not connected, Your IP: 216.73.216.139

Leaderboard


Popular Content

Showing content with the highest reputation on 12/22/19 in all areas

  1. 1 point
    nexsteppe

    Tor and AirVPN

    If you are connecting to Tor via AirVPN, this is not so. AirVPN would only be able to discern that you are using Tor, as it naturally follows that they would be able to see which guard node or bridge you are connecting to. They cannot see what is you are doing via Tor and therefore would have no record at all of your browsing history in Tor Browser etc etc. There are several ways to use Tor with VPNs (for different use cases), but installing Tor Browser and running it after you've connected to AirVPN is the easiest way to get started (and sounds like it is exactly what you want). No changes to your configuration are needed. (The Eddie client can also facilitate connections to AirVPN via Tor, but if you are trying to obscure your Tor use from your ISP this is definitely not what you want.) Depending on what country you live in, if you've been searching for privacy related technologies from your home connection sans VPN then your interest has probably already been "flagged". (Consider: XKEYSCORE) But in any case it is true that heavy Tor usage might raise eyebrows even in locales where Tor use is not regulated. I think your caution is reasonable.
  2. 1 point
    I just wanted to say thanks for all the replies, I upgraded Kaspersky Internet Security to version 20 (20.0.14.1085(f)) a couple days ago and everything is working fine.
  3. 1 point
    Tech Jedi Alex

    Decdicated IP address

    For them AirVPN is not the best fit, I suppose.
  4. 1 point
    Flx

    IP X - IP info and leak test suite

    Not blocked on AirVPN Canada side ipleak.net does not always show all the DNS servers used/in use. Or the Connection-type and other minor details such as "keep-alive".
  5. 1 point
    HOW TO FORWARD PORTS TO YOUR DEVICES WITH IPTABLES You need to create a basic DNAT on your router. Remember that the router GUI usually forwards ports from the WAN to LAN. When connected to the VPN you must forward ports from TUN interface to the final destination. Therefore, it is important that you do not forward ports through the GUI of the router. Assuming that: destIP is the IP address of the destination device port is the port you wish to forward to that device tun1 is the tun interface of your router (please check! on some routers it can be tun0, on Tomato it can be tun11) you need to forward both TCP and UDP packets you need to add the following rules. Please note that the following rules do NOT replace your already existing rules, you just have to add them. iptables -I FORWARD -i tun1 -p udp -d destIP --dport port -j ACCEPT iptables -I FORWARD -i tun1 -p tcp -d destIP --dport port -j ACCEPT iptables -t nat -I PREROUTING -i tun1 -p tcp --dport port -j DNAT --to-destination destIP iptables -t nat -I PREROUTING -i tun1 -p udp --dport port -j DNAT --to-destination destIP Note: if your router firmware iptables supports the multiport module you can use --match option to make your rules set more compact. Please see here, thanks to Mikeyy https://airvpn.org/topic/14991-asuswrt-merlin-multiple-ports/?do=findComment&comment=31221 Kind regards
×
×
  • Create New...