diff options
author | Martin Mares <mj@ucw.cz> | 2000-06-08 12:25:02 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-06-08 12:25:02 +0200 |
commit | ec423cc725d4b097e596dbadd84f3dea40deb0b8 (patch) | |
tree | 29619ec0274cbf83831acb0c79528d2a8f9a33fe /nest/config.Y | |
parent | 5a203dac615369806dc6eee0418ea39c597bea41 (diff) | |
download | bird-ec423cc725d4b097e596dbadd84f3dea40deb0b8.tar bird-ec423cc725d4b097e596dbadd84f3dea40deb0b8.zip |
Updated CLI helps.
Diffstat (limited to 'nest/config.Y')
-rw-r--r-- | nest/config.Y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nest/config.Y b/nest/config.Y index 9454e62..67fb248 100644 --- a/nest/config.Y +++ b/nest/config.Y @@ -244,7 +244,7 @@ CF_CLI(SHOW INTERFACES,,, [[Show network interfaces]]) CF_CLI(SHOW INTERFACES SUMMARY,,, [[Show summary of network interfaces]]) { if_show_summary(); } ; -CF_CLI(SHOW ROUTE, r_args, [<prefix>] [table <t>] [filter <f>] [all] [primary] [(import|protocol) <p>] [stats], [[Show routing table]]) +CF_CLI(SHOW ROUTE, r_args, [[for] <prefix>|<ip>] [table <t>] [filter <f>|where <cond>] [all] [primary] [(import|protocol) <p>] [stats|count], [[Show routing table]]) { rt_show($3); } ; r_args: @@ -353,11 +353,11 @@ echo_size: } ; -CF_CLI(DISABLE, proto_patt, <protocol> | <pattern> | all, [[Disable protocol]]) +CF_CLI(DISABLE, proto_patt, <protocol> | "<pattern>" | all, [[Disable protocol]]) { proto_xxable($2, 0); } ; -CF_CLI(ENABLE, proto_patt, <protocol> | <pattern> | all, [[Enable protocol]]) +CF_CLI(ENABLE, proto_patt, <protocol> | "<pattern>" | all, [[Enable protocol]]) { proto_xxable($2, 1); } ; -CF_CLI(RESTART, proto_patt, <protocol> | <pattern> | all, [[Restart protocol]]) +CF_CLI(RESTART, proto_patt, <protocol> | "<pattern>" | all, [[Restart protocol]]) { proto_xxable($2, 2); } ; CF_CLI_HELP(DEBUG, ..., [[Control protocol debugging]]) |