blob: 0a65df2325021c0e3603a0ca54e40a9513bb16ab [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Router advertisement
vincent7cee1bb2005-03-25 13:08:53 +00002 * Copyright (C) 2005 6WIND <jean-mickael.guerin@6wind.com>
paul718e3742002-12-13 20:15:29 +00003 * Copyright (C) 1999 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_RTADV_H
24#define _ZEBRA_RTADV_H
25
Paul Jakma66c454f2006-08-06 16:02:43 +000026#include "zebra/interface.h"
27
paul718e3742002-12-13 20:15:29 +000028/* Router advertisement prefix. */
29struct rtadv_prefix
30{
31 /* Prefix to be advertised. */
32 struct prefix prefix;
33
34 /* The value to be placed in the Valid Lifetime in the Prefix */
35 u_int32_t AdvValidLifetime;
36#define RTADV_VALID_LIFETIME 2592000
37
38 /* The value to be placed in the on-link flag */
39 int AdvOnLinkFlag;
40
41 /* The value to be placed in the Preferred Lifetime in the Prefix
42 Information option, in seconds.*/
43 u_int32_t AdvPreferredLifetime;
44#define RTADV_PREFERRED_LIFETIME 604800
45
46 /* The value to be placed in the Autonomous Flag. */
47 int AdvAutonomousFlag;
vincent7cee1bb2005-03-25 13:08:53 +000048
49 /* The value to be placed in the Router Address Flag (RFC3775 7.2). */
50 int AdvRouterAddressFlag;
51#ifndef ND_OPT_PI_FLAG_RADDR
52#define ND_OPT_PI_FLAG_RADDR 0x20
53#endif
54
paul718e3742002-12-13 20:15:29 +000055};
56
paula1ac18c2005-06-28 17:17:12 +000057extern void rtadv_config_write (struct vty *, struct interface *);
58extern void rtadv_init (void);
paul718e3742002-12-13 20:15:29 +000059
vincent7cee1bb2005-03-25 13:08:53 +000060/* draft-ietf-mip6-mipext-advapi-03 */
61
62#ifndef ND_OPT_ADV_INTERVAL
63#define ND_OPT_ADV_INTERVAL 7 /* Adv Interval Option */
64#endif
65#ifndef ND_OPT_HA_INFORMATION
66#define ND_OPT_HA_INFORMATION 8 /* HA Information Option */
67#endif
68
69#ifndef HAVE_ND_OPT_ADV_INTERVAL
70struct nd_opt_adv_interval { /* Advertisement interval option */
71 uint8_t nd_opt_ai_type;
72 uint8_t nd_opt_ai_len;
73 uint16_t nd_opt_ai_reserved;
74 uint32_t nd_opt_ai_interval;
75} __attribute__((__packed__));
76#else
77#ifndef HAVE_ND_OPT_ADV_INTERVAL_AI_FIELDS
78/* fields may have to be renamed */
79#define nd_opt_ai_type nd_opt_adv_interval_type
80#define nd_opt_ai_len nd_opt_adv_interval_len
81#define nd_opt_ai_reserved nd_opt_adv_interval_reserved
82#define nd_opt_ai_interval nd_opt_adv_interval_ival
83#endif
84#endif
85
86#ifndef HAVE_ND_OPT_HOMEAGENT_INFO
87struct nd_opt_homeagent_info { /* Home Agent info */
88 u_int8_t nd_opt_hai_type;
89 u_int8_t nd_opt_hai_len;
90 u_int16_t nd_opt_hai_reserved;
91 u_int16_t nd_opt_hai_preference;
92 u_int16_t nd_opt_hai_lifetime;
93} __attribute__((__packed__));
94#endif
95
paul718e3742002-12-13 20:15:29 +000096#endif /* _ZEBRA_RTADV_H */