summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-12-11 20:08:03 +0100
committerlassulus <lassulus@lassul.us>2022-12-11 20:08:03 +0100
commit03ec5460b2bd2c74fdcab023d114f9997b71b15c (patch)
tree0a6b916a64330f53ad40c49b612a1740d5706d7e
parent00a232bc437b903372740f0dfbd0589616ed8bc8 (diff)
l yellow.r: allow internal traffic & dns
-rw-r--r--lass/1systems/yellow/config.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/lass/1systems/yellow/config.nix b/lass/1systems/yellow/config.nix
index 519665a3..c8077e5e 100644
--- a/lass/1systems/yellow/config.nix
+++ b/lass/1systems/yellow/config.nix
@@ -167,7 +167,9 @@ in {
{ v6 = false; predicate = "-d ${vpnIp}/32"; target = "ACCEPT"; }
{ predicate = "-o tun0"; target = "ACCEPT"; }
{ predicate = "-o retiolum"; target = "ACCEPT"; }
- { v6 = false; predicate = "-o eth0 -d 10.233.0.0/24"; target = "ACCEPT"; }
+ { v6 = false; predicate = "-d 1.1.1.1/32"; target = "ACCEPT"; }
+ { v6 = false; predicate = "-d 1.0.0.1/32"; target = "ACCEPT"; }
+ { v6 = false; predicate = "-o eth0 -d 10.233.2.0/24"; target = "ACCEPT"; }
];
};
};