blob: 1e1aec9ac4f6e846f5a50f1d91d5fae24b82e60e [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 Jakma30a22312008-08-15 14:05:22 +010026#include "vty.h"
Paul Jakma66c454f2006-08-06 16:02:43 +000027#include "zebra/interface.h"
28
Joachim Nilsson36735ed2012-05-09 13:38:36 +020029/* NB: RTADV is defined in zebra/interface.h above */
30#ifdef RTADV
31
paul718e3742002-12-13 20:15:29 +000032/* Router advertisement prefix. */
33struct rtadv_prefix
34{
35 /* Prefix to be advertised. */
Denis Ovsienkoaca43b62012-01-08 18:27:12 +040036 struct prefix_ipv6 prefix;
paul718e3742002-12-13 20:15:29 +000037
38 /* The value to be placed in the Valid Lifetime in the Prefix */
39 u_int32_t AdvValidLifetime;
40#define RTADV_VALID_LIFETIME 2592000
41
42 /* The value to be placed in the on-link flag */
43 int AdvOnLinkFlag;
44
45 /* The value to be placed in the Preferred Lifetime in the Prefix
46 Information option, in seconds.*/
47 u_int32_t AdvPreferredLifetime;
48#define RTADV_PREFERRED_LIFETIME 604800
49
50 /* The value to be placed in the Autonomous Flag. */
51 int AdvAutonomousFlag;
vincent7cee1bb2005-03-25 13:08:53 +000052
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +040053 /* The value to be placed in the Router Address Flag [RFC6275 7.2]. */
vincent7cee1bb2005-03-25 13:08:53 +000054 int AdvRouterAddressFlag;
55#ifndef ND_OPT_PI_FLAG_RADDR
56#define ND_OPT_PI_FLAG_RADDR 0x20
57#endif
58
paul718e3742002-12-13 20:15:29 +000059};
60
paula1ac18c2005-06-28 17:17:12 +000061extern void rtadv_config_write (struct vty *, struct interface *);
paul718e3742002-12-13 20:15:29 +000062
Denis Ovsienko6eb0c5a2012-01-24 11:02:03 +040063/* RFC4584 Extension to Sockets API for Mobile IPv6 */
vincent7cee1bb2005-03-25 13:08:53 +000064
65#ifndef ND_OPT_ADV_INTERVAL
66#define ND_OPT_ADV_INTERVAL 7 /* Adv Interval Option */
67#endif
68#ifndef ND_OPT_HA_INFORMATION
69#define ND_OPT_HA_INFORMATION 8 /* HA Information Option */
70#endif
71
Paul Jakma6f0e3f62007-05-10 02:38:51 +000072#ifndef HAVE_STRUCT_ND_OPT_ADV_INTERVAL
vincent7cee1bb2005-03-25 13:08:53 +000073struct nd_opt_adv_interval { /* Advertisement interval option */
74 uint8_t nd_opt_ai_type;
75 uint8_t nd_opt_ai_len;
76 uint16_t nd_opt_ai_reserved;
77 uint32_t nd_opt_ai_interval;
78} __attribute__((__packed__));
79#else
Paul Jakma6f0e3f62007-05-10 02:38:51 +000080#ifndef HAVE_STRUCT_ND_OPT_ADV_INTERVAL_ND_OPT_AI_TYPE
vincent7cee1bb2005-03-25 13:08:53 +000081/* fields may have to be renamed */
82#define nd_opt_ai_type nd_opt_adv_interval_type
83#define nd_opt_ai_len nd_opt_adv_interval_len
84#define nd_opt_ai_reserved nd_opt_adv_interval_reserved
85#define nd_opt_ai_interval nd_opt_adv_interval_ival
86#endif
87#endif
88
Paul Jakma6f0e3f62007-05-10 02:38:51 +000089#ifndef HAVE_STRUCT_ND_OPT_HOMEAGENT_INFO
vincent7cee1bb2005-03-25 13:08:53 +000090struct nd_opt_homeagent_info { /* Home Agent info */
91 u_int8_t nd_opt_hai_type;
92 u_int8_t nd_opt_hai_len;
93 u_int16_t nd_opt_hai_reserved;
94 u_int16_t nd_opt_hai_preference;
95 u_int16_t nd_opt_hai_lifetime;
96} __attribute__((__packed__));
97#endif
98
Chris Caputob60668d2009-05-03 04:40:57 +000099extern const char *rtadv_pref_strs[];
100
Joachim Nilsson36735ed2012-05-09 13:38:36 +0200101#endif /* RTADV */
102
Timo Teräse38545b2015-04-29 09:42:59 +0300103extern void rtadv_init (void);
104
paul718e3742002-12-13 20:15:29 +0000105#endif /* _ZEBRA_RTADV_H */