diff options
Diffstat (limited to 'vnfs/vIPSEC/pg_streams')
-rw-r--r-- | vnfs/vIPSEC/pg_streams/dep.xml | 17 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/pom.xml | 83 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp1 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp10 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp2 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp3 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp4 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp5 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp6 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp7 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp8 | 12 | ||||
-rw-r--r-- | vnfs/vIPSEC/pg_streams/stream_ipsec_udp9 | 12 |
12 files changed, 220 insertions, 0 deletions
diff --git a/vnfs/vIPSEC/pg_streams/dep.xml b/vnfs/vIPSEC/pg_streams/dep.xml new file mode 100644 index 00000000..5355773f --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/dep.xml @@ -0,0 +1,17 @@ +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> + <id>demo</id> + <formats> + <format>tar.gz</format> + </formats> + <fileSets> + <fileSet> + <directory>.</directory> + <outputDirectory>/</outputDirectory> + <includes> + <include>stream*</include> + </includes> + </fileSet> + </fileSets> +</assembly> diff --git a/vnfs/vIPSEC/pg_streams/pom.xml b/vnfs/vIPSEC/pg_streams/pom.xml new file mode 100644 index 00000000..724e44a7 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/pom.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + ============LICENSE_START========================================== + =================================================================== + Copyright © 2019 Intel Intellectual Property. All rights reserved. + =================================================================== + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ============LICENSE_END============================================ +--> + +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + + <parent> + <groupId>org.onap.demo.vnf</groupId> + <artifactId>demo-aggregator</artifactId> + <version>1.4.0-SNAPSHOT</version> + <relativePath>../../../pom.xml</relativePath> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>org.onap.demo.vnf.vipsec</groupId> + <artifactId>vipsec_pg_streams</artifactId> + + <build> + <plugins> + + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <version>2.3.2</version> + <executions> + <execution> + <id>default-jar</id> + <phase>never</phase> + </execution> + </executions> + </plugin> + + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.5.3</version> + <configuration> + <descriptor>dep.xml</descriptor> + </configuration> + <executions> + <execution> + <id>create-archive</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <executions> + <execution> + <phase>none</phase> + </execution> + </executions> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + + </plugins> + </build> + +</project> diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp1 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp1 new file mode 100644 index 00000000..da1cce06 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp1 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp1 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp10 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp10 new file mode 100644 index 00000000..fd0847a1 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp10 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp10 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp2 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp2 new file mode 100644 index 00000000..c6c80369 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp2 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp2 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp3 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp3 new file mode 100644 index 00000000..c7c5bd4f --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp3 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp3 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp4 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp4 new file mode 100644 index 00000000..4fc03372 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp4 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp4 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp5 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp5 new file mode 100644 index 00000000..cdd8d8ea --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp5 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp5 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp6 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp6 new file mode 100644 index 00000000..731a0df2 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp6 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp6 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp7 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp7 new file mode 100644 index 00000000..7afb478e --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp7 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp7 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp8 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp8 new file mode 100644 index 00000000..feaa5d45 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp8 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp8 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} diff --git a/vnfs/vIPSEC/pg_streams/stream_ipsec_udp9 b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp9 new file mode 100644 index 00000000..8f8bd742 --- /dev/null +++ b/vnfs/vIPSEC/pg_streams/stream_ipsec_udp9 @@ -0,0 +1,12 @@ +packet-generator new { + name ipsec_udp9 + rate 10 + node ip4-input + size 64-64 + no-recycle + data { + UDP: 192.168.10.31 -> 192.168.20.32 + UDP: 15320 -> 8080 + length 128 checksum 0 incrementing 1 + } +} |