blob: e70efaf9dfec80d1ea16d28e1e0caa0f1c67b4db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
net.ipv4.ip_forward:
sysctl.present:
- value: 1
iptables_pxe_nat:
iptables.append:
- table: nat
- chain: POSTROUTING
- jump: MASQUERADE
- destination: 0/0
- source: {{ salt['pillar.get']('_param:single_address') }}/24
- save: True
iptables_pxe_source:
iptables.append:
- table: filter
- chain: INPUT
- jump: ACCEPT
- destination: 0/0
- source: {{ salt['pillar.get']('_param:single_address') }}/24
- save: True
iptables_pxe_destination:
iptables.append:
- table: filter
- chain: INPUT
- jump: ACCEPT
- destination: {{ salt['pillar.get']('_param:single_address') }}/24
- source: 0/0
- save: True
|