Jump to content
Not connected, Your IP: 216.73.216.33

All Activity

This stream auto-updates     

  1. Past hour
  2. Yesterday
  3. Thank you very much. Port forwarding has resumed normal operation again. It was an issue with the Windows 11 firewall. Although the firewall had previously been turned off, at some point it was automatically re-enabled—probably due to a Windows 11 policy. Once I disabled it again, everything worked fine. Thank you. I really appreciate your help.
  4. Hello, I’d like to suggest a feature for the Eddie client: a true permanent network lock (kill switch) on Windows that ensures the system can never come online with its real IP, not even briefly during boot, crashes, or if the Eddie client is closed manually. I’m the original poster of this thread, and I’ve spent quite a bit of time researching this topic. I now understand the reasoning behind Eddie’s current behavior: the firewall rules only apply while the client is running, to avoid locking users out or breaking system connectivity. That makes sense — but it still leaves a privacy gap that many users would prefer to close permanently. I’ve looked into solutions like using Windows Filtering Platform (WFP) rules or manual firewall configurations, but I wasn't able to create a setup that’s both secure and reliable. I'm not a beginner, but I'm also not confident enough to enforce such permanent restrictions without risking accidental lockouts or leaks due to misconfiguration. Many users – especially those who value privacy – would greatly benefit from a built-in, persistent kill switch, similar to how Mullvad has implemented it in their Windows client. It's extremely effective and survives reboots or unexpected crashes. I’d love to see something similar in AirVPN, which I consider superior in nearly every other regard: server quality, privacy philosophy and transparency. To show how much I care about this feature, I’m even willing to donate €100 toward its development. I know it's not a large sum, but I believe others would support it too. This kind of functionality would make AirVPN even more attractive to security-conscious users on Windows. Is there any chance this could be added in a future version of Eddie? Even an optional advanced setting or a supported script/tool would be a great step forward. Thank you for your continued excellent work and for your strong commitment to online privacy. Best regards,
  5. eMule. I’ve already made sure that the eMule listening port matches the VPN’s forwarded port. Yet I still get a Low ID, whereas before I used to get a High ID. That shouldn’t happen—ideally, once the VPN tunnel is successfully established and the server forwards the port, the client should be able to communicate over that port through a properly open public network. The ISP can’t possibly intercept a port’s communication through the VPN tunnel, right?
  6. Then it's probably not listening on the VPN interface. What program are you trying to reach via VPN, anyway?
  7. Of course, none of my applications can connect through the forwarded port, and changing the port doesn’t solve the problem either.
  8. Erm, but through all this you're only connected to one VPN server? Or to five and you switch in the browser?
  9. Any ideas people I still can't get this working, with or without network lock! Thank you
  10. What are you trying to reach via VPN? Whatever the program is, it must run, of course.
  11. I'm using the FoxyProxy extension in Firefox, which lets me use multiple proxies. I just set up a stack in docker utilizing wireguard to connect to the VPN, and a pair of squid containers (because the networking is weird) to act as a proxy. Because the configs are ... complex, I'm using saltstack to automate the management. Each proxy is defined in a YAML file, and the automation loops through them to render the appropriate configs as well as the docker-compose. The keys in the configs are stored securely in salt-pillar using salt-gpg. I realize this is a pretty obscure use-case, but I like being able to switch my web browser to exit in Canada or the UK, or even California on a whim. I DO need to add validation that checks to make sure that there aren't more than 5 active proxies in the yaml file, though.
  12. Been running for a year before I saw this. Might be worth mentioning in the linux install instructions.
  13. Last week
  14. There’s nothing listening on the port? I’m using Windows 11, the network firewall is turned off. I’m currently using Eddie version 2.24.6. Is port listening managed by Eddie? Is it an issue with my computer system? I switched to using Eddie on Android and still got connection refused. What should I do?
  15. Hi, I've read I think all posts in this forum related to this problem and whatever I try, I do not get it to work. ChatGPT and Gemeni were also useless in this scenario unfortunately, so I hope for someone to spot the error. The situation: - I have a port forwarded in the client area - Connection is made successfully (confirmed in AirVPN portal) - Gluetun is configured to accept this port in the firewall (confirmed in the logs) - Port check on the AirVPN website comes back negative (Connection refused, hinting at issues with the gluetun config) - QBittorrent download port correctly configured but shows red connection on 'tun0' interface, any interface shows yellow (firewalled). Set to listen to IP4 addresses - IP is verified to come through VPN in all containers I expect them to, prowlarr has no issues with traffic for example I don't understand what I am missing. Would someone be able to spot the issue? Please let me know if you require more details! docker-compose.yaml networks: arr-network: driver: bridge ipam: driver: default config: - subnet: "172.30.172.0/24" enable_ipv6: false services: gluetun: image: qmcgaw/gluetun:latest container_name: gluetun cap_add: - NET_ADMIN - SYS_MODULE devices: - /dev/net/tun:/dev/net/tun environment: - VPN_SERVICE_PROVIDER=airvpn - VPN_TYPE=wireguard - WIREGUARD_PUBLIC_KEY=$airvpn_wg_pub_key - WIREGUARD_PRIVATE_KEY=$airvpn_wg_priv_key - WIREGUARD_PRESHARED_KEY=$airvpn_wg_preshared_key - WIREGUARD_ADDRESSES=$airvpn_wg_addresses - SERVER_COUNTRIES=Sweden - FIREWALL_VPN_INPUT_PORTS=49192 - FIREWALL_OUTBOUND_SUBNETS=192.168.2.0/24,172.30.172.0/24 - DNS_ADDRESS=$airvpn_dns - TZ=$timezone ports: - 9080:9080 # qbittorrent web GUI, port number can be changed BUT it must match WEBUI_PORT in qbittorrent service environment - 9696:9696 - 49192:49192 # Also add to TORRENTING_PORT in qbittorrent - 49192:49192/udp networks: - arr-network volumes: - gluetun_config:/gluetun restart: unless-stopped qbittorrent: image: ghcr.io/linuxserver/qbittorrent:5.1.0 container_name: qbittorrent cap_add: - NET_ADMIN network_mode: service:gluetun depends_on: gluetun: condition: service_started environment: - PUID=1000 - PGID=997 - TZ=$timezone - WEBUI_PORT=9080 - DOCKER_MODS=arafatamim/linuxserver-io-mod-vuetorrent - TORRENTING_PORT=49192 volumes: - qbit_config:/config - media:/media restart: unless-stopped prowlarr: image: lscr.io/linuxserver/prowlarr:latest container_name: prowlarr cap_add: - NET_ADMIN network_mode: service:gluetun depends_on: gluetun: condition: service_started environment: - PUID=1000 - PGID=1000 - TZ=$timezone volumes: - prowlarr_config:/config restart: unless-stopped sonarr: image: ghcr.io/linuxserver/sonarr container_name: sonarr cap_add: - NET_ADMIN environment: - PUID=1000 - PGID=997 - TZ=$timezone volumes: - sonarr_config:/config - media:/media ports: - 8989:8989 networks: - arr-network restart: unless-stopped radarr: image: ghcr.io/linuxserver/radarr container_name: radarr cap_add: - NET_ADMIN environment: - PUID=1000 - PGID=997 - TZ=$timezone volumes: - radarr_config:/config - media:/media ports: - 7878:7878 networks: - arr-network restart: unless-stopped bazarr: image: lscr.io/linuxserver/bazarr container_name: bazarr cap_add: - NET_ADMIN environment: - PUID=1000 - PGID=1000 - TZ=$timezone volumes: - bazarr_config:/config - media:/media ports: - 6767:6767 networks: - arr-network restart: unless-stopped volumes: gluetun_config: qbit_config: prowlarr_config: sonarr_config: radarr_config: bazarr_config: media: driver_opts: type: cifs o: username=$nasUser,password=$nasPass,file_mode=0777,dir_mode=0777,noperm device: $nasMediaPath
  16. Connection refused means it was able to connect but on your host nothing is listening on port 18992.
  17. Just tried AWG through Beeline Moscow, everything works without any issues. Also works on MGTS and MTS Moscow.
  18. Is it my ISP blocking it? It used to work fine before, but it recently stopped working.
  19. Hello, I can connect to the server, but port forwarding is not working. A port test shows "connection refused." I need help.
  20. AmneziaWG to AirVPN no longer works on Beeline, I cannot find any settings which would work. Obviously they learned how to block it. That means other ISPs may follow soon. May be if AirVPN used AmneziaWG on the server side we could try the fake packet parameters (S1 and S2) but as it's not gonna happen we're out of luck. We're pushed more and more to buy and set up our own servers with XRay/SingBox just to use the full Internet, or use the shady services offered in Telegram. It's no longer a privacy question, it's for the sakes of information access. As long as it works we want it because we need it.
  21. Words to live by! 🤣👍👍
  22. You'll never have problems with TCP only, though, hence the recommendation. It's like a high risk, high reward thing: By setting mixed mode, you may or may not see better throughput. You may also induce constipation on the line, one that no laxative will ever cure.
  23. server page on linux mint is barley functional but besides that it works alright
  24. Noticed a lot of pages are blocked when on this server (linux mint forms as an example) but arent on other servers as well as a lot more captchas then i normally deal with on other servers
  25. Apologies I sent a screenshot of the errors and didn't upload a full report, which is now shown below: https://eddie.website/report/74cb5d33/
  26. See https://airvpn.org/routes/?q=https%3A%2F%2Fwww.terryrodgers.com All red blocked for ping $ ping www.terryrodgers.com PING www.terryrodgers.com (206.188.193.246) 56(84) bytes of data. and $ whois 206.188.193.246 # # ARIN WHOIS data and services are subject to the Terms of Use # available at: https://www.arin.net/resources/registry/whois/tou/ # # If you see inaccuracies in the results, please report at # https://www.arin.net/resources/registry/whois/inaccuracy_reporting/ # # Copyright 1997-2025, American Registry for Internet Numbers, Ltd. # NetRange: 206.188.192.0 - 206.188.193.255 CIDR: 206.188.192.0/23 NetName: NSOL-206-188-192-0 NetHandle: NET-206-188-192-0-1 Parent: NET206 (NET-206-0-0-0-0) NetType: Direct Allocation OriginAS: AS6245, AS19871, AS14441 Organization: MonsterCommerce, LLC (MONST-1) RegDate: 2005-07-25 Updated: 2021-05-17 Ref: https://rdap.arin.net/registry/ip/206.188.192.0 OrgName: MonsterCommerce, LLC OrgId: MONST-1 Address: 5335 Gate Parkway City: Jacksonville StateProv: FL PostalCode: 32256 Country: US RegDate: 2004-08-16 Updated: 2024-11-25 Ref: https://rdap.arin.net/registry/entity/MONST-1 Seems to be an hoster https://pitchbook.com/profiles/company/10233-82#overview https://www.networksolutions.com/ is OK (currently) HTTP version is OK ; https://airvpn.org/routes/?q=http%3A%2F%2Fwww.terryrodgers.com
  1. Load more activity
×
×
  • Create New...