Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/link0/puppet-firewall
Firewall module for Puppet
https://github.com/link0/puppet-firewall
Last synced: about 2 months ago
JSON representation
Firewall module for Puppet
- Host: GitHub
- URL: https://github.com/link0/puppet-firewall
- Owner: link0
- License: mit
- Created: 2015-12-13T15:15:34.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-22T20:38:22.000Z (about 9 years ago)
- Last Synced: 2024-10-30T01:55:51.634Z (3 months ago)
- Language: Puppet
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Firewall Puppet module
[![Build Status](https://travis-ci.org/link0/puppet-firewall.svg?branch=master)](https://travis-ci.org/link0/puppet-firewall)Puppet module to manage firewalls on multiple operating systems
## Features
## Supported OS
* Ubuntu (iptables)
* Debian (iptables)
* FreeBSD (pf)## Dependencies
## Example
```puppet
firewall::rule { '000 comment on input firewall rule':
source => '192.0.2.0/24',
direction => 'INPUT',
action => 'accept',
}firewall::rule { '500 comment on output firewall rule':
destination => ['198.51.100.0/24', '203.0.113.0/24'],
direction => 'OUTPUT',
action => 'accept',
}```
# Contributions
Pull requests are very welcome. Join [these fine folks](https://github.com/link0/puppet-firewall/graphs/contributors) who already helped to get this far with this module.
**To help guaranteeing the stability of the module, please make sure to add tests to your pull request.**