aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSUZUKI, Shinsuke <suz@kame.net>2006-01-26 07:19:54 +0000
committerSUZUKI, Shinsuke <suz@kame.net>2006-01-26 07:19:54 +0000
commit76a37ad27a5882f901d3d1879392f398e76c44fd (patch)
tree2218869772c4ab955a6ff3677ce0aa8b4aa9fd74
parent49c5e1327cebfb00a90c903a36f5466d964175d1 (diff)
an example for address pool configuration
-rw-r--r--dhcp6s.conf.sample13
1 files changed, 13 insertions, 0 deletions
diff --git a/dhcp6s.conf.sample b/dhcp6s.conf.sample
index db506b4..5c06747 100644
--- a/dhcp6s.conf.sample
+++ b/dhcp6s.conf.sample
@@ -8,3 +8,16 @@ host kame {
duid 00:01:00:01:aa:bb;
prefix 2001:db8:1111::/48 infinity;
};
+
+# The followings are a sample configuration to provide an IPv6 address
+# from an address pool 2001:db8:1:2::1000-2000.
+# Note. You have to send an RA with A-bit off to fxp0; otherwise
+# a client cannot be sure about the prefix-length and the default router.
+
+interface fxp0 {
+ address-pool pool1;
+};
+
+pool pool1 {
+ range 2001:db8:1:2::1000 to 2001:db8:1:2::2000 ;
+};