1999-03-10 06:27:43 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- OSPF Configuration
|
|
|
|
*
|
2000-06-02 23:05:41 +08:00
|
|
|
* (c) 1999-2000 Ondrej Filip <feela@network.cz>
|
1999-03-10 06:27:43 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
|
|
|
#include "proto/ospf/ospf.h"
|
|
|
|
|
2000-06-02 23:05:41 +08:00
|
|
|
CF_DEFINES
|
|
|
|
|
|
|
|
#define OSPF_CFG ((struct ospf_config *) this_proto)
|
2000-06-03 03:55:55 +08:00
|
|
|
static struct ospf_area_config *this_area;
|
2000-06-03 09:29:00 +08:00
|
|
|
static struct iface_patt *this_ipatt;
|
|
|
|
#define OSPF_PATT ((struct ospf_iface_patt *) this_ipatt)
|
2000-06-02 23:05:41 +08:00
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
CF_DECLS
|
|
|
|
|
2000-05-31 05:25:32 +08:00
|
|
|
CF_KEYWORDS(OSPF, AREA, OSPF_METRIC1, OSPF_METRIC2, OSPF_TAG)
|
2000-06-03 09:29:00 +08:00
|
|
|
CF_KEYWORDS(NEIGHBORS, RFC1583COMPAT, STUB, TICK, COST, RETRANSMIT)
|
2000-06-03 17:50:31 +08:00
|
|
|
CF_KEYWORDS(HELLO, TRANSIT, PRIORITY, DEAD, NONBROADCAST, POINTOPOINT, TYPE)
|
1999-03-10 06:27:43 +08:00
|
|
|
|
2000-06-02 01:52:21 +08:00
|
|
|
%type <t> opttext
|
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
CF_GRAMMAR
|
|
|
|
|
|
|
|
CF_ADDTO(proto, ospf_proto '}')
|
|
|
|
|
|
|
|
ospf_proto_start: proto_start OSPF {
|
|
|
|
this_proto = proto_config_new(&proto_ospf, sizeof(struct ospf_config));
|
2000-05-08 18:40:00 +08:00
|
|
|
this_proto->preference = DEF_PREF_OSPF;
|
2000-06-03 03:55:55 +08:00
|
|
|
init_list(&OSPF_CFG->area_list);
|
1999-03-10 06:27:43 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
ospf_proto:
|
|
|
|
ospf_proto_start proto_name '{'
|
2000-06-02 23:05:41 +08:00
|
|
|
| ospf_proto proto_item ';'
|
|
|
|
| ospf_proto RFC1583COMPAT bool ';' { OSPF_CFG->rfc1583 = $3; }
|
2000-06-03 16:42:04 +08:00
|
|
|
| ospf_proto ospf_area
|
2000-06-03 03:55:55 +08:00
|
|
|
;
|
1999-03-10 06:27:43 +08:00
|
|
|
|
2000-06-03 03:55:55 +08:00
|
|
|
ospf_area_start: AREA idval '{' {
|
|
|
|
this_area = cfg_allocz(sizeof(struct ospf_area_config));
|
|
|
|
add_tail(&OSPF_CFG->area_list, NODE this_area);
|
|
|
|
this_area->areaid = $2;
|
|
|
|
this_area->tick = DISPTICK;
|
|
|
|
this_area->stub = 0;
|
2000-06-03 09:29:00 +08:00
|
|
|
init_list(&this_area->patt_list);
|
1999-03-10 06:27:43 +08:00
|
|
|
}
|
2000-06-02 01:52:21 +08:00
|
|
|
;
|
|
|
|
|
2000-06-05 00:17:39 +08:00
|
|
|
ospf_area: /* EMPTY */
|
|
|
|
| ospf_area_start ospf_area_opts '}'
|
2000-06-03 16:42:04 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
ospf_area_opts:
|
|
|
|
| ospf_area_opts ospf_area_item
|
|
|
|
|
2000-06-03 03:55:55 +08:00
|
|
|
ospf_area_item:
|
|
|
|
| STUB bool ';' { this_area->stub = $2 ; }
|
|
|
|
| TICK NUM ';' { this_area->tick = $2 ; }
|
2000-06-03 09:29:00 +08:00
|
|
|
| ospf_iface_list
|
|
|
|
;
|
|
|
|
|
|
|
|
ospf_iface_item:
|
|
|
|
| COST NUM { OSPF_PATT->cost = $2 ; }
|
|
|
|
| HELLO NUM { OSPF_PATT->helloint = $2 ; }
|
|
|
|
| RETRANSMIT NUM { OSPF_PATT->rxmtint = $2 ; }
|
2000-06-03 17:50:31 +08:00
|
|
|
| TRANSIT DELAY NUM { OSPF_PATT->inftransdelay = $3 ; }
|
|
|
|
| PRIORITY NUM { OSPF_PATT->priority = $2 ; }
|
|
|
|
| WAIT NUM { OSPF_PATT->waitint = $2 ; }
|
|
|
|
| DEAD COUNT NUM { OSPF_PATT->deadc = $3 ; }
|
|
|
|
| TYPE BROADCAST { OSPF_PATT->type = OSPF_IT_BCAST ; }
|
|
|
|
| TYPE NONBROADCAST { OSPF_PATT->type = OSPF_IT_NBMA ; }
|
|
|
|
| TYPE POINTOPOINT { OSPF_PATT->type = OSPF_IT_PTP ; }
|
|
|
|
|
|
2000-06-03 03:55:55 +08:00
|
|
|
;
|
|
|
|
|
2000-06-03 17:50:31 +08:00
|
|
|
ospf_iface_start:
|
|
|
|
{
|
|
|
|
this_ipatt = cfg_allocz(sizeof(struct ospf_iface_patt));
|
|
|
|
add_tail(&this_area->patt_list, NODE this_ipatt);
|
|
|
|
OSPF_PATT->cost = COST_D;
|
|
|
|
OSPF_PATT->helloint = HELLOINT_D;
|
|
|
|
OSPF_PATT->rxmtint = RXMTINT_D;
|
|
|
|
OSPF_PATT->inftransdelay = INFTRANSDELAY_D;
|
|
|
|
OSPF_PATT->priority = PRIORITY_D;
|
|
|
|
OSPF_PATT->waitint = WAIT_DMH*HELLOINT_D;
|
|
|
|
OSPF_PATT->deadc = DEADC_D;
|
|
|
|
OSPF_PATT->type = OSPF_IT_UNDEF;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2000-06-03 09:29:00 +08:00
|
|
|
ospf_iface_opts:
|
|
|
|
'{'
|
|
|
|
| ospf_iface_opts ospf_iface_item ';'
|
|
|
|
;
|
|
|
|
|
|
|
|
ospf_iface_opt_list: /* EMPTY */ | ospf_iface_opts '}'
|
|
|
|
;
|
|
|
|
|
|
|
|
ospf_iface:
|
|
|
|
ospf_iface_start iface_patt ospf_iface_opt_list
|
|
|
|
;
|
|
|
|
|
|
|
|
ospf_iface_list:
|
|
|
|
INTERFACE ospf_iface
|
|
|
|
| ospf_iface_list ',' ospf_iface
|
|
|
|
;
|
|
|
|
|
2000-06-02 01:52:21 +08:00
|
|
|
opttext:
|
|
|
|
TEXT
|
|
|
|
| /* empty */ { $$ = NULL; }
|
|
|
|
;
|
1999-03-10 06:27:43 +08:00
|
|
|
|
2000-05-31 05:25:32 +08:00
|
|
|
CF_ADDTO(dynamic_attr, OSPF_METRIC1 { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_TEMP, T_INT, EA_OSPF_METRIC1); })
|
|
|
|
CF_ADDTO(dynamic_attr, OSPF_METRIC2 { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_TEMP, T_INT, EA_OSPF_METRIC2); })
|
|
|
|
CF_ADDTO(dynamic_attr, OSPF_TAG { $$ = f_new_dynamic_attr(EAF_TYPE_INT | EAF_TEMP, T_INT, EA_OSPF_TAG); })
|
|
|
|
|
2000-06-02 00:26:59 +08:00
|
|
|
CF_CLI(SHOW OSPF, optsym, [<name>], [[Show information about ospf protocol]])
|
|
|
|
{ ospf_sh(proto_get_named($3, &proto_ospf)); } ;
|
|
|
|
|
2000-06-02 01:52:21 +08:00
|
|
|
CF_CLI(SHOW OSPF NEIGHBORS, optsym opttext, [<name>] [\"<interface>\"], [[Show information about ospf neighbors]])
|
|
|
|
{ ospf_sh_neigh(proto_get_named($4, &proto_ospf), $5); } ;
|
|
|
|
|
|
|
|
CF_CLI(SHOW OSPF INTERFACE, optsym opttext, [<name>] [\"<interface>\"], [[Show infomation about interface]])
|
|
|
|
{ ospf_sh_iface(proto_get_named($4, &proto_ospf), $5); };
|
2000-06-01 23:53:06 +08:00
|
|
|
|
1999-03-10 06:27:43 +08:00
|
|
|
CF_CODE
|
|
|
|
|
|
|
|
CF_END
|