diff --git a/vtysh/vtysh_config.c b/vtysh/vtysh_config.c index abbb111f9d..44ec08b61a 100644 --- a/vtysh/vtysh_config.c +++ b/vtysh/vtysh_config.c @@ -402,6 +402,8 @@ void vtysh_config_parse_line(void *arg, const char *line) config = config_get(MPLS_NODE, line); else if (strncmp(line, "bfd", strlen("bfd")) == 0) config = config_get(BFD_NODE, line); + else if (strncmp(line, "rpki", strlen("rpki")) == 0) + config = config_get(RPKI_NODE, line); else { if (strncmp(line, "log", strlen("log")) == 0 || strncmp(line, "hostname", strlen("hostname"))