blob: f8e98ec981623526c79bee2866cb7aee57c0ee74 [file] [log] [blame]
Simon Kelley61744352013-01-31 14:34:40 +00001/* dnsmasq is Copyright (c) 2000-2013 Simon Kelley
Simon Kelleyc72daea2012-01-05 21:33:27 +00002
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; version 2 dated June, 1991, or
6 (at your option) version 3 dated 29 June, 2007.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>.
15*/
16
17#define DHCPV6_SERVER_PORT 547
18#define DHCPV6_CLIENT_PORT 546
19
20#define ALL_SERVERS "FF05::1:3"
21#define ALL_RELAY_AGENTS_AND_SERVERS "FF02::1:2"
22
23#define DHCP6SOLICIT 1
24#define DHCP6ADVERTISE 2
25#define DHCP6REQUEST 3
26#define DHCP6CONFIRM 4
27#define DHCP6RENEW 5
28#define DHCP6REBIND 6
29#define DHCP6REPLY 7
30#define DHCP6RELEASE 8
31#define DHCP6DECLINE 9
32#define DHCP6RECONFIGURE 10
33#define DHCP6IREQ 11
34#define DHCP6RELAYFORW 12
35#define DHCP6RELAYREPL 13
36
37#define OPTION6_CLIENT_ID 1
38#define OPTION6_SERVER_ID 2
39#define OPTION6_IA_NA 3
40#define OPTION6_IA_TA 4
41#define OPTION6_IAADDR 5
42#define OPTION6_ORO 6
43#define OPTION6_PREFERENCE 7
44#define OPTION6_ELAPSED_TIME 8
45#define OPTION6_RELAY_MSG 9
46#define OPTION6_AUTH 11
47#define OPTION6_UNICAST 12
48#define OPTION6_STATUS_CODE 13
49#define OPTION6_RAPID_COMMIT 14
50#define OPTION6_USER_CLASS 15
51#define OPTION6_VENDOR_CLASS 16
52#define OPTION6_VENDOR_OPTS 17
53#define OPTION6_INTERFACE_ID 18
54#define OPTION6_RECONFIGURE_MSG 19
55#define OPTION6_RECONF_ACCEPT 20
Simon Kelley4cb1b322012-02-06 14:30:41 +000056#define OPTION6_DNS_SERVER 23
Simon Kelley18f0fb02012-03-31 21:18:55 +010057#define OPTION6_DOMAIN_SEARCH 24
Simon Kelley871d4562013-07-27 21:32:32 +010058#define OPTION6_REFRESH_TIME 32
Simon Kelley4cb1b322012-02-06 14:30:41 +000059#define OPTION6_REMOTE_ID 37
60#define OPTION6_SUBSCRIBER_ID 38
61#define OPTION6_FQDN 39
Simon Kelley89500e32013-09-20 16:29:20 +010062#define OPTION6_CLIENT_MAC 79
Simon Kelley52b92f42012-01-22 16:05:15 +000063
Simon Kelleyc6309242013-03-07 20:59:28 +000064/* replace this with the real number when allocated.
65 defining this also enables the relevant code. */
66/* #define OPTION6_PREFIX_CLASS 99 */
67
68
Simon Kelley52b92f42012-01-22 16:05:15 +000069#define DHCP6SUCCESS 0
70#define DHCP6UNSPEC 1
71#define DHCP6NOADDRS 2
72#define DHCP6NOBINDING 3
73#define DHCP6NOTONLINK 4
74#define DHCP6USEMULTI 5
75