diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-07-22 20:00:24 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-07-22 20:00:24 +0200 |
commit | 4160a9dd9416ee5afd215750bdd6c6e7a4e7ed1f (patch) | |
tree | 969093f281b848a3e96a660a7be37bfe084102f6 /proto/ospf/config.Y | |
parent | 41b612c31be05409e69e7365db82b3d1aefc4ca3 (diff) |
OSPF NSSA translator election.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r-- | proto/ospf/config.Y | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index 35060aa7..1099b729 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -101,7 +101,7 @@ CF_KEYWORDS(NONBROADCAST, NBMA, POINTOPOINT, PTP, POINTOMULTIPOINT, PTMP) CF_KEYWORDS(NONE, SIMPLE, AUTHENTICATION, STRICT, CRYPTOGRAPHIC) CF_KEYWORDS(ELIGIBLE, POLL, NETWORKS, HIDDEN, VIRTUAL, CHECK, LINK) CF_KEYWORDS(RX, BUFFER, LARGE, NORMAL, STUBNET, HIDDEN, SUMMARY) -CF_KEYWORDS(WAIT, DELAY, LSADB, ECMP, LIMIT, WEIGHT, NSSA) +CF_KEYWORDS(WAIT, DELAY, LSADB, ECMP, LIMIT, WEIGHT, NSSA, TRANSLATOR, STABILITY) %type <t> opttext @@ -159,6 +159,8 @@ ospf_area_item: | STUB bool { this_area->type = $2 ? 0 : OPT_E; /* We should remove the option */ } | NSSA { this_area->type = OPT_N; } | SUMMARY bool { this_area->summary = $2; } + | TRANSLATOR bool { this_area->translator = $2; } + | TRANSLATOR STABILITY bool { this_area->transint = $3; } | NETWORKS '{' pref_list '}' | STUBNET ospf_stubnet | INTERFACE ospf_iface |