]> git.proxmox.com Git - mirror_iproute2.git/commit
add basic mpls support to iproute
authorEric W. Biederman <ebiederm@xmission.com>
Sun, 15 Mar 2015 19:53:45 +0000 (14:53 -0500)
committerStephen Hemminger <shemming@brocade.com>
Tue, 24 Mar 2015 22:45:23 +0000 (15:45 -0700)
commitdacc5d4197c1f8ac12938a594f7e4131cb937cb2
tree452d13ccc87b24cfd7a72b06d2fedbdc05e7f1f9
parent6f7a9f4dc55974e73522f23c88bc8ec85b0871f5
add basic mpls support to iproute

- 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>
Makefile
include/linux/mpls.h [new file with mode: 0644]
include/utils.h
ip/ip.c
ip/ipmonitor.c
ip/iproute.c
lib/mpls_ntop.c [new file with mode: 0644]
lib/mpls_pton.c [new file with mode: 0644]
lib/utils.c
man/man8/ip-route.8.in
man/man8/ip.8