aboutsummaryrefslogtreecommitdiffstats
path: root/man/man8/ip-route.8.in
Commit message (Collapse)AuthorAgeFilesLines
* iproute2: ip-route.8.in: Add expires option for ip routeHangbin Liu2015-12-301-1/+9
| | | | Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
* iproute2: ip-route.8.in: Add missing '[' before 'pref'Hangbin Liu2015-12-301-1/+1
| | | | Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
* ip-route man: add usage and description for lwtunnel encap attributesRoopa Prabhu2015-10-161-1/+69
| | | | | | | | | This patch updates ip-route man page with lwtunnel encap usage and description, covering MPLS and IP encapsulation. Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com> Signed-off-by: Thomas Graf <tgraf@suug.ch> Acked-by: Jiri Benc <jbenc@redhat.com>
* Merge branch 'master' into net-nextStephen Hemminger2015-04-071-37/+37
|\ | | | | | | | | Conflicts: man/man8/ip-route.8.in
| * docs: make spacing consistentPavel Šimerda2015-04-071-39/+39
| | | | | | | | | | | | | | | | Result of the following command: sed -ri 's/\. /. /g' man/*/* Signed-Off-By: Pavel Šimerda <psimerda@redhat.com>
* | ip: support RFC4191 router preferenceLubomir Rintel2015-03-241-0/+28
| | | | | | | | | | | | | | | | | | | | This allows querying and setting the route preference. It's usually set from the IPv6 Neighbor Discovery Router Advertisement messages. Introduced in "ipv6: expose RFC4191 route preference via rtnetlink", enqueued for Linux 4.1. Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
* | add basic mpls support to iprouteEric W. Biederman2015-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Pull in the uapi mpls.h - Update rtnetlink.h to include the mpls rtnetlink notification multicast group. - Define AF_MPLS in utils.h if it is not defined from elsewhere as is done with AF_DECnet The address syntax for multiple mpls labels is a complete invention. When I looked there seemed to be no wide spread convention for talking about an mpls label stack in text for. Sometimes people did: "{ Label1, Label2, Label3 }", sometimes people would do: "[ label3, label2, label1 ]", and most of the time label stacks were not explicitly shown at all. The syntax I wound up using, so it would not have spaces and so it would visually distinct from other kinds of addresses is. label1/label2/label3 Where label1 is the label at the top of the label stack and label3 is the label at the bottom on the label stack. When there is a single label this matches what seems to be convention with other tools. Just print out the numeric value of the mpls label. The netlink protocol for labels uses the on the wire format for a label stack. The ttl and traffic class are expected to be 0. Using the on the wire format is common and what happens with other address types. BGP when passing label stacks also uses this technique with the exception that the ttl byte is not included making each label in a BGP label stack 3 bytes instead of 4. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
* | add support for the RTA_NEWDST attribute.Eric W. Biederman2015-03-241-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This attribute is like RTA_DST except it specifies the destination address to place on a packet when it leaves the host. For ip based protocols this is destination NAT and not a common part of forwarding. For protocols like MPLS label swapping is something that typically happens on every hop. There is likely to be a RTA_NEWSRC at some point so RTA_NEWDST is printed as "as to" and can be specified either as "as to" or just "as" Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
* | add support for the RTA_VIA attributeEric W. Biederman2015-03-241-6/+12
|/ | | | | | | | | | Add support for the RTA_VIA attribute that specifies an address family as well as an address for the next hop gateway. To make it easy to pass this reorder inet_prefix so that it's tail is a proper RTA_VIA attribute. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
* ip: route: add congestion control metricDaniel Borkmann2015-01-131-1/+18
| | | | | | | | | | This patch adds configuration and dumping of congestion control metric for ip route, for example: ip route add <dst> dev foo congctl [lock] dctcp Reference: http://thread.gmane.org/gmane.linux.network/344733 Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
* ip route: enable per-route ecn settings via 'features' optionFlorian Westphal2014-12-091-0/+18
| | | | | | | | | | | | | | | | | This permits to selectively enable explicit congestion notification via the routing table. If this ecn feature is not set, the kernel will use the tcp_ecn sysctl to decide wheter to use ECN when establising a TCP connection. At the time of this writing, the kernel supports ecn and allfrags, but allfrags is of dubious value and not implemented here. Example: ip route change 192.168.2.0/24 dev eth0 features ecn Signed-off-by: Florian Westphal <fw@strlen.de>
* iproute2: ip-route.8.in: minor fixesRichard Godbee2013-08-311-1/+3
| | | | | | | | | In SYNOPSIS section: - Add 'reordering' - Add missing '[' before 'quickack' Signed-off-by: Richard Godbee <richard@godbee.net>
* Merge branch 'net-next-3.10'Stephen Hemminger2013-07-161-0/+6
|\
| * add quickack option to ip routeCong Wang2013-06-201-0/+6
| | | | | | | | | | | | | | | | | | | | This patch adds quickack option to enable/disable TCP quick ack mode for per-route. Cc: Stephen Hemminger <stephen@networkplumber.org> Cc: "David S. Miller" <davem@davemloft.net> Cc: Thomas Graf <tgraf@suug.ch> Signed-off-by: Cong Wang <amwang@redhat.com>
* | First set of manpage markup fixesesr@thyrsus.com2013-06-241-13/+43
|/ | | | | | | | | | | | | | | | | | | Enclosed patch fixes inappropriate uses of the .SS macro. Fuller explanation in the change comment. There are other problems in these pages that block lifting to XML-DocBook, most notably in the command synopses. They will take some creativity to fix. I'm working on it >From 75745adba4b45b87577b61a2daa886dd444f44da Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" <esr@thyrsus.com> Date: Fri, 21 Jun 2013 15:27:38 -0400 Subject: [PATCH] Abolish presentation-level misuse of the .SS macro. This change fixes most (but not all) fatal errors in attempts to lift the iproute2 manual pages to XML-DocBook. Where .SS is still used it is a real subsection header, not just a way to outdent and bold text. Presentation-level instances are turned into .TP calls and tables.
* ip: term OPTIONS was used twice in 'ip route' man pagesNicolas Dichtel2012-12-141-2/+2
| | | | | | INFO_SPEC already uses the term 'OPTIONS' and describe it. Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
* iproute2: Fix various manpage formatting nitsAndreas Schwab2012-09-071-5/+5
| | | | Signed-off-by: Andreas Schwab <schwab@linux-m68k.org>
* iproute2 - Split up manual page installationChristoph J. Thompson2012-04-121-0/+744
Generate manual pages based on where the config files are installed. Add missing manual pages for utilities which are links to other binaries. Make tc-pfifo.8 a real file that points to tc-bfifo.8 instead of symlink which causes problems with compressing manual pages. Signed-off-by: Christoph J. Thompson <cjsthompson@gmail.com>