Skip to content

Commit

Permalink
Merge pull request #494 from jonnytpuppet/ipv6-example-readme
Browse files Browse the repository at this point in the history
README: Added an example of an IPv6-based rule.
  • Loading branch information
tphoney committed Feb 27, 2015
2 parents 89bbaa5 + 88b4c00 commit c7feb93
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 c7feb93

Please sign in to comment.