- Overview - What is the windows_firewall module?
- Module Description - What does the module do?
- Setup - The basics of getting started with windows_firewall
- Usage - The classes, defined types, and their parameters available for configuration
- Implementation - An under-the-hood peek at what the module is doing
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
- Release Notes - Notes on the most recent updates to the module
This is a module that will manage the Microsoft Windows Firewall and it's exceptions.
The windows_firewall module will primarily manage the state of the windows firewall application on your windows system. Optionally it will also allow you to configure any exceptions that you need to have in place.
- windows firewall service and corrisponding Windows Registry keys
- windows registry keys and values for any defined exception rules
The windows_firewall resource allows you to manage the firewall service itself.
class { 'windows_firewall': ensure => 'stopped' }
Once the windows firewall is managed you may then want to start managing the rules and exceptions within it.
windows_firewall::exception { 'WINRM':
ensure => present,
direction => 'in',
action => 'allow',
enabled => true,
protocol => 'TCP',
local_port => 5985,
remote_port => 'any',
display_name => 'Windows Remote Management HTTP-In',
description => 'Inbound rule for Windows Remote Management via WS-Management. [TCP 5985]',
}
Parameters within windows_firewall
:
Determines whether or not the service must be running and enabled. If not included, the module will assume that the windows firewall service should be running and enabled. Valid values are 'running' and 'stopped'.
Parameters within windows_firewall::exception
:
Determines whether or not the firewall exception is 'present' or 'absent'
Sets the direction of the exception rule, either: 'in' or 'out'.
Sets the action type of the exception, either: 'allow' or 'block'.
Determines whether the exception is enabled, either: 'true' or 'false'. Defaults to 'true'.
Sets the protocol to be included in the exception rule, either: 'TCP' or 'UDP'.
Defines the local port to be included in the exception for port-based exception rules, either: an integer between 1 and 65535 or the string 'any'.
Defines the remote port to be included in the exception for port-based exception rules, either: an integer between 1 and 65535 or the string 'any'.
Specifies remote hosts that can use this rule.
Defines the full path to the program to be included in the exception for program-based exception rules
Sets the Display Name of the exception rule. Defaults to the title of the resource.
A description of the exception to apply.
Specifies that the traffic for this exception traverses an edge device
windows_firewall
: The main class of the module for managing the state of the windows firewall.
- [
windows_firewall::exception
] Manages the configuration of firewall exceptions
This module is tested on the following platforms:
- Windows 2008 R2
It is tested with the OSS version of Puppet only.
Please read CONTRIBUTING.md for full details on contributing to this project.