# /etc/dhcp6s.conf -- DHCP configuration for IPv6 on CouchNet # Needs to be coordinated with /etc/dhcpd.conf # Repetitious stuff has been omitted. # from KAME: domain-name cft.ca.us; (not for IBM version) # from KAME: option domain-name math.ucla.edu; (not for IBM version) # option domain-name-servers jacinth.cft.ca.us. (rejected by IBM version) # lease-file-name /var/lib/dhcpv6/server6.leases; (is the default) # log-facility daemon; (is the default) prefer-life-time 86400; valid-life-time 86400; renew-time 43200; rebind-time 70000; # Ethernet network interface eth0 { link ALL { allow unicast; send unicast; allow rapid-commit; # Aleatory DHCP for guests' laptops and PDAs pool { # Prefix is bogus, I want 122 but this doesn't work, message is # "address range defined doesn't in the same prefix range" range 2001:470:1f04:844::e0 to 2001:470:1f04:844::fd/120; }; # Whereas dhcpd v4 has option routers 192.9.200.193; # in ipv6 you use radvd to advertise routes. }; # Fixed addresses (sometimes) assigned by DHCP. # Local convention: the DUID is the host's MAC address; IAID is the # last octet of the IPv4 address in decimal (by local convention these # are the same in IPv4 and IPv6). # Xena (Dell Inspiron 6400) host xena { # Wireless: Intel ipw3945 ABG duid 00:00:00:00:00:00:00:00:00:1b:77:22:f0:72; # Wired ethernet: Broadcom BCM4401 duid 00:19:b9:6f:92:7f; # Xircom CBE2-100 (Tulip chip) (for testing) duid 00:10:a4:d1:1d:8f; iaidinfo {iaid 195;}; address {2001:470:1f04:844::c3/128;}; }; # Jacinth (Koolu) # SMC 2209USB/ETH USB NIC (used for wild-side connection, exclude this) host jacinth { # Realtek RTL-8139x / 8130 / 810x onboard NIC duid 00:40:ca:a0:88:b2; iaidinfo {iaid 193;}; address {2001:470:1f04:844::c1/128;}; }; #etc. etc. };