From eab6e47804a9c482c66a142c61c2444274473eb4 Mon Sep 17 00:00:00 2001 From: Pi Date: Sat, 23 Feb 2019 17:12:17 -0500 Subject: [PATCH] update ufw to allow incoming dhcp --- roles/public/tasks/main.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/roles/public/tasks/main.yaml b/roles/public/tasks/main.yaml index 83de5d7..16502bf 100755 --- a/roles/public/tasks/main.yaml +++ b/roles/public/tasks/main.yaml @@ -177,7 +177,12 @@ - 98.205.0.0/16 - 98.241.0.0/16 - 98.32.0.0/11 - +- name: Allow DHCP + ufw: + rule: allow + to_port: 67 + become: true + tags: ufw_dhcp - name: Enable UFW ufw: state: enabled