ip route带 mpls命令使用方法

kernel高版本

# create a MPLS route (requires kernel >= 4.1.4)
# $ sudo modprobe mpls_router
# $ sudo sysctl -w net.mpls.platform_labels=1000
req = IPRouteRequest({'family': AF_MPLS,
                      'oif': 2,
                      'via': {'family': AF_INET,
                              'addr': '172.16.0.10'},
                      'newdst': {'label': 0x20,
                                 'bos': 1}})
ip.route('add', **req)


ip route add -f mpls oif 2 via 172.16.0.10 newdst label 0x20 bos 1




参考

1 http://www.cnblogs.com/liuwu265/p/4229681.html

作者liuwu



你可能感兴趣的:(ip route带 mpls命令使用方法)