- name: allow ICMP for local network win_firewall_rule: name: ICMP - Local network description: "Allow ICMP packets from corp network" enabled: yes action: allow direction: in profiles: - domain - private protocol: icmpv4 remoteip: "{{ int_net }}" state: present - name: allow SMB for local network win_firewall_rule: name: SMB - Local network description: "Allow SMB packets from corp network" enabled: yes action: allow direction: in profiles: - domain - private protocol: tcp remoteip: "{{ int_net }}" remoteport: 445 state: present