diff options
author | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-07-30 17:44:13 +0200 |
---|---|---|
committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-08-03 19:52:45 +0200 |
commit | f25c244b7502f2fa61f143b514eef8f6b9e24355 (patch) | |
tree | 958c2e80d4f37fd8b7de604ed9d3d70e3cae1c25 /eigrpd/eigrp_main.c | |
parent | yang: change EIGRP authentication enum name (diff) | |
download | frr-f25c244b7502f2fa61f143b514eef8f6b9e24355.tar.xz frr-f25c244b7502f2fa61f143b514eef8f6b9e24355.zip |
eigrpd: migrate old CLI to northbound
Move all configuration commands to the new CLI code (`eigrp_cli.c`),
implement the northbound and do all the necessary wiring to get it
working.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
Diffstat (limited to 'eigrpd/eigrp_main.c')
-rw-r--r-- | eigrpd/eigrp_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eigrpd/eigrp_main.c b/eigrpd/eigrp_main.c index 3db59a838..12dbdca82 100644 --- a/eigrpd/eigrp_main.c +++ b/eigrpd/eigrp_main.c @@ -131,6 +131,7 @@ struct quagga_signal_t eigrp_signals[] = { }; static const struct frr_yang_module_info *eigrpd_yang_modules[] = { + &frr_eigrpd_info, &frr_interface_info, }; @@ -187,7 +188,7 @@ int main(int argc, char **argv, char **envp) eigrp_vty_init(); keychain_init(); eigrp_vty_show_init(); - eigrp_vty_if_init(); + eigrp_cli_init(); #ifdef HAVE_SNMP eigrp_snmp_init(); |