Re: [go-nuts] Any general VPN(pptp, l2tp, openVPN, IPSec VPN) server implementation in go?

2020-11-17 Thread Sergey Matveev
Greetings! *** Nathan [2020-11-17 02:33]: >But I did a lot of research, it seems there is no go implementation for the >general VPN. There is pure Go ESPv3/IKEv2 implementation: http://www.gostipsec.cypherpunks.ru/ It supports small subset of algorithms, but is ok for testing purposes. --

Re: [go-nuts] Any general VPN(pptp, l2tp, openVPN, IPSec VPN) server implementation in go?

2020-11-17 Thread Daniel Moch
> Hi, I want to use a general VPN protocols to comminucate with my server, we > cannot change the client to use other VPN protocols. > But I did a lot of research, it seems there is no go implementation for the > general VPN. > > I really want that I'm wrong, so do any guys can give me some

Re: [go-nuts] Any general VPN(pptp, l2tp, openVPN, IPSec VPN) server implementation in go?

2020-11-17 Thread Mohamed Yousif
How about wireguard[1]? [1]: https://git.zx2c4.com/wireguard-go/about/ On Tue, 17 Nov 2020, 12:34 pm Nathan, wrote: > Hi, I want to use a general VPN protocols to comminucate with my server, > we cannot change the client to use other VPN protocols. > But I did a lot of research, it seems there

[go-nuts] Any general VPN(pptp, l2tp, openVPN, IPSec VPN) server implementation in go?

2020-11-17 Thread Nathan
Hi, I want to use a general VPN protocols to comminucate with my server, we cannot change the client to use other VPN protocols. But I did a lot of research, it seems there is no go implementation for the general VPN. I really want that I'm wrong, so do any guys can give me some suggestion?