summaryrefslogtreecommitdiffstats
path: root/ripngd
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2020-02-14 14:28:29 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2020-02-14 14:41:42 +0100
commit24c4ee4a1f559f1eb1f6dec404658542984b6331 (patch)
tree6d51b925d70211c78a70a47b3df8175ddd92fd43 /ripngd
parentripd: Add vrf name to debug output (diff)
downloadfrr-24c4ee4a1f559f1eb1f6dec404658542984b6331.tar.xz
frr-24c4ee4a1f559f1eb1f6dec404658542984b6331.zip
ripngd: Add vrf name to debug output
The vrf id is insufficient of a discriminator in people's head Give them what they need. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ripngd')
-rw-r--r--ripngd/ripng_interface.c44
1 files changed, 30 insertions, 14 deletions
diff --git a/ripngd/ripng_interface.c b/ripngd/ripng_interface.c
index 250c7803f..6a30c07d9 100644
--- a/ripngd/ripng_interface.c
+++ b/ripngd/ripng_interface.c
@@ -198,11 +198,14 @@ static int ripng_if_down(struct interface *ifp)
/* Inteface link up message processing. */
static int ripng_ifp_up(struct interface *ifp)
{
- if (IS_RIPNG_DEBUG_ZEBRA)
+ if (IS_RIPNG_DEBUG_ZEBRA) {
+ struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
+
zlog_debug(
- "interface up %s vrf %u index %d flags %llx metric %d mtu %d",
- ifp->name, ifp->vrf_id, ifp->ifindex,
+ "interface up %s vrf %s(%u) index %d flags %llx metric %d mtu %d",
+ ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex,
(unsigned long long)ifp->flags, ifp->metric, ifp->mtu6);
+ }
ripng_interface_sync(ifp);
@@ -224,11 +227,14 @@ static int ripng_ifp_down(struct interface *ifp)
ripng_interface_sync(ifp);
ripng_if_down(ifp);
- if (IS_RIPNG_DEBUG_ZEBRA)
+ if (IS_RIPNG_DEBUG_ZEBRA) {
+ struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
+
zlog_debug(
- "interface down %s vrf %u index %d flags %#llx metric %d mtu %d",
- ifp->name, ifp->vrf_id, ifp->ifindex,
+ "interface down %s vrf %s(%u) index %d flags %#llx metric %d mtu %d",
+ ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex,
(unsigned long long)ifp->flags, ifp->metric, ifp->mtu6);
+ }
return 0;
}
@@ -238,11 +244,14 @@ static int ripng_ifp_create(struct interface *ifp)
{
ripng_interface_sync(ifp);
- if (IS_RIPNG_DEBUG_ZEBRA)
+ if (IS_RIPNG_DEBUG_ZEBRA) {
+ struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
+
zlog_debug(
- "RIPng interface add %s vrf %u index %d flags %#llx metric %d mtu %d",
- ifp->name, ifp->vrf_id, ifp->ifindex,
+ "RIPng interface add %s vrf %s(%u) index %d flags %#llx metric %d mtu %d",
+ ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex,
(unsigned long long)ifp->flags, ifp->metric, ifp->mtu6);
+ }
/* Check is this interface is RIP enabled or not.*/
ripng_enable_apply(ifp);
@@ -258,14 +267,16 @@ static int ripng_ifp_create(struct interface *ifp)
static int ripng_ifp_destroy(struct interface *ifp)
{
+ struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
+
ripng_interface_sync(ifp);
if (if_is_up(ifp)) {
ripng_if_down(ifp);
}
zlog_info(
- "interface delete %s vrf %u index %d flags %#llx metric %d mtu %d",
- ifp->name, ifp->vrf_id, ifp->ifindex,
+ "interface delete %s vrf %s(%u) index %d flags %#llx metric %d mtu %d",
+ ifp->name, VRF_LOGNAME(vrf), ifp->vrf_id, ifp->ifindex,
(unsigned long long)ifp->flags, ifp->metric, ifp->mtu6);
return 0;
@@ -282,9 +293,14 @@ int ripng_interface_vrf_update(ZAPI_CALLBACK_ARGS)
if (!ifp)
return 0;
- if (IS_RIPNG_DEBUG_ZEBRA)
- zlog_debug("interface %s VRF change vrf_id %u new vrf id %u",
- ifp->name, vrf_id, new_vrf_id);
+ if (IS_RIPNG_DEBUG_ZEBRA) {
+ struct vrf *vrf = vrf_lookup_by_id(ifp->vrf_id);
+ struct vrf *nvrf = vrf_lookup_by_id(new_vrf_id);
+
+ zlog_debug("interface %s VRF change vrf %s(%u) new vrf %s(%u)",
+ ifp->name, VRF_LOGNAME(vrf), vrf_id,
+ VRF_LOGNAME(nvrf), new_vrf_id);
+ }
if_update_to_new_vrf(ifp, new_vrf_id);
ripng_interface_sync(ifp);