aboutsummaryrefslogtreecommitdiffstats
path: root/router/README.md
diff options
context:
space:
mode:
authorHongjun Ni <hongjun.ni@intel.com>2017-03-28 18:08:52 +0800
committerHongjun Ni <hongjun.ni@intel.com>2017-04-05 19:27:24 +0800
commitffd582515ce0e12b11c0d23e080ff64c20301073 (patch)
tree7efe271242d4367c6286c0fd8227fb8b4c60c962 /router/README.md
parenta54fc6bd0805d7f60451d608cd4b4781197de34b (diff)
FIx compile issue for netlink and router plugin
Change-Id: I8a6f069af4acce97fd0ee262c217af645afd476d Signed-off-by: Hongjun Ni <hongjun.ni@intel.com> Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'router/README.md')
-rw-r--r--router/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/router/README.md b/router/README.md
index b4e8ce0..3401c76 100644
--- a/router/README.md
+++ b/router/README.md
@@ -34,7 +34,7 @@ Now build everything and create a link to the plugin in vpp's plugin path.
```
$ cd build-root
$ ./bootstrap.sh
-$ make V=0 PLATFORM=vpp TAG=vpp_debug router-install
+$ make V=0 PLATFORM=vpp TAG=vpp_debug netlink-install router-install
$ ln -sf /git/vpp/build-root/install-vpp_debug-native/router/lib64/router.so.0.0.0 \
/usr/lib/vpp_plugins/router.so
```
@@ -43,7 +43,7 @@ Once VPP is running and the plugin is loaded, data plane interfaces can
be tapped.
```
-$ vppctl tap inject arp,icmp4 from TenGigabitEthernet2/0/0 as vpp0
+$ vppctl enable tap-inject
```
The host operating system should see a tap named 'vpp0' with the same hardware
@@ -58,7 +58,7 @@ plane's default fib.
Currently the router plugin handles ARP, locally destined ICMPv4 and OSPF
traffic. It supports the classifier directing packets from an ip4-table to
-the 'tap-inject-classified' node (for handling multicast OSPF and IGMP).
+the 'tap-inject-neighbor' node (for handling multicast OSPF and IGMP).
### Objective