summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_interface.c
diff options
context:
space:
mode:
authorpaul <paul>2003-05-18 15:26:26 +0000
committerpaul <paul>2003-05-18 15:26:26 +0000
commit733e8102dc513a49363c73597fbf9d3fe061acd5 (patch)
treeb2c8adab27a48f8b56a3164ded397ef527afb4e9 /ospf6d/ospf6_interface.c
parent551a8979254b5fc797765d18b4c678fb7419e702 (diff)
From: Hasso Tepper <hasso@estpak.ee>
Subject: [zebra 19093] [PATCH] Two more fixes 1) From 6Wind patch - show router and interface nodes from ospf6d when using vtysh and don't show defaults in interface node. Fixes bugzilla #14.
Diffstat (limited to 'ospf6d/ospf6_interface.c')
-rw-r--r--ospf6d/ospf6_interface.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c
index d394f21b..4d632b22 100644
--- a/ospf6d/ospf6_interface.c
+++ b/ospf6d/ospf6_interface.c
@@ -961,18 +961,25 @@ ospf6_interface_config_write (struct vty *vty)
vty_out (vty, "interface %s%s",
o6i->interface->name, VTY_NEWLINE);
+ if (o6i->cost != 1)
vty_out (vty, " ipv6 ospf6 cost %d%s",
o6i->cost, VTY_NEWLINE);
+ if (o6i->hello_interval != 10)
vty_out (vty, " ipv6 ospf6 hello-interval %d%s",
o6i->hello_interval, VTY_NEWLINE);
+ if (o6i->dead_interval != 40)
vty_out (vty, " ipv6 ospf6 dead-interval %d%s",
o6i->dead_interval, VTY_NEWLINE);
+ if (o6i->rxmt_interval != 5)
vty_out (vty, " ipv6 ospf6 retransmit-interval %d%s",
o6i->rxmt_interval, VTY_NEWLINE);
+ if (o6i->priority != 1)
vty_out (vty, " ipv6 ospf6 priority %d%s",
o6i->priority, VTY_NEWLINE);
+ if (o6i->transdelay != 1)
vty_out (vty, " ipv6 ospf6 transmit-delay %d%s",
o6i->transdelay, VTY_NEWLINE);
+ if (o6i->instance_id != 0)
vty_out (vty, " ipv6 ospf6 instance-id %d%s",
o6i->instance_id, VTY_NEWLINE);
@@ -994,6 +1001,7 @@ struct cmd_node interface_node =
{
INTERFACE_NODE,
"%s(config-if)# ",
+ vtysh: 1
};
void