From 88b4c00cf34cde91470d13144274ea7d706a24f7 Mon Sep 17 00:00:00 2001
From: Jonathan Davies <jpdavs@gmail.com>
Date: Sun, 8 Feb 2015 21:19:43 +0000
Subject: [PATCH] README: Added an example of an IPv6-based rule.

---
 README.markdown | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/README.markdown b/README.markdown
index d14143e..4dd3037 100644
--- a/README.markdown
+++ b/README.markdown
@@ -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
-- 
2.45.2