diff options
author | 2016-06-10 19:37:46 +0200 | |
---|---|---|
committer | 2016-06-10 19:37:46 +0200 | |
commit | 69e02f9476e9b616a9d53d6202ff5f6c11775bdc (patch) | |
tree | e2ac4f33a86f00f4678c1641a15c3a440f8b2d17 | |
parent | 136439647bd4a41490e3a30077cefdfb2659e395 (diff) |
Fix tutorial after VPP API change
Change-Id: Icbb3f211274f8a9011e4c0b4e1c3266625d39556
Signed-off-by: Florin Coras <fcoras@cisco.com>
-rwxr-xr-x | tutorial/setup_lisp_topo.sh | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tutorial/setup_lisp_topo.sh b/tutorial/setup_lisp_topo.sh index b38ee5d..d349e8d 100755 --- a/tutorial/setup_lisp_topo.sh +++ b/tutorial/setup_lisp_topo.sh @@ -75,14 +75,14 @@ ifconfig odl 6.0.3.100/24 ethtool --offload odl rx off tx off # start vpp1 and vpp2 in separate chroot -sudo $VPP_LITE_BIN \ - unix { log /tmp/vpp1.log cli-listen \ - localhost:5002 full-coredump \ - exec $VPP_LITE_CONF/vpp1.conf } \ - api-trace { on } chroot {prefix xtr1} +sudo $VPP_LITE_BIN \ + unix { log /tmp/vpp1.log cli-listen \ + localhost:5002 full-coredump \ + exec $VPP_LITE_CONF/vpp1.conf } \ + api-trace { on } api-segment {prefix xtr1} -sudo $VPP_LITE_BIN \ - unix { log /tmp/vpp2.log cli-listen \ - localhost:5003 full-coredump \ - exec $VPP_LITE_CONF/vpp2.conf} \ - api-trace { on } chroot {prefix xtr2} +sudo $VPP_LITE_BIN \ + unix { log /tmp/vpp2.log cli-listen \ + localhost:5003 full-coredump \ + exec $VPP_LITE_CONF/vpp2.conf} \ + api-trace { on } api-segment {prefix xtr2} |