Jump to content
Not connected, Your IP: 216.73.216.239

Staff

Staff
  • Content Count

    11388
  • Joined

    ...
  • Last visited

    ...
  • Days Won

    1978

Everything posted by Staff

  1. Hello! Thanks for the report! Not yet: this function is not implemented in Eddie 2.1beta. Only "Force DNS" is (which anyway is more interesting for Windows users). The "any leak" prevention will be probably implemented with the next release (as you can see the release cycle of Eddie is pushed fast). Eddit No, not really... Eddie implements several, new censorship circumvention features, and in particular cases very restrictive rules can block some or all of them. On the other hand it's also a way to test how good is Eddie in bypassing censorship, blocks etc., but if you're not in a censorship-fan network you would not need such features anyway. Kind regards
  2. Hello, which Ubuntu version? What happens if you install OpenVPN manually (sudo apt-get install openvpn) ? Kind regards
  3. Hello! Yes, this is the right place. This is a known issue in openSUSE, as you can see in openSUSE environment report, because in openSUSE resolvconf or openresolv are not installed and not available in repositories. When such packages are not installed, you must not tick "Force DNS" in Eddie, because with that option OpenVPN relies on update-resolv-conf script, which in turn relies on resolvconf. Linux does not leak DNS queries, it just uses the DNS you set, sending the queries to the VPN server (encrypted) or to your router (unencrypted) in full compliance with the settings, routing table included. We define a DNS leak as such when the system does not comply to your settings, like in Windows (where the concept of global DNS is missing), and this is not the case with Linux. As a temporary workaround you can manually edit (as root) your /etc/resolv.conf file and insert the following line as first nameserver: nameserver 10.4.0.1 This will force usage of VPN DNS when connected to a VPN server to port 53, 80 or 443, either in UDP or TCP. When not connected to a VPN server, your system will use the other nameservers. Kind regards
  4. Hello! Please see here, now Ubuntu is supported. https://airvpn.org/topic/11598-eddie-21beta-available/ Kind regards
  5. Hello! We're very glad to inform you that a new Eddie Air client version has been released: 2.1beta. It addresses a lot of issues after the public first beta testing phase of 2.0beta. Please read the changelogs: https://airvpn.org/services/changelog.php?software=client&format=html The 2.1beta version is compatible with several Linux distributions. For very important notes about environments, please read here: https://airvpn.org/forum/35-client-software-platforms-environments Planned next steps: Network Leak Protection implementation, OS X version. Eddie 2.1beta Linux can be downloaded here: https://airvpn.org/linux_ex Eddie 2.1beta Windows can be downloaded here: https://airvpn.org/windows_ex Eddie 2.1beta is free and open source software released under GPLv3 Kind regards & datalove AirVPN Staff
  6. Hello, apparently you might follow two methods: whitelisting (you block everything and you allow only the browser) or blacklisting (you block all the applications that you want). In reality, whitelisting might be harder: there are system processes that must be able to reach the VPN server (for example svchost.exe, ping.exe...). We do not know unfortunately the complete list of Windows system processes which must be enabled. In general, if you connect to VPN servers ports 53, 80 or 443, in order to block an application only in the VPN, but leaving it able to communicate outside the VPN, you just need to block, for that application, outgoing packets coming from IP in range [10.4.0.1 - 10.9.255.254], any protocol. Kind regards
  7. Hello! We remind you that April projects funding poll is open and will close on May the 29th. Which project shall we fund? AirVPN community has selected the candidate projects during April and the community will decide the one to be funded! Feel free to express your preference here https://airvpn.org/topic/11569-poll-april-projects-funding Kind regards AirVPN Staff
  8. Hello! The client will not start under Ubuntu. A version running under Ubuntu is currently in testing. Everything is going well at the moment, so if no other issue rises up, the next Eddie release will include these changes and will run in Ubuntu distros as well. Kind regards
  9. Hello! Which server are you connecting stunnel to? From this line: Section stunnel: SSL server needs a certificate it might be a server-side problem. Also, try with "stunnel4" instead of "stunnel" Kind regards
  10. Hello! Does the problem occur on Pollux only? Kind regards
  11. Hello! Maybe so, but first please define a captive portal and elaborate. The more information the better. Kind regards
  12. Hello, we do not understand your point, that's a verification for suspect transactions to make sure that the credit cards data and the data you provide will match in order to prevent common frauds on the online environment. Without such verifications for each even slightly suspect transaction there would be no option for merchants to accept credit cards online: the number of frauds would be overwhelming. If you want to hide your identity in the transaction phase to the payment processor you need to pay with Bitcoin, not with your credit card. If you want to abort the transaction just do not provide the require data. Kind regards
  13. We're going to start with the April poll with a new option, let's see how it goes. Only persons who have contributed to our forums with at least 5 posts are allowed to vote. We have some perplexity whether to allow only premium users to vote: - Some people could use different accounts for VPN and forum posts. - The information whether a forum member is a premium member or not is NOT public. We want to avoid to disclose this information with this kind of distinction. If the community wants to know, for transparency purposes, who voted an option, that would become a privacy problem.
  14. Only persons who have contributed to our forums with at least 5 posts are allowed to vote. Anyone can vote with a single or multiple choice. Who votes for what is NOT a public information. We can change this if the community prefers so.
  15. Hello! The problem is here: It's not Eddie's problem, see here for a quick fix: http://askubuntu.com/a/172157 Kind regards
  16. Hello! Noted. We confirm the problem on Fedora: we will be investigating soon. Thanks for the report. Kind regards
  17. Hello! If you click the "Logs" tab, do the logs open? If so, if you click on the icon "Copy to clipboard" or "Save to file", what happens? EDIT. network-manager-openvpn usage is currently deprecated by us, see the instructions to know the reasons (here https://airvpn.org/topic/11432-using-airvpn-with-ubuntu-network-manager and here https://airvpn.org/topic/11432-using-airvpn-with-ubuntu-network-manager ) Kind regards
  18. Hello! We expected a notice like that It is not a bug, it is intentional and it does not pose any security concern. It looks like plain http, but it is NOT. What data can you see? Use Wireshark for example. You can see an HTTP request, with two parameters. These parameters are encrypted with AES 256, over a RSA 4096 bit pre-authentication, preventing any possible MITM attack. We don't use the similar layer implemented in HTTPS, we re-built it, so https become only an additional, useless layer. If you want to look at the code on GitHub, all the connections to our authentication servers are managed by this class: https://github.com/AirVPN/airvpn-client/blob/master/src/Core/AirExchange.cs In order: - Generation of AES 256 key (note: new one for each http request) - Encryption of the AES 256 key with "AirVPN Software Public Key" (RSA 4096 bit). This is the param "S" in HTTP request - Encryption of the data with AES. This is the param "D" in HTTP request - Our server receives the request. Only our server has the RSA Private Key, so only our server can decrypt/obtain the AES key. - Our server replies with data encrypted with the AES key, that only the client knows so that it can decrypt data. Our only missing feature (planned) is an implementation about revoking the public key on client-side. Thanks for the report. Kind regards
  19. Hello! You're not missing anything, we confirm the issue on openSUSE, we're investigating. Kind regards
  20. Hi, which servers (always specify names please)? Kind regards
  21. Hi, Eddie for Windows and Linux (in beta version) has been released, Eddie for OS X (in beta version) could be out at the end of May. Kind regards
  22. Hi, we changed nothing on this respect. Kind regards
  23. Hello, first check the most obvious, possible mistakes. Command "Ip" does not exist, probably you want to use "ip". Kind regards
  24. Hello! Yes, that very question we answered to. Kind regards
  25. Hello! It's planned but in the meantime just download the tar.gz archive, decompress it and run "airvpn" (even by double-clicking it from the file manager). In order to extract a tar.gz archive use the command "tar -xvfz" from a terminal or just use the graphical file manager in your desktop environment. Kind regards
×
×
  • Create New...