aboutsummaryrefslogtreecommitdiff
path: root/templates/ferm.conf.epp
blob: 37afca09fe5f79f20c4b15536d46b9d59fd4581e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%- | String[1] $ip | -%>
# End custom section

domain (<%= $ip %>) table filter {
  chain INPUT {
    interface lo ACCEPT;
    @include '/etc/ferm.d/chains/INPUT.conf';
  }

  chain OUTPUT {
    @include '/etc/ferm.d/chains/OUTPUT.conf';
  }

  chain FORWARD {
    @include '/etc/ferm.d/chains/FORWARD.conf';
  }
}