From f725e9cfb579cb9017ad7db4df46f012c0585e39 Mon Sep 17 00:00:00 2001 From: Moni Ghaoui Date: Tue, 8 Jul 2025 22:05:34 +0200 Subject: [PATCH] tailscale --- os/FreeBSD/FreeBSD_on_Lenovo_Thinkcentre.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/os/FreeBSD/FreeBSD_on_Lenovo_Thinkcentre.md b/os/FreeBSD/FreeBSD_on_Lenovo_Thinkcentre.md index a0001ec..84da0ff 100644 --- a/os/FreeBSD/FreeBSD_on_Lenovo_Thinkcentre.md +++ b/os/FreeBSD/FreeBSD_on_Lenovo_Thinkcentre.md @@ -91,11 +91,16 @@ nvim /etc/pf.conf Contents: ``` -ext_if="em0" block in all -pass in on $ext_if proto tcp to ($ext_if) port ssh + +ext_if="em0" +pass in on $ext_if proto tcp to ($ext_if) port 22 pass in on $ext_if proto tcp to ($ext_if) port 80 pass in on $ext_if proto tcp to ($ext_if) port 443 + +tailscale_if="tailscale0" +pass in on $tailscale_if proto tcp to any port 22 + pass out all keep state ```