voxpupuli/puppet-windows_firewall

Name: puppet-windows_firewall

Owner: Vox Pupuli

Description: puppet module for configuring the windows firewall

Created: 2013-04-12 11:15:18.0

Updated: 2017-08-09 18:28:36.0

Pushed: 2018-01-04 08:37:55.0

Homepage: https://forge.puppet.com/puppet/windows_firewall

Size: 157

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Windows Firewall module for Puppet

Build Status Code Coverage Puppet Forge Puppet Forge - downloads Puppet Forge - endorsement Puppet Forge - scores

Table of Contents
  1. Overview - What is the windows_firewall module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with windows_firewall
  4. Usage - The classes, defined types, and their parameters available for configuration
  5. Implementation - An under-the-hood peek at what the module is doing
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module
  8. Release Notes - Notes on the most recent updates to the module
Overview

This is a module that will manage the Microsoft Windows Firewall and it's exceptions.

Module Description

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.

Setup
What windows_firewall affects
Beginning with windows_firewall

The windows_firewall resource allows you to manage the firewall service itself.

s { 'windows_firewall': ensure => 'stopped' }

Once the windows firewall is managed you may then want to start managing the rules and exceptions within it.

ows_firewall::exception { 'WINRM':
sure       => present,
rection    => 'in',
tion       => 'Allow',
abled      => 'yes',
otocol     => 'TCP',
cal_port   => '5985',
mote_port  => 'any',
splay_name => 'Windows Remote Management HTTP-In',
scription  => 'Inbound rule for Windows Remote Management via WS-Management. [TCP 5985]',

Usage
Classes and Defined Types
Class: windows_firewall

Parameters within windows_firewall:

ensure

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'.

Defined Type: windows_firewall::exception

Parameters within windows_firewall::exception:

ensure

Determines whether or not the firewall exception is 'present' or 'absent'

direction

Sets the direction of the exception rule, either: 'in' or 'out'.

action

Sets the action type of the excepton, either: 'allow' or 'block'.

enabled

Determines whether the exception is enabled, either: 'yes' or 'no'. Defaults to 'yes'.

protocol

Sets the protocol to be included in the exception rule, either: 'TCP' or 'UDP'.

local_port

Defines the local port to be included in the exception for port-based exception rules.

remote_port

Defines the remote port to be included in the exception for port-based exception rules.

remote_ip

Specifies remote hosts that can use this rule.

program

Defines the full path to the program to be included in the exception for program-based exception rules

display_name

Sets the Display Name of the exception rule. Defaults to the title of the resource.

description

A description of the exception to apply.

allow_edge_traversal

Specifies that the traffic for this exception traverses an edge device

Reference
Classes
Public Classes
Defined Types
Public Types
Limitations

This module is tested on the following platforms:

It is tested with the OSS version of Puppet only.

Development
Contributing

Please read CONTRIBUTING.md for full details on contributing to this project.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.