diff options
author | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2016-12-24 14:58:56 +0000 |
---|---|---|
committer | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2016-12-24 14:58:56 +0000 |
commit | e8be8a0f64e5cc70c1197e1ca8cd41e8a30f5503 (patch) | |
tree | 67c1dc0a59ab5fd56d7cfaf148a73e51ddb54ecd /usr.sbin/ospf6d | |
parent | 23993f8a58a78102484649a4167e15edd38c2053 (diff) |
Print metric and type for "redistribute" in ospf6d -v.
Similar diff as for ospfd, from Remi Locherer. ok stsp@
Diffstat (limited to 'usr.sbin/ospf6d')
-rw-r--r-- | usr.sbin/ospf6d/printconf.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/usr.sbin/ospf6d/printconf.c b/usr.sbin/ospf6d/printconf.c index 9f8f5f29fb4..17a0ac11dbc 100644 --- a/usr.sbin/ospf6d/printconf.c +++ b/usr.sbin/ospf6d/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.4 2010/08/22 21:15:25 bluhm Exp $ */ +/* $OpenBSD: printconf.c,v 1.5 2016/12/24 14:58:55 jca Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -72,24 +72,27 @@ print_redistribute(struct ospfd_conf *conf) SIMPLEQ_FOREACH(r, &conf->redist_list, entry) { switch (r->type & ~REDIST_NO) { case REDIST_STATIC: - printf("%sredistribute static\n", print_no(r->type)); + printf("%sredistribute static ", print_no(r->type)); break; case REDIST_CONNECTED: - printf("%sredistribute connected\n", print_no(r->type)); + printf("%sredistribute connected ", print_no(r->type)); break; case REDIST_LABEL: - printf("%sredistribute rtlabel %s\n", + printf("%sredistribute rtlabel %s ", print_no(r->type), rtlabel_id2name(r->label)); break; case REDIST_ADDR: - printf("%sredistribute %s/%d\n", + printf("%sredistribute %s/%d ", print_no(r->type), log_in6addr(&r->addr), r->prefixlen); break; case REDIST_DEFAULT: - printf("%sredistribute default\n", print_no(r->type)); + printf("%sredistribute default ", print_no(r->type)); break; } + printf("set { metric %d type %d }\n", + (r->metric & LSA_METRIC_MASK), + ((r->metric & LSA_ASEXT_E_FLAG) == 0 ? 1 : 2)); } } |