We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eca06f4 + 320f5be commit 38533a1Copy full SHA for 38533a1
README.md
@@ -50,6 +50,7 @@ None
50
- rule: allow
51
to_port: 22
52
protocol: tcp
53
+ comment: 'allow incoming connection on standard ssh port'
54
```
55
56
##### Allow all traffic on eth1
@@ -62,6 +63,7 @@ None
62
63
64
interface: eth1
65
to_port: ''
66
+ comment: 'allow all traffic on interface eth1'
67
68
69
##### Allow snmp traffic from 1.2.3.4 on eth0
tasks/configure.yml
@@ -63,6 +63,7 @@
protocol: "{{ item.protocol | default('any') }}"
route: "{{ item.route | default(omit) }}"
log: "{{ item.log | default(false) }}"
+ comment: "{{ item.comment | default(omit) }}"
with_items: "{{ ufw_rules }}"
notify: reload ufw
tags:
0 commit comments