diff options
author | Pierre Pfister <ppfister@cisco.com> | 2017-09-18 11:40:32 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-09-20 11:49:08 +0000 |
commit | 1bfd37295f5cd332b7326923f1fbd5e0415829cd (patch) | |
tree | 9f4b3b8136acac3fcb84f9d38f289d72b1d93053 /src/vnet/feature | |
parent | 4619e19cf0e10b9f69eee535c91053930ec14a74 (diff) |
Add ip6-local feature arc
ip4-local feature arc existed but not ip6-local one.
This patch also adds node name to the 'show ip local' command and fixes
a minor include issue in vnet/ip/ip4.h file.
Change-Id: I9bb8a7159917d58f89afcce974680de20d946a70
Signed-off-by: Pierre Pfister <ppfister@cisco.com>
Diffstat (limited to 'src/vnet/feature')
-rw-r--r-- | src/vnet/feature/feature.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/feature/feature.c b/src/vnet/feature/feature.c index ad4047e62b3..6756d0d4ea3 100644 --- a/src/vnet/feature/feature.c +++ b/src/vnet/feature/feature.c @@ -441,7 +441,8 @@ done: /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_interface_feature_command, static) = { .path = "set interface feature", - .short_help = "set interface feature <intfc> <feature_name> arc <arc_name>", + .short_help = "set interface feature <intfc> <feature_name> arc <arc_name> " + "[disable]", .function = set_interface_features_command_fn, }; /* *INDENT-ON* */ |