summaryrefslogtreecommitdiff
path: root/keama/tests/shareone6.in6
blob: 8ac350564b4655a8e779c09c7ff05b7092262608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# DHCPv6 one-subnet shared-network declaration config

# authoritative is mandatory
authoritative;

# shared-network declaration
shared-network "foobar" {
    # interface
    interface "foo";
    # option
    option dhcp6.domain-search "example.com", "example.org";
    # parameter
    default-lease-time 1800;
    # subnet declaration
    subnet6 2001::/64 {
        # redefined parameter
        default-lease-time 3600;
        # pool
        range6 2001::1000 2001::2000;
    }
    # tried another pool here but DHCPv6 pools are allowed only in subnets
}