1
0

Compare commits

..

7 Commits

Author SHA1 Message Date
c363d55be5 delete unused function 2025-02-10 20:57:23 +00:00
40d257ef1b firewall: update zones with interface names as they appear 2025-02-10 00:42:27 +00:00
ac6d5618a6 export anoia.svc:fileno so it can be used with event loops 2025-02-10 00:41:01 +00:00
21f2cc6dad WIP add zones to firewall module
- zones are an attrset of name -> [interface-service]

- the firewall will create empty "ifname" sets for each zone name
 in each address family (ip, ip6)

- then watch the interface services, and add the "ifname" outputs
to the corresponding sets when they appear

This commit only adds the empty sets
2025-02-06 12:08:12 +00:00
0bb075ba6b thing 2025-02-06 09:22:41 +00:00
514a01098a add (very basic) set support in firewallgen
and add sets for lan/wan/dmz/guest interface names to default
firewall rules
2025-02-06 09:22:41 +00:00
f65cd0677e think 2025-02-06 09:22:41 +00:00
4 changed files with 8 additions and 15 deletions

View File

@ -7010,13 +7010,5 @@ which interface services are in which zones
we'd have to ensure that the interface services did not end up as
dependencies of the firewall
then the firewall could
- create the sets
- watch each interface service for the ifname output and add it to the right zone
Sun Feb 9 21:33:57 GMT 2025
nft update set @lan
echo 'flush set table-ip lan; add element table-ip lan { eth0,lo }' | nft -f -
then the firewall could watch each interface service for the ifname
output and add it to the right zone

View File

@ -69,6 +69,10 @@ in rec {
firewall = {
enable = true;
rules = secrets.firewallRules;
zones = {
lan = [ config.services.int ];
wan = [ config.services.wan ] ;
};
};
wireless.networks = {
# EDIT: if you have more or fewer wireless radios, here is where

View File

@ -48,7 +48,8 @@
(..
"flush set ip table-ip " zone "; \n"
"flush set ip6 table-ip6 " zone "; \n"
)))
)
(fn run []
(while true

View File

@ -50,10 +50,6 @@ in {
rules = mkOption { type = types.attrsOf types.attrs; };
zones = mkOption {
type = types.attrsOf (types.listOf liminix.lib.types.service);
default = {
lan = [ config.services.int ];
wan = [ config.services.wan ];
};
};
};