Commit c7506550 authored by Boxiang Sun's avatar Boxiang Sun

slapos-standalone: allow to access localhost

parent 0e12cf66
......@@ -23,6 +23,29 @@
destination_port: 53
jump: ACCEPT
- name: Allow to use localhost
iptables:
action: append
chain: INPUT
in_interface: lo
jump: ACCEPT
- name: Allow to use localhost
iptables:
action: append
chain: INPUT
source: 127.0.0.1
destination: 127.0.0.1
jump: ACCEPT
- name: Allow to use localhost
iptables:
action: append
chain: OUTPUT
source: 127.0.0.1
destination: 127.0.0.1
jump: ACCEPT
- name: Allow to access shacache
iptables:
action: append
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment