]> git.proxmox.com Git - mirror_frr.git/blobdiff - vtysh/vtysh_config.c
Merge pull request #3281 from opensourcerouting/update-libyang-instructions
[mirror_frr.git] / vtysh / vtysh_config.c
index 541eafcf7fae11d88c1ad960358e87ab00b484a5..fe12f82ef28065a5c3406c790306175fb3b1aa0c 100644 (file)
@@ -366,6 +366,10 @@ void vtysh_config_parse_line(void *arg, const char *line)
                        config = config_get(FORWARDING_NODE, line);
                else if (strncmp(line, "debug vrf", strlen("debug vrf")) == 0)
                        config = config_get(VRF_DEBUG_NODE, line);
+               else if (strncmp(line, "debug northbound",
+                                strlen("debug northbound"))
+                        == 0)
+                       config = config_get(NORTHBOUND_DEBUG_NODE, line);
                else if (strncmp(line, "debug", strlen("debug")) == 0)
                        config = config_get(DEBUG_NODE, line);
                else if (strncmp(line, "password", strlen("password")) == 0
@@ -411,7 +415,7 @@ void vtysh_config_parse_line(void *arg, const char *line)
         || (I) == ACCESS_IPV6_NODE || (I) == ACCESS_MAC_NODE                  \
         || (I) == PREFIX_IPV6_NODE || (I) == FORWARDING_NODE                  \
         || (I) == DEBUG_NODE || (I) == AAA_NODE || (I) == VRF_DEBUG_NODE      \
-        || (I) == MPLS_NODE)
+        || (I) == NORTHBOUND_DEBUG_NODE || (I) == MPLS_NODE)
 
 /* Display configuration to file pointer. */
 void vtysh_config_dump(void)