looking for some nftables help
3 networks on firewall ( isp, ofc, svc ( Nextcloud, HomeAsst, etc ) )
I want to ssh and web from ofc to svc, I would prefer to route rather than nat ( show source system rather than firewall )
net.ipv4.ip_forward = 1
Should this be sufficient for the routing?
table inet filter {
chain forward {
ip saddr $ofc_net oifname $svc_nic accept
iifname $srv_nic ip daddr $ofc_net ct state related,established accept
}
}