diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-03-08 17:37:11 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-03-08 17:37:11 +0100 |
commit | da3cf9eae3085d43a2299bae63e6ceb3828856a5 (patch) | |
tree | ebd713a059737eeb18a56e0df1dbca7b20afed42 /proto/rip | |
parent | 2be9218a3b1dfcc8e42c8d118e95f2074d9f7a7c (diff) |
Update OSPF and RIP protocol names and related documentation
Diffstat (limited to 'proto/rip')
-rw-r--r-- | proto/rip/config.Y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proto/rip/config.Y b/proto/rip/config.Y index b3ccdf39..25c2ac7a 100644 --- a/proto/rip/config.Y +++ b/proto/rip/config.Y @@ -32,7 +32,7 @@ rip_check_auth(void) CF_DECLS -CF_KEYWORDS(RIP, RIPNG, ECMP, LIMIT, WEIGHT, INFINITY, METRIC, UPDATE, TIMEOUT, +CF_KEYWORDS(RIP, NG, ECMP, LIMIT, WEIGHT, INFINITY, METRIC, UPDATE, TIMEOUT, GARBAGE, PORT, ADDRESS, MODE, BROADCAST, MULTICAST, PASSIVE, VERSION, SPLIT, HORIZON, POISON, REVERSE, CHECK, ZERO, TIME, BFD, AUTHENTICATION, NONE, PLAINTEXT, CRYPTOGRAPHIC, MD5, TTL, SECURITY, @@ -45,8 +45,8 @@ CF_GRAMMAR CF_ADDTO(proto, rip_proto) rip_variant: - RIP { $$ = 1; } - | RIPNG { $$ = 0; } + RIP { $$ = 1; } + | RIP NG { $$ = 0; } ; rip_proto_start: proto_start rip_variant |