From: paul Date: Sat, 1 Mar 2003 15:44:10 +0000 (+0000) Subject: Add the interface node 'description' command. X-Git-Tag: frr-2.0-rc1~4141 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=338a99166f59e474c522d2eb7417b0de57f598d2;p=matthieu%2Ffrr.git Add the interface node 'description' command. --- diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 5e21504cab..01fb520e97 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1134,6 +1134,12 @@ DEFUNSH (VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_OSPFD, return CMD_SUCCESS; } +DEFSH (VTYSH_ZEBRA|VTYSH_RIPD|VTYSH_OSPFD, + interface_desc_cmd, + "description .LINE", + "Interface specific description\n" + "Characters describing this interface\n") + DEFSH (VTYSH_RIPD|VTYSH_BGPD, set_ip_nexthop_cmd, "set ip next-hop A.B.C.D", @@ -1782,6 +1788,7 @@ vtysh_init_vty () install_element (KEYCHAIN_KEY_NODE, &vtysh_end_all_cmd); install_element (RMAP_NODE, &vtysh_end_all_cmd); + install_element (INTERFACE_NODE, &interface_desc_cmd); install_element (INTERFACE_NODE, &vtysh_end_all_cmd); install_element (INTERFACE_NODE, &vtysh_exit_interface_cmd); install_element (INTERFACE_NODE, &vtysh_quit_interface_cmd);