Re: site-to-site VPN with credential prompts?

2025-04-05 Thread Erwan David
ed ssh over socat (with TLS, so that the handshake > > > didn't look suspect, in case their firewall sniffed that). Bonus: I > > > got to see whether they did MITM, since I made my own server and > > > client certs. > > > > If behind a BOFH firewall

Re: site-to-site VPN with credential prompts?

2025-04-05 Thread tomas
ct, in case their firewall sniffed that). Bonus: I > > got to see whether they did MITM, since I made my own server and > > client certs. > > If behind a BOFH firewall, ssh is usually a lot easier to tunnel to > sneak through than a VPN. My bet was that 443 is always open becaus

VPN over TLS (was: site-to-site VPN with credential prompts?)

2025-03-26 Thread Stefan Monnier
> I was once sitting at a $(DAYJOB) where they blocked everything but > 443 (and 80). I tunneled ssh over socat (with TLS, so that the handshake > didn't look suspect, in case their firewall sniffed that). Reminds me: I have an OpenVPN running on port 443, specifically to minimize the chances that

Re: VPN over TLS (was: site-to-site VPN with credential prompts?)

2025-03-26 Thread tomas
On Wed, Mar 26, 2025 at 10:16:19AM -0400, Stefan Monnier wrote: > > I was once sitting at a $(DAYJOB) where they blocked everything but > > 443 (and 80). I tunneled ssh over socat (with TLS, so that the handshake > > didn't look suspect, in case their firewall sniffed that). > > Reminds me: I have

Re: site-to-site VPN with credential prompts?

2025-03-26 Thread tomas
On Wed, Mar 26, 2025 at 11:28:40AM +0100, Erwan David wrote: [...] > > My bet was that 443 is always open because otherwise mid- and hi- > > level mgmt would be on top of the poor admins because they couldn't > > go to their share trading casinos: I won :) > > Admins would also have problems to

Re: site-to-site VPN with credential prompts?

2025-03-26 Thread gene heskett
look suspect, in case their firewall sniffed that). Bonus: I got to see whether they did MITM, since I made my own server and client certs. If behind a BOFH firewall, ssh is usually a lot easier to tunnel to sneak through than a VPN. My bet was that 443 is always open because otherwise mid- a

Re: site-to-site VPN with credential prompts?

2025-03-26 Thread Nicolas George
ITM, since I made my own server and > client certs. If behind a BOFH firewall, ssh is usually a lot easier to tunnel to sneak through than a VPN. > Bigcorps are like that. It was not that the firewall department didn't > want to talk to me. It was that they bought a "product&qu

Re: site-to-site VPN with credential prompts?

2025-03-26 Thread Nicolas George
jeremy ardley (HE12025-03-26): > One reason to choose VPN over ssh is that many ISPs block incoming ports > including ssh, telnet, RDP,  smtp, and smb ports. And they do not block ports used for VPNs. How convenient. -- Nicolas George

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread tomas
On Tue, Mar 25, 2025 at 01:58:27PM -0400, Timothy M Butterworth wrote: [...] > It is not that SSH is less secure, it is that crackers attempt to brute > force SSH servers [...] You still use passwords? Cheers -- t signature.asc Description: PGP signature

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread tomas
e 'better' approach is to have only a VPN > > > exposed and use heavy security on that. Once the VPN link is > > > established you can ssh through the VPN to internal systems. > > Why do you think SSH is less secure than any other VPN ? > > > >

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread tomas
On Wed, Mar 26, 2025 at 09:23:58AM +0800, jeremy ardley wrote: > > On 26/3/25 06:48, Jan Claeys wrote: > > FWIW: at that rate it takes millions of years to guess an even halfway > > semi-secure 8-character password, let alone the really secure longer > > one you_should_ be using. > > It's not the

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread jeremy ardley
On 26/3/25 06:48, Jan Claeys wrote: FWIW: at that rate it takes millions of years to guess an even halfway semi-secure 8-character password, let alone the really secure longer one you_should_ be using. It's not the random password guess that's a problem. It's the passwords that have been com

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread jeremy ardley
On 25/3/25 23:22, Jan Claeys wrote: On Mon, 2025-03-24 at 12:39 +0800, jeremy ardley wrote: I should mention that having an internet facing ssh service is usually a very bad idea. The 'better' approach is to have only a VPN exposed and use heavy security on that. Once the V

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Jeffrey Walton
On Tue, Mar 25, 2025 at 4:46 PM wrote: > > On Tue, Mar 25, 2025 at 01:58:27PM -0400, Timothy M Butterworth wrote: > > [...] > > > It is not that SSH is less secure, it is that crackers attempt to brute > > force SSH servers [...] > > You still use passwords? ++. $ cat /etc/ssh/sshd_config.d/10-p

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Timothy M Butterworth
On Tue, Mar 25, 2025 at 1:34 PM Jan Claeys wrote: > On Tue, 2025-03-25 at 17:12 +0100, Nicolas George wrote: > > Jan Claeys (HE12025-03-25): > > > > I should mention that having an internet facing ssh service is > > > > usually a very bad idea. The 'better&#

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Nicolas George
Jan Claeys (HE12025-03-25): > Jeremy insinuated that, not me, by saying that having SSH listening > publicly is a bad idea, and that “a VPN” listening publicly is somehow > safer. First of all, I want to say that I hope this will not turn into one of those discussion where you try

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread jeremy ardley
On 26/3/25 04:46, to...@tuxteam.de wrote: It is not that SSH is less secure, it is that crackers attempt to brute force SSH servers [...] You still use passwords? Out of the box debian has passwords enabled and certificates allowed but not mandatory. I can guarantee at least 90% of all de

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread jeremy ardley
ewall between it and my internal network. With the firewall I can detect if my openvpn host is compromised and can limit any exploitation. A second general principal is to minimise the attack surface. That is if you have two potentially vulnerable services (here ssh and VPN) then exposing onl

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Nicolas George
available on its usual port is annoying with the logging noise, but unless you are very constrained in terms of CPU or bandwidth it is not a danger. Also, all this hinges on the ability to run the port knocking or VPN on any legitimate client. That is a rather strong condition. If it does not hold

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Jan Claeys
On Tue, 2025-03-25 at 17:12 +0100, Nicolas George wrote: > Jan Claeys (HE12025-03-25): > > > I should mention that having an internet facing ssh service is > > > usually a very bad idea. The 'better' approach is to have only a > > > VPN exposed and use heav

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Nicolas George
Jan Claeys (HE12025-03-25): > > I should mention that having an internet facing ssh service is > > usually a very bad idea. The 'better' approach is to have only a VPN > > exposed and use heavy security on that. Once the VPN link is > > established you can ssh t

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread tomas
On Tue, Mar 25, 2025 at 04:22:10PM +0100, Jan Claeys wrote: > On Mon, 2025-03-24 at 12:39 +0800, jeremy ardley wrote: > > I should mention that having an internet facing ssh service is > > usually a very bad idea. The 'better' approach is to have only a VPN > > ex

Re: site-to-site VPN with credential prompts?

2025-03-25 Thread Jan Claeys
On Mon, 2025-03-24 at 12:39 +0800, jeremy ardley wrote: > I should mention that having an internet facing ssh service is > usually a very bad idea. The 'better' approach is to have only a VPN > exposed and use heavy security on that. Once the VPN link is > established you c

Re: site-to-site VPN with credential prompts?

2025-03-24 Thread john doe
On 3/24/25 05:39, jeremy ardley wrote: On 24/3/25 12:29, jeremy ardley wrote: You could use MFA on the SSH connection and then use certificates to establish the VPN connection? My SSH MFA setup has clients must connect using a certificate, then they must enter a pasword, and then they must

Re: site-to-site VPN with credential prompts?

2025-03-23 Thread jeremy ardley
On 24/3/25 12:29, jeremy ardley wrote: You could use MFA on the SSH connection and then use certificates to establish the VPN connection? My SSH MFA setup has clients must connect using a certificate, then they must enter a pasword, and then they must complete a google authenticator

Re: site-to-site VPN with credential prompts?

2025-03-23 Thread jeremy ardley
On 24/3/25 08:30, Jeffrey Walton wrote: My question is, does strongSwan or OpenVPN allow on-demand VPN over SSH with credential prompts? That is, I want to SSH into the router, then manually enter username, password and mfa code when I start the VPN. I believe I can use charon-cmd for the

site-to-site VPN with credential prompts?

2025-03-23 Thread Jeffrey Walton
Hi Everyone, My $dayjob issues Windows laptops for remote work. The laptops are installed with Cisco AnyConnect. I am fairly certain AnyConnect is using a SSTP configuration (but I have not conformed with Wireshark). When I connect to the VPN using AnyConnect, I have to enter a {username,password

Re: sources.list for Mozilla VPN

2024-12-11 Thread Christian Britz
Am 09.12.24 um 20:30 schrieb Paul Scott: > I have never been completely clear about the format for sources.list. > > Can someone tell what to add to sources.list to get mozillavpn (sid) Mozilla VPN is based on Mullvad VPN. Mullvad is cheaper and provides Debian packages.

Re: sources.list for Mozilla VPN

2024-12-10 Thread Andy Smith
Hi, On Tue, Dec 10, 2024 at 11:26:52PM +0100, Jean-François Bachelet wrote: > Le 10/12/2024 à 19:41, Andy Smith a écrit : > > According to: > > > > > > https://support.mozilla.org/en-US/kb/how-install-mozilla-vpn-linux-computer > > > > they only

Re: sources.list for Mozilla VPN

2024-12-10 Thread Jean-François Bachelet
packaged by or provided by Debian. According to: https://support.mozilla.org/en-US/kb/how-install-mozilla-vpn-linux-computer they only support Ubuntu. no. read at the bottom of that page 'for other distributions' ;) you can gert the sources from github and install/make it for debian t

Re: sources.list for Mozilla VPN

2024-12-10 Thread Greg Wooledge
things, Save 50% on Mozilla VPN* *with an annual subscription It looks like this is a non-free, commercial product, requiring a recurring monetary payment. Perhaps those ancient ia64 and risc ports came from a time when it was being offered as open source...?

Re: sources.list for Mozilla VPN

2024-12-10 Thread Geert Stappers
think you would be better off asking Mozilla how to install software > > they make, as this is not packaged by or provided by Debian. > > > > According to: > > > > > > https://support.mozilla.org/en-US/kb/how-install-mozilla-vpn-linux-computer >

Re: sources.list for Mozilla VPN

2024-12-10 Thread Tom Furie
On Tue, Dec 10, 2024 at 01:08:09PM -0700, Paul Scott wrote: > https://packages.debian.org/sid/mozillavpn shows the packages listed > as backports Sid doesn't have backports. What I see at that page is that there are *unofficial* builds of mozillavpn, but only on riscv64 and ia64. What architectur

Re: sources.list for Mozilla VPN

2024-12-10 Thread David Wright
On Tue 10 Dec 2024 at 13:08:09 (-0700), Paul Scott wrote: > https://packages.debian.org/sid/mozillavpn shows the packages listed > as backports I saw those, but they appear to be for rather unusual architectures, and I thought you'd have mentioned that. Cheers, David.

Re: sources.list for Mozilla VPN

2024-12-10 Thread Paul Scott
(sid) I think you would be better off asking Mozilla how to install software they make, as this is not packaged by or provided by Debian. According to: https://support.mozilla.org/en-US/kb/how-install-mozilla-vpn-linux-computer they only support Ubuntu. Thanks, Andy

Re: sources.list for Mozilla VPN

2024-12-10 Thread Andy Smith
tps://support.mozilla.org/en-US/kb/how-install-mozilla-vpn-linux-computer they only support Ubuntu. Thanks, Andy -- https://bitfolk.com/ -- No-nonsense VPS hosting

sources.list for Mozilla VPN

2024-12-09 Thread Paul Scott
I have never been completely clear about the format for sources.list. Can someone tell what to add to sources.list to get mozillavpn (sid) TIA, Paul

Re: FortiNet SSL VPN on Bookworm - alternative clients?

2024-06-26 Thread Christian Gelinek
On 27/6/24 11:52, Christian Gelinek wrote: Hi all, I'm wondering what options I have to connect as a client to a SSL VPN by Fortinet[0]. Their official client "for Linux" has instructions[1] for CentOS, Fedora and Ubuntu, although I found a blog[2] documenting the use of the

FortiNet SSL VPN on Bookworm - alternative clients?

2024-06-26 Thread Christian Gelinek
Hi all, I'm wondering what options I have to connect as a client to a SSL VPN by Fortinet[0]. Their official client "for Linux" has instructions[1] for CentOS, Fedora and Ubuntu, although I found a blog[2] documenting the use of the Ubuntu package on Debian 12. Then I

Mesh VPN on Debian (Was Re: Current best practices for system configuration management?)

2024-04-21 Thread Andy Smith
Hi, On Sat, Apr 20, 2024 at 04:40:24PM -0700, Mike Castle wrote: > Like Alex, one of my physical machines is a laptop that is not always > on the home network. Though I'm usually connected to *something*. > I'm still debating whether to bother with a VPN or trying somethi

trouble with VPN deactivation

2023-06-26 Thread Patrice Duroux
(sbuild),1000(lpadmin) Activating a VPN configuration is working nicely. But when switching back to the default network configuration it does not seem to not be ideal. Also the network is working but seems to me somehow degraded. Here are the traces observed using journalctl: -- Switching VPN on

Re: Add route exception in NetworkManager vpn

2022-10-11 Thread Tim Woodall
On Tue, 11 Oct 2022, Erwan David wrote: Hi, I use a vpn with network manager which routes everything through it. I'd like to add some exceptions for local or not so local ressources that cannot be reached through the VPN. The ideal situation would be to be able to give as gateway for

Add route exception in NetworkManager vpn

2022-10-11 Thread Erwan David
Hi, I use a vpn with network manager which routes everything through it. I'd like to add some exceptions for local or not so local ressources that cannot be reached through the VPN. The ideal situation would be to be able to give as gateway for those routes "the default gateway befo

Re: Network manager: activating VPN in GNOME remote session doesn't work, but in KDE remote session (xrdp)

2022-08-09 Thread B.M.
Hmm, there seems to be a difference between networkmanager in KDE and in Gnome: Situation is, there are two users, A and B. B defined this VPN connection and wants to start it. If only B is logged in (directly, not remotely), she can start the VPN in both KDE and Gnome. If B is logged in

Re: Network manager: activating VPN in GNOME remote session doesn't work, but in KDE remote session (xrdp)

2022-08-09 Thread B.M.
nmcli con up doesn't work either: nothing happens except the three dots where the VPN icon is shown and after 90 seconds a timeout message appears in the terminal window; so exactly the same behaviour :-( Bernd On Monday, August 8, 2022 3:03:17 PM CEST Harald Dunkel wrote: > Hi BM >

Re: Network manager: activating VPN in GNOME remote session doesn't work, but in KDE remote session (xrdp)

2022-08-08 Thread Harald Dunkel
Hi BM if your VPN is IPsec, then you might want to examine charon's output via journalctl. Probably openvpn, wireguard and others can be found there, too. Another thing to try is to establish the VPN connection using nmcli in a terminal window, e.g. nmcli con up "VPN name&q

Network manager: activating VPN in GNOME remote session doesn't work, but in KDE remote session (xrdp)

2022-08-08 Thread B.M.
Hi I'm encountering a somehow strange problem: A user logs into another computer via xrdp, starting either KDE Plasma or GNOME3. Then she wants to connect to a vpn (openvpn) by clicking on Tray Icon -> Networks -> -> Connect (in case of KDE) or -> VPN Off -> Connect (in

Re: Mozilla VPN on Debian?

2021-02-28 Thread Anssi Saari
D&P Dimov writes: > And since you mentioned that you wouldn't sign up for it, do you have another > VPN > provider/service that you would recommend that works in Debian Buster > (stable) with just free > software? I've used AirVPN before (https://airvpn.or

Re: Mozilla VPN on Debian?

2021-02-27 Thread D&P Dimov
On Saturday, February 27, 2021, 5:43:25 AM EST, Anssi Saari wrote: Brian writes: > On Fri 26 Feb 2021 at 18:04:28 +, D&P Dimov wrote: > >> Hello, >> Mozilla VPN is supposed to work on Ubuntu, but I wonder if it will >> work on Debian as well, conside

Re: Mozilla VPN on Debian?

2021-02-27 Thread Anssi Saari
Brian writes: > On Fri 26 Feb 2021 at 18:04:28 +, D&P Dimov wrote: > >> Hello, >> Mozilla VPN is supposed to work on Ubuntu, but I wonder if it will >> work on Debian as well, considering that Ubintu is build on Debian. >> Has anyone tried? (The Mozilla su

Re: Mozilla VPN on Debian?

2021-02-26 Thread Darac Marjal
On 26/02/2021 21:27, Dan Ritter wrote: > D&P Dimov wrote: >> >> On Friday, February 26, 2021, 3:16:03 PM EST, Dan Ritter >> wrote: >> D&P Dimov wrote: >>> Hello, >>> Mozilla VPN is supposed to work on Ubuntu, but I wonder if it will

Re: Mozilla VPN on Debian?

2021-02-26 Thread Dan Ritter
D&P Dimov wrote: > > On Friday, February 26, 2021, 3:16:03 PM EST, Dan Ritter > wrote: > D&P Dimov wrote: > > Hello, > > Mozilla VPN is supposed to work on Ubuntu, but I wonder if it will work on > > Debian as well, considering that Ubintu is

Re: Mozilla VPN on Debian?

2021-02-26 Thread Dan Ritter
D&P Dimov wrote: > Hello, > Mozilla VPN is supposed to work on Ubuntu, but I wonder if it will work on > Debian as well, considering that Ubintu is build on Debian. Has anyone tried? > (The Mozilla support was not helpful in answering my question). What protocol is the Mozilla

Re: Mozilla VPN on Debian?

2021-02-26 Thread Brian
On Fri 26 Feb 2021 at 18:04:28 +, D&P Dimov wrote: > Hello, > Mozilla VPN is supposed to work on Ubuntu, but I wonder if it will > work on Debian as well, considering that Ubintu is build on Debian. > Has anyone tried? (The Mozilla support was not helpful in answering my >

Re: VPN ideas

2020-12-10 Thread Celejar
On Thu, 10 Dec 2020 10:47:13 +0200 Andrei POPESCU wrote: > On Mi, 09 dec 20, 11:53:20, Celejar wrote: > > > > As to ProtonMail, as we've discussed in the past, I'm sort of tempted, > > but I'm not willing to give up standards based email, nor am I that > > interested in running their proprietary

Re: VPN ideas

2020-12-10 Thread Andrei POPESCU
On Mi, 09 dec 20, 11:53:20, Celejar wrote: > > As to ProtonMail, as we've discussed in the past, I'm sort of tempted, > but I'm not willing to give up standards based email, nor am I that > interested in running their proprietary (albeit apparently GPL?) bridge > application. Yes, lack of IMAP/SM

Re: VPN ideas

2020-12-10 Thread Andrei POPESCU
On Mi, 09 dec 20, 19:06:27, Joe wrote: > > It's not more secure, (apart from using wifi only occasionally) but the > kind of people looking at other peoples' network activities are more > likely to target public wifi than to sit outside my house. It will > require significantly more resources and

Re: VPN ideas

2020-12-09 Thread Joe
y other hot-spot users or > > > local staff). > > > > > > Other that that, as far as I'm aware, the biggest threat are the > > > servers I access with my client software (typically web sites > > > accessed with a browser), in which case it doesn&#x

Re: VPN ideas

2020-12-09 Thread Celejar
So any unencrypted protocol you use can be > > overheard. > > It doesn't matter much whether the public WiFi is using encryption or > not. > > Any unencrypted communication over the internet is vulnerable. Period. > > Even if some segments[1] are somewhat pro

Re: VPN ideas

2020-12-09 Thread Celejar
, 8 Dec 2020 11:44:36 +0200 > > > > Andrei POPESCU wrote: > > > > > > > > ... > > > > > > > > >Unless you have access to a system on the internet to set up your > > > > > own > > > > >VPN server y

Re: VPN ideas

2020-12-09 Thread Andrei POPESCU
ter much whether the public WiFi is using encryption or not. Any unencrypted communication over the internet is vulnerable. Period. Even if some segments[1] are somewhat protected, the segment between the router/firewall/VPN exit point and the server on the internet is still completely vulnerab

Re: VPN ideas

2020-12-09 Thread Henning Follmann
with my client software (typically web sites > > accessed with a browser), in which case it doesn't make any > > difference whether I access them via some VPN and/or (home) firewall. > > > > (Assuming one doesn't run NFS, Samba, etc. *listening* software on >

Re: VPN ideas

2020-12-09 Thread Stefan Monnier
> I suppose it may depend on where you are. In the UK, public wifi > normally uses no encryption, because there are no local staff who can > help with problems. So any unencrypted protocol you use can be > overheard. Around here we have a mix: - for small businesses (like coffeehouses or family-o

Re: VPN ideas

2020-12-09 Thread Henning Follmann
On Wed, Dec 09, 2020 at 09:46:07AM +0100, to...@tuxteam.de wrote: > On Tue, Dec 08, 2020 at 05:00:44PM -0500, Roberto C. Sánchez wrote: > > [...] > > > If something is free, you aren't the customer, you are the product. > > All generalizations suck. > chuckle, that was a good one. :) -H --

Re: VPN ideas

2020-12-09 Thread Joe
On Wed, 9 Dec 2020 12:49:44 +0200 Andrei POPESCU wrote: > On Mi, 09 dec 20, 10:21:46, Joe wrote: > > On Wed, 9 Dec 2020 11:49:45 +0200 > > Andrei POPESCU wrote: > > > > > On Ma, 08 dec 20, 12:27:40, Joe wrote: > > > > > > > > This

Re: VPN ideas

2020-12-09 Thread Andrei POPESCU
On Mi, 09 dec 20, 10:21:46, Joe wrote: > On Wed, 9 Dec 2020 11:49:45 +0200 > Andrei POPESCU wrote: > > > On Ma, 08 dec 20, 12:27:40, Joe wrote: > > > > > > This application is also useful with a home VPN server, if you're > > > not trying

Re: VPN ideas

2020-12-09 Thread Joe
On Wed, 9 Dec 2020 11:49:45 +0200 Andrei POPESCU wrote: > On Ma, 08 dec 20, 12:27:40, Joe wrote: > > > > This application is also useful with a home VPN server, if you're > > not trying to hide anything, but just want to use the Net > > reasonably safely from

Re: VPN ideas

2020-12-09 Thread Andrei POPESCU
; > ... > > > > > > >Unless you have access to a system on the internet to set up your > > > > own > > > >VPN server you have to rely on (paid) VPN providers. > > > > > > There are free ones as well, e.g.: > > >

Re: VPN ideas

2020-12-09 Thread Andrei POPESCU
On Ma, 08 dec 20, 12:27:40, Joe wrote: > > This application is also useful with a home VPN server, if you're not > trying to hide anything, but just want to use the Net reasonably safely > from an unsafe location e.g. Internet cafe. You can tailor a set of > firewall rules to

Re: VPN ideas

2020-12-09 Thread tomas
On Tue, Dec 08, 2020 at 05:00:44PM -0500, Roberto C. Sánchez wrote: [...] > If something is free, you aren't the customer, you are the product. All generalizations suck. Cheers - t signature.asc Description: Digital signature

Re: VPN ideas

2020-12-08 Thread Celejar
On Tue, 8 Dec 2020 17:00:44 -0500 Roberto C. Sánchez wrote: > On Tue, Dec 08, 2020 at 02:48:26PM -0500, Celejar wrote: > > On Tue, 8 Dec 2020 11:44:36 +0200 > > Andrei POPESCU wrote: > > > > ... > > > > >Unless you have access to a system on the

Re: VPN ideas

2020-12-08 Thread Roberto C . Sánchez
On Tue, Dec 08, 2020 at 02:48:26PM -0500, Celejar wrote: > On Tue, 8 Dec 2020 11:44:36 +0200 > Andrei POPESCU wrote: > > ... > > >Unless you have access to a system on the internet to set up your own > >VPN server you have to rely on (paid) VPN providers.

Re: VPN ideas

2020-12-08 Thread Celejar
On Tue, 8 Dec 2020 11:44:36 +0200 Andrei POPESCU wrote: ... >Unless you have access to a system on the internet to set up your own > VPN server you have to rely on (paid) VPN providers. There are free ones as well, e.g.: https://www.techradar.com/vpn/best-free-vpn I don'

Re: VPN ideas

2020-12-08 Thread Celejar
On Tue, 8 Dec 2020 09:43:31 +0100 wrote: > On Tue, Dec 08, 2020 at 08:12:09AM +0100, john doe wrote: > > On 12/8/2020 1:50 AM, Charles Curley wrote: > > >On Mon, 7 Dec 2020 23:27:25 +0200 > > >ellanios82 wrote: > > > > > >>  - any suggestion

Re: VPN ideas

2020-12-08 Thread Joe
; >Unless you have access to a system on the internet to set up your > own VPN server you have to rely on (paid) VPN providers. > >Tor is also an option for this use case. > > Which of the above would apply for you? > > >  - and , is this a reasonable idea ? &g

Re: VPN ideas

2020-12-08 Thread Andrei POPESCU
On Ma, 08 dec 20, 11:44:36, Andrei POPESCU wrote: > On Lu, 07 dec 20, 23:27:25, ellanios82 wrote: > >  Hi List   :) > > > > > >  - any suggestions please , for a handy VPN for everyday use : no specific > > purpose, but only to add a little more privacy ?? &

Re: VPN ideas

2020-12-08 Thread Andrei POPESCU
On Lu, 07 dec 20, 23:27:25, ellanios82 wrote: >  Hi List   :) > > >  - any suggestions please , for a handy VPN for everyday use : no specific > purpose, but only to add a little more privacy ?? This is quite vage. VPNs are generally used for two purposes: 1. Connect a remote

Re: VPN ideas

2020-12-08 Thread Alex Mestiashvili
On 12/8/20 9:43 AM, to...@tuxteam.de wrote: On Tue, Dec 08, 2020 at 08:12:09AM +0100, john doe wrote: On 12/8/2020 1:50 AM, Charles Curley wrote: On Mon, 7 Dec 2020 23:27:25 +0200 ellanios82 wrote:  - any suggestions please , for a handy VPN for everyday use : no specific purpose, but

Re: VPN ideas

2020-12-08 Thread tomas
On Tue, Dec 08, 2020 at 08:12:09AM +0100, john doe wrote: > On 12/8/2020 1:50 AM, Charles Curley wrote: > >On Mon, 7 Dec 2020 23:27:25 +0200 > >ellanios82 wrote: > > > >>  - any suggestions please , for a handy VPN for everyday use : no > >>specific purpose

Re: VPN ideas

2020-12-07 Thread john doe
On 12/8/2020 1:50 AM, Charles Curley wrote: On Mon, 7 Dec 2020 23:27:25 +0200 ellanios82 wrote:  - any suggestions please , for a handy VPN for everyday use : no specific purpose, but only to add a little more privacy ?? With no requirements, it is difficult to say. Will a VPN be

Re: VPN ideas

2020-12-07 Thread Charles Curley
On Mon, 7 Dec 2020 23:27:25 +0200 ellanios82 wrote: >  - any suggestions please , for a handy VPN for everyday use : no > specific purpose, but only to add a little more privacy ?? With no requirements, it is difficult to say. Will a VPN be overkill? Would you be better off with open

Re: VPN ideas

2020-12-07 Thread Mark Fletcher
On Mon, Dec 07, 2020 at 04:35:09PM -0500, Roberto C. Sánchez wrote: > On Mon, Dec 07, 2020 at 11:27:25PM +0200, ellanios82 wrote: > >  Hi List   :) > > > > > >  - any suggestions please , for a handy VPN for everyday use : no specific > > purpose, but

Re: VPN ideas

2020-12-07 Thread ellanios82
On 12/7/20 11:35 PM, Roberto C. Sánchez wrote: On Mon, Dec 07, 2020 at 11:27:25PM +0200, ellanios82 wrote:  Hi List   :)  - any suggestions please , for a handy VPN for everyday use : no specific purpose, but only to add a little more privacy ??  - and , is this a reasonable idea ? It

Re: VPN ideas

2020-12-07 Thread Georgi Naplatanov
On 12/7/20 11:27 PM, ellanios82 wrote: >  Hi List   :) > > >  - any suggestions please , for a handy VPN for everyday use : no > specific purpose, but only to add a little more privacy ?? > >  - and , is this a reasonable idea ? > > Hey ellanios82, many people and

Re: VPN ideas

2020-12-07 Thread Roberto C . Sánchez
On Mon, Dec 07, 2020 at 11:27:25PM +0200, ellanios82 wrote: >  Hi List   :) > > >  - any suggestions please , for a handy VPN for everyday use : no specific > purpose, but only to add a little more privacy ?? > >  - and , is this a reasonable idea ? > It is difficult

VPN ideas

2020-12-07 Thread ellanios82
 Hi List   :)  - any suggestions please , for a handy VPN for everyday use : no specific purpose, but only to add a little more privacy ??  - and , is this a reasonable idea ?  regards  ellan

Re: Instalar cliente VPN en Debian 9

2020-03-19 Thread Paynalton
El jue., 19 mar. 2020 a las 10:48, Javier Fidalgo () escribió: > Buenas tardes, > Les escribo porque necesito instalar un cliente VPN en mi debian 9. > Estoy buscando alternativas a OpenVPN ya que, este me obliga a tener > configurado un servidor en el destino. > Te reco

Re: Instalar cliente VPN en Debian 9

2020-03-19 Thread tomas
On Thu, Mar 19, 2020 at 02:56:56PM +, Javier Fidalgo wrote: > Buenas tardes, > Les escribo porque necesito instalar un cliente VPN en mi debian 9. Buenas tardes esta lista es en inglés. Si Vd. prefiere una lista en castellano, está por aquí: https://lists.debian.org/debian-user-s

Re: Instalar cliente VPN en Debian 9

2020-03-19 Thread john doe
On 3/19/2020 3:56 PM, Javier Fidalgo wrote: > Buenas tardes, > Les escribo porque necesito instalar un cliente VPN en mi debian 9. > Estoy buscando alternativas a OpenVPN ya que, este me obliga a tener > configurado un servidor en el destino. > Después de una exhausta búsqueda n

Instalar cliente VPN en Debian 9

2020-03-19 Thread Javier Fidalgo
Buenas tardes, Les escribo porque necesito instalar un cliente VPN en mi debian 9. Estoy buscando alternativas a OpenVPN ya que, este me obliga a tener configurado un servidor en el destino. Después de una exhausta búsqueda no he encontrado alternativas a OpenVPN, desconozco si hay más

Debian 9, Xfce, Network Manager, strongSwan and UniFi VPN

2020-02-05 Thread David Christensen
LAN 192.168.5.0/24 and has address 192.158.5.1. I have created a RADIUS account 'dpchrist' in the UniFi Controller. I have configured a VPN network in the UniFi Controller: Nameremote-access VPN TypeL2TP Server

network-manager-openvpn GUI not keeping automatic VPN connection setting

2019-11-05 Thread Jape Person
I hope that subject line doesn't obfuscate the issue. I'm using Sid/testing with Xfce4 desktop environment, fully updated. openvpn 2.4.7-1 network-manager-openvpn 1.8.10-1 network-manager-openvpn-gnome 1.8.10-1 Using the GUI I set openvpn to connect automatically to a chosen VPN. I

Re: VPN connection fails

2019-07-27 Thread George
Hi there. >> I tried to connect with network-manager to my vpn and it fails. >> I attached the error code i get from the log files. >> Any ideas? >> >> Jul 27 15:45:28 Laptop NetworkManager[1069]: [1564231528.5054] >> vpn-connection[0x560dce4de740,34b2b840-a75b-

Re: VPN connection fails

2019-07-27 Thread Roberto C . Sánchez
On Sat, Jul 27, 2019 at 03:55:22PM +0300, George wrote: > Hi there. > I tried to connect with network-manager to my vpn and it fails. > I attached the error code i get from the log files. > Any ideas? > > Jul 27 15:45:28 Laptop NetworkManager[1069]: [1564231528.5054]

VPN connection fails

2019-07-27 Thread George
Hi there. I tried to connect with network-manager to my vpn and it fails. I attached the error code i get from the log files. Any ideas? Thanks in advance! Jul 27 15:45:17 Laptop nm-openvpn[8667]: OpenVPN 2.4.7 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD

Re: L2TP VPN client

2019-06-23 Thread David Christensen
On 6/23/19 6:16 AM, Curt wrote: On 2019-06-23, David Christensen wrote: STFW I see: https://www.bestvpnz.com/tutorials/how-to-set-up-l2tp-ipsec-vpn-on-linux-networkmanager-strongswan/ I have installed: 2019-06-22 19:04:11 root@tinkywinky ~ # dpkg-query --show xl2tpd strongswan network

Re: L2TP VPN client

2019-06-23 Thread Curt
On 2019-06-23, David Christensen wrote: > > STFW I see: > > https://www.bestvpnz.com/tutorials/how-to-set-up-l2tp-ipsec-vpn-on-linux-networkmanager-strongswan/ > > I have installed: > > 2019-06-22 19:04:11 root@tinkywinky ~ > # dpkg-query --show xl2tpd strongswan

L2TP VPN client

2019-06-22 Thread David Christensen
debian-user: I have an L2TP VPN server that allows incoming connections from clients who have the following four (4) items: 1. IP address or DNS name of the L2TP VPN server. 2. Pre-shared key. 3. User name. 4. User password. I am able to connect to the L2TP VPN server using macOS

Re: VPN client for CheckPoint VPN

2019-05-20 Thread Dan Ritter
Jim Popovitch wrote: > On Mon, 2019-05-20 at 16:45 +0200, Alexandre GRIVEAUX wrote: > > Le 2019-05-20 16:16, Jim Popovitch a écrit : > > > Is there a VPN endpoint client that works with "CheckPoint EndPoint > > > Security VPN". I have been assign

Re: VPN client for CheckPoint VPN

2019-05-20 Thread Jim Popovitch
On Mon, 2019-05-20 at 16:45 +0200, Alexandre GRIVEAUX wrote: > Le 2019-05-20 16:16, Jim Popovitch a écrit : > > Is there a VPN endpoint client that works with "CheckPoint EndPoint > > Security VPN". I have been assigned an IP address of the VPN server, a > > userna

  1   2   3   4   5   6   7   8   >