diff options
| author | Shbinging <bingshui@smail.nju.edu.cn> | 2024-10-11 09:48:33 +0000 | 
|---|---|---|
| committer | Shbinging <bingshui@smail.nju.edu.cn> | 2024-10-16 04:39:20 +0000 | 
| commit | 774788d4c87f54b978650c34400d5727dcf40a63 (patch) | |
| tree | d41687217a426d1c330420383193feef7970b6a6 /ospfd | |
| parent | 972308b174f009fb635f2b71a1f01edbde6cef13 (diff) | |
ospfd: fix no area shortcut MODE command, MODE can be default
Signed-off-by: Shbinging <bingshui@smail.nju.edu.cn>
Diffstat (limited to 'ospfd')
| -rw-r--r-- | ospfd/ospf_vty.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 144c6212fc..35cdc0217e 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -1353,12 +1353,13 @@ DEFUN (ospf_area_shortcut,  DEFUN (no_ospf_area_shortcut,         no_ospf_area_shortcut_cmd, -       "no area <A.B.C.D|(0-4294967295)> shortcut <enable|disable>", +       "no area <A.B.C.D|(0-4294967295)> shortcut <default|enable|disable>",         NO_STR         "OSPF area parameters\n"         "OSPF area ID in IP address format\n"         "OSPF area ID as a decimal value\n"         "Deconfigure the area's shortcutting mode\n" +       "Deconfigure default shortcutting through the area\n"         "Deconfigure enabled shortcutting through the area\n"         "Deconfigure disabled shortcutting through the area\n")  {  | 
