ALL ABOUT VPNs in OPNsense! Wireguard, OpenVPN, and IPSec Setup and Configuration

  Рет қаралды 9,356

apalrd's adventures

apalrd's adventures

Күн бұрын

In this very long video, I cover all the basics of VPN technologies (not the youtube shill type), how tunnels work, and the different topologies that are used in modern networks. Then I setup several examples for each of them using different protocols and methods.
Hopefully you find it useful in your own network!
Support me on Ko-Fi if you enjoy my content and find it useful:
ko-fi.com/apalrd
Feel free to chat about my upcoming projects on Discord!
/ discord
Timestamps:
0:00:00 - Introduction
0:00:22 - Concepts
0:08:45 - Topologies
0:17:25 - Wireguard
0:17:50 - Wireguard Site to Site
0:24:17 - Wireguard Client Access
0:29:22 - Wireguard Server Access
0:33:26 - Policy Routing
0:35:41 - OpenVPN Client Access
0:41:27 - Certificate Authority
0:47:21 - OpenVPN Multi-Factor
0:52:16 - IPSec Site to Site
1:00:12 - IP-IP
1:03:17 - Conclusions
#networking #vpn #opensource

Пікірлер: 52
@LeonardoSkorianez
@LeonardoSkorianez 2 ай бұрын
Amazing, I would like to see next video about DNS, maybe using adguard or pi-hole, or just some sort of dns filter inside unbound on opnsense
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
It's on the list, I'll give it a vote for you
@pingyofdoom
@pingyofdoom 2 ай бұрын
If its too short, include something that assigns local DNS hostnames dynamicly
@Tntdruid
@Tntdruid 2 ай бұрын
Get your snacks ready.
@Christos9
@Christos9 2 ай бұрын
Amazing video! Thanks for clarifying things.
@waynoinsaneo
@waynoinsaneo 2 ай бұрын
I've been waiting for this!
@l0gic23
@l0gic23 2 ай бұрын
Learned a lot. Ty
@Rodrigo-rq1dx
@Rodrigo-rq1dx 2 ай бұрын
Thank you!
@LubosMedovarsky
@LubosMedovarsky 2 ай бұрын
They must have Stockholm in Switzerland... somewhere... for sure ;-)
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
Just like there are kangaroos in Austria
@janiel471
@janiel471 Ай бұрын
thanks for great content. I'm setup opnsense for my gw and kind of curious about crowdsec and nginx WAF reverse proxy plugin in OPNsense. I'd appreciate so much if you have content on this topic. Thank youuuu
@tubeyou-ky4xt
@tubeyou-ky4xt 2 ай бұрын
OPNsense tutorial about vxlan over wireguard would be awesome. There is literally no decent tutorial about it out there. I have a use-case where windows clients must be able to hear L2 broadcast traffic (from FlexRadio SDR's) from a remote lan, where OPNsense is doing firewalling. People typically use ZeroTier or SoftEther for that, but I feel like wireguard + vxlan would be so much "cleaner", faster/lower latency, predictable and maintainable solution.
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
For your use case you might be able to save money doing vxlan with Mikrotik gear, if you can get away with 100M only (instead of Gigabit) they have an older model for $39 that can do VPNs and vxlan. Vxlan is pretty interoperable between vendors (at least unicast vxlan), so using those for remote sites and OPNsense for your core site could definitely be a thing.
@AdrianuX1985
@AdrianuX1985 2 ай бұрын
+1
@bogorad
@bogorad 2 ай бұрын
how about XRAY/vless/vmess/reality?
@digitalsparky
@digitalsparky 2 ай бұрын
The Internet is kinda like the movie Inception when it comes to networks.... It's a network of networks of networks of networks of networks ...... :P
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
Yeah, if only we used IPv6 where all addresses were public and we just needed to deal with security over the internet and not routing. This is what IPSec was originally designed for (Transport Mode).
@gramzon
@gramzon 19 күн бұрын
Can you do a review/how to of the IPFire OS?
@21Lettere
@21Lettere 2 ай бұрын
In the ClientAccess configuration, why did you use a public routable IPv6 address for the tunnel? Is this going to leak some data outside the tunnel if the WG server - for some reason - goes offline? Thanks
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
For IPv6, we need a publicly routable address from the VPN server's allocation. The global internet will route all of those packets back to the VPN server, so if the client tries to send a packet from another location using the address in the VPN server's prefix, it will end up coming back to the VPN server and not wherever the phone is now. Many networks will also drop packets that don't come from their address ranges (spoofed source address).
@21Lettere
@21Lettere 2 ай бұрын
I thought that both of the tunnel endpoints of a VPN connection have to be in the non-public routable address space like, for example, 192.168.10.10/24 (tunnel endpoint A) 192.168.10.11/24 (tunnel endpoint B) like in the IPv4 world scenario; I never imagined that the tunnel itself could be a public routable network. I suppose I have to learn IPv6 better :)@@apalrdsadventures
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
You can do it in IPv4 as well if you can afford the cost of the public IPs, it's just rarely done for that reason
@21Lettere
@21Lettere 2 ай бұрын
I never encountered a WG or OpenVPN setup with the tunnel set to a public routable IP address(s); all the documentations say that it should be a private (like RFC 1918) address. @@apalrdsadventures
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
I assume their documentation is just indicating you shouldn't use an IP block you don't own (like a lot of ISPs use 6/8 for CGNAT for various reasons).
@derderkommentierte741
@derderkommentierte741 Ай бұрын
What is the gateway IPv6 adress in your example? 32:33
@apalrdsadventures
@apalrdsadventures Ай бұрын
Same as with v4, our own address off by 1. Gateway field is normally used to resolve the MAC address of the next hop, but since Wireguard is a purely layer 3 protocol, there is no MAC. So we really just need *something*.
@BeeJoe25
@BeeJoe25 18 күн бұрын
Could Opnsense route everything through a Wireguard VPN provider including recursive DNS with Unbound?
@apalrdsadventures
@apalrdsadventures 18 күн бұрын
yes, you can add a policy route on LAN with a destination of 'not LAN net' and all clients on that net will route over the VPN. For Unbound you'd need to set the outgoing interface as the WG IF.
@RootServerAdministrator
@RootServerAdministrator Ай бұрын
I used to use wireguard but switched to ocserv.
@Joshua-jy3gu
@Joshua-jy3gu 2 ай бұрын
Can you do opnsense vlans next?
@rahulkakkarscience
@rahulkakkarscience 2 ай бұрын
Hi there. I'm behind a cgnat and my isp is not letting me open ports. How can i remote access my home server in the best way possible? I've used tailscale and it works great but i want to share my jellyfin among friends who aren't gonna wanna install tailscale. Can u suggest a better way?
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
Are they gonna want to install anything else? In general, one side of the tunnel needs to be publicly accessible, and the closed side needs to be the one to initiate the connection. If neither side is open, then you need a relay. Tailscale runs relays for their network. Nebula is the option I use (it's significantly faster than Tailscale and doesn't have the same points of failure as Tailscale / Headscale). But in any case the user is installing something. If they really don't want to install anything, then a cloudflare tunnel might be the answer. Or you could run a relay VPS to tunnel traffic.
@ikerstges
@ikerstges 2 ай бұрын
@@apalrdsadventures I struggle to setup a relay VPS to tunnel trafic. Will see if your great explanations give me enough info to setup such a relay! Keep em up, I really enjoy your videos!
@rahulkakkarscience
@rahulkakkarscience 2 ай бұрын
@@apalrdsadventuresi don't think they'll install anything. I tried cloudflare tunnel but i wasn't able to playback a high res movie through it. It had a bitrate of about 50mbps. Then i tried relay using vps and it's working great so far. I can play that movie on it with just slight buffering sometimes. Tailscale was insane for me in this regard though. I could play that movie on three devices simultaneously and then some without any buffering whatsoever. Maybe the bottleneck is my cloud vps server. I opted for a free tier oracle cloud compute with gives 1gb ram and 1micro cpu with .49gbps network bandwidth
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
Tailscale will *try* to go direct using their NAT traversal protocol (which is part of why they can't use the Wireguard kernel module), so if it's able to do that it should be pretty fast (at the cost of the CPU usage of doing Wireguard in Go in userspace). VPS could also be limited by the CPU to encrypt/decrypt. I did find that my small VPS I used for testing could not handle a lot. You could also do a layer 4 proxy VPS + IPv6 home if you have v6 at home, then at least most cellular clients will get v6 and go direct.
@rahulkakkarscience
@rahulkakkarscience 2 ай бұрын
@@apalrdsadventures Cool. I'll look into it. Thankyou for your valuable insights as always.
@jeffreyooi1971
@jeffreyooi1971 14 күн бұрын
I have followed all your steps but can't get the phase 2 showed up. Any idea where should I look at? Both site showing the same log information Site A = Informational charon 04[NET] error writing to socket: Can't assign requested address Site B = Informational charon 03[NET] error writing to socket: Can't assign requested address Thank you.
@apalrdsadventures
@apalrdsadventures 14 күн бұрын
well Charon is mad about one of your address configs somewhere. Honestly debugging this issue is a nightmare.
@jeffreyooi1971
@jeffreyooi1971 14 күн бұрын
@@apalrdsadventures alright, thanks will take a look at it. 👍👍👍
@AdrianuX1985
@AdrianuX1985 2 ай бұрын
56:42.. TLDR.. ;-))
@apalrdsadventures
@apalrdsadventures 2 ай бұрын
I think that describes IPSec very well
@imaginestudioio
@imaginestudioio 2 ай бұрын
Never in the tens of thousands of KZbin videos I've watched have I experienced more ads and ad time than this video. OMFG dude 🙄
@DerrickDevine
@DerrickDevine 2 ай бұрын
Not his fault....google is trying to get you to buy premium. Go setup adguard on your PC and you'll get less.
@linearburn8838
@linearburn8838 5 күн бұрын
Man you go realy fast and skip over the screens makes it hard to follow along I keep having to rewind over and over
@anand-nb4bb
@anand-nb4bb Ай бұрын
Hi Bro, Need your help. I have openvpn server with split tunnel configured on pfsense & use this VPN to connect to my work environment Currently I have a Ubuntu 18.04 laptop on which VPN client is configured, after connecting from this VPN, the internet on this system gets disconnected but I can connect to remote system I want internet to be working on my base system as well. There are a few paramenters in the confg file given below route-nopull route 192.168.10.62 255.255.255.255 Can you please help me step by step how to fix this. Kindly help. Thanks & regards,
SELF-HOSTING behind CGNAT for fun and IPv6 transition
36:12
apalrd's adventures
Рет қаралды 13 М.
Was ist im Eis versteckt? 🧊 Coole Winter-Gadgets von Amazon
00:37
SMOL German
Рет қаралды 39 МЛН
Cat Corn?! 🙀 #cat #cute #catlover
00:54
Stocat
Рет қаралды 14 МЛН
DO YOU HAVE FRIENDS LIKE THIS?
00:17
dednahype
Рет қаралды 101 МЛН
When You Get Ran Over By A Car...
00:15
Jojo Sim
Рет қаралды 28 МЛН
pfSense CE vs OPNsense 2024 ...and that video
43:05
Sheridan Computers
Рет қаралды 4,2 М.
Ultimate S-Tier Wifi Security with EAP-TLS Certificates (feat. Smallstep)
24:38
one of the craziest exploits i've ever seen
8:40
Low Level Learning
Рет қаралды 369 М.
WireGuard installation and configuration - on Linux
17:55
Christian Lempa
Рет қаралды 179 М.
WireGuard vs  OpenVPN vs  IPSec IKEv2 - What is the best?
17:25
Raspberry Pi Cloud
Рет қаралды 36 М.
OPNSense - WireGuard Road Warrior Setup
18:00
SYSADMIN102™
Рет қаралды 7 М.
Switching from PFsense to OPNsense? Here's a basic setup
12:47
Mactelecom Networks
Рет қаралды 38 М.
Собери ПК и Получи 10,000₽
1:00
build monsters
Рет қаралды 2,6 МЛН
Todos os modelos de smartphone
0:20
Spider Slack
Рет қаралды 17 МЛН