Skip to content

Commit

Permalink
README: Added an example of an IPv6-based rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpds-zz authored and jonnytdevops committed Feb 27, 2015
1 parent 6f4d050 commit 88b4c00
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,20 @@ firewall { "999 drop all other requests":
action => "drop",
}
```

#### Example of an IPv6 rule

IPv6 rules can be specified using the _ip6tables_ provider:

```puppet
firewall { "006 Allow inbound SSH (v6)":
port => 22,
proto => tcp,
action => accept,
provider => 'ip6tables',
}
```

###Application-Specific Rules

Puppet doesn't care where you define rules, and this means that you can place
Expand Down

0 comments on commit 88b4c00

Please sign in to comment.