X-Git-Url: https://git.distorted.org.uk/~mdw/firewall/blobdiff_plain/36307da92b89c2413f49e2b705f73b2d1ec4e849..a188f54944e56c7588f7ebbabbef3cee19686575:/ibanez.m4 diff --git a/ibanez.m4 b/ibanez.m4 index f826e04..2ec2c1c 100644 --- a/ibanez.m4 +++ b/ibanez.m4 @@ -27,17 +27,23 @@ ## This host isn't a router. setconf(forward, 0) +## This host is involved in a routing asymmetry. +setconf(rp_filter, 0) +setconf(log_martians, 0) + ###-------------------------------------------------------------------------- ### Network interfaces. m4_divert(44)m4_dnl ## Interface definitions. -if_untrusted=br0 -if_trusted=br0 -if_vpn=br0 -if_iodine=br0 -if_its_mz=br0 -if_its_pi=br0 +if_dmz=br-dmz +if_trusted=br-unsafe +if_safe=$if_dmz,$if_trusted +if_untrusted=$if_dmz,$if_trusted +if_vpn=$if_dmz,$if_trusted +if_iodine=$if_dmz,$if_trusted +if_its_mz=$if_dmz,$if_trusted +if_its_pi=$if_dmz,$if_trusted m4_divert(-1) ###-------------------------------------------------------------------------- @@ -46,10 +52,11 @@ m4_divert(-1) m4_divert(82)m4_dnl ## Externally visible services. allowservices inbound tcp \ - ssh + ssh \ + ident ## We have to provide NTP service. The guests sync to our clock. -ntpclient inbound 158.152.1.76 158.152.1.204 194.159.253.2 +ntpclient inbound $ntp_servers m4_divert(-1) ###----- That's all, folks --------------------------------------------------