diff options
author | Fangyin Hu <fangyinx.hu@intel.com> | 2017-06-21 21:09:53 -0700 |
---|---|---|
committer | Fangyin Hu <fangyinx.hu@intel.com> | 2017-06-21 21:09:53 -0700 |
commit | b9edc2d34cf5148684b9a8d49b965756c289fcdb (patch) | |
tree | 69c319f7241f703623f3d0c0f69c590907673f79 /nsh_sfc_tests | |
parent | 780238d888cc9c513625bb09dbf547b02b0e2c47 (diff) |
Fix the vppctl show interface command issue.
Change-Id: I46080cb824565422150222d2f69288bf3c791e7b
Signed-off-by: Fangyin Hu <fangyinx.hu@intel.com>
Diffstat (limited to 'nsh_sfc_tests')
-rwxr-xr-x | nsh_sfc_tests/sfc_scripts/set_nsh_proxy_inbound.sh | 4 | ||||
-rwxr-xr-x | nsh_sfc_tests/sfc_scripts/set_nsh_proxy_outbound.sh | 4 | ||||
-rwxr-xr-x | nsh_sfc_tests/sfc_scripts/set_sfc_sff.sh | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_inbound.sh b/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_inbound.sh index 7535f0db2b..453de3f8de 100755 --- a/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_inbound.sh +++ b/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_inbound.sh @@ -20,8 +20,8 @@ sudo vppctl create nsh entry nsp 185 nsi 255 md-type 1 c1 3232248395 c2 9 c3 323 sudo vppctl create nsh entry nsp 185 nsi 254 md-type 1 c1 3232248395 c2 9 c3 3232248392 c4 50336437 next-ethernet sleep 2 -vxlan_gpe_index=`sudo vppctl sh interfaces | grep "vxlan_gpe_tunnel0" | awk '{print $2}'` -vxlan_index=`sudo vppctl sh interfaces | grep "vxlan_tunnel0" | awk '{print $2}'` +vxlan_gpe_index=`sudo vppctl sh int | grep "vxlan_gpe_tunnel0" | awk '{print $2}'` +vxlan_index=`sudo vppctl sh int | grep "vxlan_tunnel0" | awk '{print $2}'` sudo vppctl create nsh map nsp 185 nsi 255 mapped-nsp 185 mapped-nsi 255 nsh_action pop encap-vxlan4-intf ${vxlan_index} sudo vppctl create nsh map nsp 185 nsi 254 mapped-nsp 185 mapped-nsi 254 nsh_action push encap-vxlan-gpe-intf ${vxlan_gpe_index} diff --git a/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_outbound.sh b/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_outbound.sh index d52bdf039f..304ed30cda 100755 --- a/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_outbound.sh +++ b/nsh_sfc_tests/sfc_scripts/set_nsh_proxy_outbound.sh @@ -20,8 +20,8 @@ sudo vppctl create nsh entry nsp 185 nsi 255 md-type 1 c1 3232248395 c2 9 c3 323 sudo vppctl create nsh entry nsp 185 nsi 254 md-type 1 c1 3232248395 c2 9 c3 3232248392 c4 50336437 next-ethernet sleep 2 -vxlan_gpe_index=`sudo vppctl sh interfaces | grep "vxlan_gpe_tunnel0" | awk '{print $2}'` -vxlan_index=`sudo vppctl sh interfaces | grep "vxlan_tunnel0" | awk '{print $2}'` +vxlan_gpe_index=`sudo vppctl sh int | grep "vxlan_gpe_tunnel0" | awk '{print $2}'` +vxlan_index=`sudo vppctl sh int | grep "vxlan_tunnel0" | awk '{print $2}'` sudo vppctl create nsh map nsp 185 nsi 255 mapped-nsp 185 mapped-nsi 255 nsh_action pop encap-vxlan4-intf ${vxlan_index} sudo vppctl create nsh map nsp 185 nsi 254 mapped-nsp 185 mapped-nsi 254 nsh_action push encap-vxlan-gpe-intf ${vxlan_gpe_index} diff --git a/nsh_sfc_tests/sfc_scripts/set_sfc_sff.sh b/nsh_sfc_tests/sfc_scripts/set_sfc_sff.sh index 2223e5d039..03e2f0ade7 100755 --- a/nsh_sfc_tests/sfc_scripts/set_sfc_sff.sh +++ b/nsh_sfc_tests/sfc_scripts/set_sfc_sff.sh @@ -20,8 +20,8 @@ sudo vppctl create nsh entry nsp 185 nsi 255 md-type 1 c1 3232248395 c2 9 c3 323 sudo vppctl create nsh entry nsp 185 nsi 254 md-type 1 c1 3232248395 c2 9 c3 3232248392 c4 50336437 next-ethernet sleep 2 -vxlan_gpe_index0=`sudo vppctl sh interfaces | grep "vxlan_gpe_tunnel0" | awk '{print $2}'` -vxlan_gpe_index1=`sudo vppctl sh interfaces | grep "vxlan_gpe_tunnel1" | awk '{print $2}'` +vxlan_gpe_index0=`sudo vppctl sh int | grep "vxlan_gpe_tunnel0" | awk '{print $2}'` +vxlan_gpe_index1=`sudo vppctl sh int | grep "vxlan_gpe_tunnel1" | awk '{print $2}'` sudo vppctl create nsh map nsp 185 nsi 255 mapped-nsp 185 mapped-nsi 254 nsh_action swap encap-vxlan-gpe-intf ${vxlan_gpe_index0} sudo vppctl ip route add 192.168.50.71/32 via 192.168.50.76 $1 |