attachmentgenie-ufw
attachmentgenie-ufw copied to clipboard
I added the following rule via hiera: ufw::allow: allow-docker-from-jenkins: port : '4243' proto : 'tcp' from : '172.24.0.201' using absent will not remove the rule ufw::allow: allow-docker-from-jenkins: port : '4243'...
Hi, I have a particular firewall rule that gets executed on every puppet run because the unless statement is never matching. ``` ufw::allow { "allow-replication-from-${::fqdn}": proto => 'tcp', from =>...
What would be the equivalent of this simple ufw command? `ufw allow ssh/tcp` I guess app profiles are not support at the moment? My main concern is that I do...
this module hasn't been released since Jul 5th 2014, and i'm pretty and sure that stuff has changed since then :)
It would be really if it was possible to make rules based on the interface.
Previously, we were able to set `proto => 'any'`, this is no longer possible. `ufw`'s documentation, as well as our own issue history prove that people were using `any`, so...
Depending on the version of facter and the OS it is run under, `rspec-puppet-facts` may come without an `ipaddress_eth0` fact. This can cause a great number of our tests to...
from the man page: > ufw [--dry-run] route [delete] [insert NUM] allow|deny|reject|limit [in|out on INTERFACE] [log|log-all] [proto PROTOCOL] [from ADDRESS [port PORT]] [to ADDRESS [port PORT]] This enables you to...
For example, to allow all incoming traffic on port 80, but block specific IP addresses and ranges.
I have a Ubuntu 18.04 system that has puppet agent 6.02 installed and ufw is setting firewall rules every time the system runs as below. It should only apply changes...