From patchwork Thu Dec 13 13:42:49 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Dichtel X-Patchwork-Id: 205849 X-Patchwork-Delegate: shemminger@vyatta.com Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 8C3272C009B for ; Fri, 14 Dec 2012 00:45:34 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755544Ab2LMNpa (ORCPT ); Thu, 13 Dec 2012 08:45:30 -0500 Received: from 33.106-14-84.ripe.coltfrance.com ([84.14.106.33]:40564 "EHLO proxy.6wind.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753417Ab2LMNpT (ORCPT ); Thu, 13 Dec 2012 08:45:19 -0500 Received: from schnaps.dev.6wind.com (unknown [10.16.0.249]) by proxy.6wind.com (Postfix) with ESMTPS id E96DF5AB3E; Thu, 13 Dec 2012 14:45:15 +0100 (CET) Received: from root by schnaps.dev.6wind.com with local (Exim 4.80) (envelope-from ) id 1Tj94g-0002n8-Uo; Thu, 13 Dec 2012 14:43:42 +0100 From: Nicolas Dichtel To: shemminger@vyatta.com Cc: netdev@vger.kernel.org, Nicolas Dichtel Subject: [PATCH iproute2 1/6] ip: add man pages for netconf Date: Thu, 13 Dec 2012 14:42:49 +0100 Message-Id: <1355406174-10586-1-git-send-email-nicolas.dichtel@6wind.com> X-Mailer: git-send-email 1.8.0.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch add the documentation about 'ip netconf' command. Signed-off-by: Nicolas Dichtel --- man/man8/Makefile | 2 +- man/man8/ip-netconf.8 | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 man/man8/ip-netconf.8 diff --git a/man/man8/Makefile b/man/man8/Makefile index 4bad9d6..d208f3b 100644 --- a/man/man8/Makefile +++ b/man/man8/Makefile @@ -9,7 +9,7 @@ MAN8PAGES = $(TARGETS) ip.8 arpd.8 lnstat.8 routel.8 rtacct.8 rtmon.8 ss.8 \ ip-addrlabel.8 ip-l2tp.8 \ ip-maddress.8 ip-monitor.8 ip-mroute.8 ip-neighbour.8 \ ip-netns.8 ip-ntable.8 ip-rule.8 ip-tunnel.8 ip-xfrm.8 \ - ip-tcp_metrics.8 + ip-tcp_metrics.8 ip-netconf.8 all: $(TARGETS) diff --git a/man/man8/ip-netconf.8 b/man/man8/ip-netconf.8 new file mode 100644 index 0000000..8041ea2 --- /dev/null +++ b/man/man8/ip-netconf.8 @@ -0,0 +1,36 @@ +.TH IP\-NETCONF 8 "13 Dec 2012" "iproute2" "Linux" +.SH "NAME" +ip-netconf \- network configuration monitoring +.SH "SYNOPSIS" +.sp +.ad l +.in +8 +.ti -8 +.BR "ip " " [ ip-OPTIONS ] " "netconf show" " [ " +.B dev +.IR STRING " ]" + +.SH DESCRIPTION +The +.B ip netconf +utility can monitor IPv4 and IPv6 parameters (see +.BR "/proc/sys/net/ipv[4|6]/conf/[all|DEV]/" ")" +like forwarding, rp_filter +or mc_forwarding status. + +If no interface is specified, the entry +.B all +is displayed. + +.SS ip netconf show - display network parameters + +.TP +.BI dev " STRING" +the name of the device to display network parameters. + +.SH SEE ALSO +.br +.BR ip (8) + +.SH AUTHOR +Original Manpage by Nicolas Dichtel