aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorMatus Fabian <matfabia@cisco.com>2017-12-07 23:22:51 -0800
committerOle Trøan <otroan@employees.org>2017-12-13 14:15:35 +0000
commit51e759fd0655b6089360e1ccf2f5341704549fd4 (patch)
tree125a66214683c3aae9b1ddec253ef7910b3e38d8 /src/scripts
parent331acc632477ed2da1c9c0b90915a227b5e343d5 (diff)
NAT64: multi-thread support (VPP-891)
Change-Id: Iebf859b6d86482e4465423bad598eecf87e53ec4 Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'src/scripts')
-rw-r--r--src/scripts/vnet/nat6442
-rw-r--r--src/scripts/vnet/nat64_static44
2 files changed, 86 insertions, 0 deletions
diff --git a/src/scripts/vnet/nat64 b/src/scripts/vnet/nat64
new file mode 100644
index 00000000000..f0d98ea8c69
--- /dev/null
+++ b/src/scripts/vnet/nat64
@@ -0,0 +1,42 @@
+create packet-generator interface pg0
+create packet-generator interface pg1
+
+packet-generator new {
+ name f1
+ limit 10
+ node ip6-input
+ size 64-64
+ no-recycle
+ worker 0
+ interface pg0
+ data {
+ UDP: 2000::3 -> 64:ff9b::ac10:102
+ UDP: 3000 -> 3001
+ length 128 checksum 0 incrementing 1
+ }
+}
+
+
+packet-generator new {
+ name f2
+ limit 10
+ node ip6-input
+ size 64-64
+ no-recycle
+ interface pg0
+ worker 1
+ data {
+ UDP: 2000::3 -> 64:ff9b::ac10:102
+ UDP: 3005 -> 3006
+ length 128 checksum 0 incrementing 1
+ }
+}
+
+nat64 add pool address 172.16.1.3
+set int ip address pg0 2000::1/64
+set int ip address pg1 172.16.1.1/24
+set int state pg0 up
+set int state pg1 up
+set ip6 neighbor pg0 2000::3 abcd.abcd.abcd static
+set ip arp static pg1 172.16.1.2 cdef.abcd.abcd
+set interface nat64 in pg0 out pg1
diff --git a/src/scripts/vnet/nat64_static b/src/scripts/vnet/nat64_static
new file mode 100644
index 00000000000..ff5e8dbb2c7
--- /dev/null
+++ b/src/scripts/vnet/nat64_static
@@ -0,0 +1,44 @@
+create packet-generator interface pg0
+create packet-generator interface pg1
+
+packet-generator new {
+ name f1
+ limit 10
+ node ip4-input
+ size 64-64
+ no-recycle
+ worker 0
+ interface pg1
+ data {
+ UDP: 172.16.1.2 -> 172.16.1.3
+ UDP: 3000 -> 37678
+ length 128 checksum 0 incrementing 1
+ }
+}
+
+
+packet-generator new {
+ name f2
+ limit 10
+ node ip4-input
+ size 64-64
+ no-recycle
+ interface pg1
+ worker 1
+ data {
+ UDP: 172.16.1.2 -> 172.16.1.3
+ UDP: 3005 -> 38678
+ length 128 checksum 0 incrementing 1
+ }
+}
+
+nat64 add pool address 172.16.1.3
+set int ip address pg0 2000::1/64
+set int ip address pg1 172.16.1.1/24
+set int state pg0 up
+set int state pg1 up
+set ip6 neighbor pg0 2000::3 abcd.abcd.abcd static
+set ip arp static pg1 172.16.1.2 cdef.abcd.abcd
+set interface nat64 in pg0 out pg1
+nat64 add static bib 2000::3 3001 172.16.1.3 37678 udp
+nat64 add static bib 2000::3 3006 172.16.1.3 38678 udp