diff options
author | paul <paul> | 2003-05-18 15:22:55 +0000 |
---|---|---|
committer | paul <paul> | 2003-05-18 15:22:55 +0000 |
commit | 551a8979254b5fc797765d18b4c678fb7419e702 (patch) | |
tree | b48c1f54ee3e7a80a0adcc5fb5e9500102f8b78b | |
parent | 09f4b7a0f39bdb929f76cfce299e33db05065fcc (diff) |
From: Hasso Tepper <hasso@estpak.ee>
Subject: [zebra 19093] [PATCH] Two more fixes
Show NSSA LSA route info in "show ip ospf database" output
-rw-r--r-- | ospfd/ChangeLog | 9 | ||||
-rw-r--r-- | ospfd/ospf_vty.c | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 08bad005..1109eb0a 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,11 +1,16 @@ -2003-04-23 Hasso Tepper <hasso@estpak.ee> +2003-05-18 Hasso Tepper <hasso@estpak.ee> - * ospf_vty.c: fix "router xxx" node commands in vtysh + * ospf_vty.c: Show NSSA LSA route info in "show ip ospf database" + output 2003-05-16 Hasso Tepper <hasso@estpak.ee> * ospf_lsa.c: Fix handling of NSSA +2003-04-23 Hasso Tepper <hasso@estpak.ee> + + * ospf_vty.c: fix "router xxx" node commands in vtysh + 2003-04-19 Hasso Tepper <hasso@estpak.ee> * {ospf_abr,ospfd}.c: area id's DECIMAL -> ADDRESS diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index aa41d79c..482ef6fc 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -3100,6 +3100,9 @@ show_lsa_summary (struct vty *vty, struct ospf_lsa *lsa, int self) vty_out (vty, " %s/%d", inet_ntoa (p.prefix), p.prefixlen); break; case OSPF_AS_EXTERNAL_LSA: +#ifdef HAVE_NSSA + case OSPF_AS_NSSA_LSA: +#endif /* HAVE_NSSA */ asel = (struct as_external_lsa *) lsa->data; p.family = AF_INET; |