Created new folder for config(.cfg) and script(.sh) files. Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica at intel.com> --- examples/ip_pipeline/config/ip_pipeline.cfg | 9 +++++ examples/ip_pipeline/config/ip_pipeline.sh | 1 + examples/ip_pipeline/ip_pipeline.cfg | 56 --------------------------- examples/ip_pipeline/ip_pipeline.sh | 18 --------- 4 files changed, 10 insertions(+), 74 deletions(-) create mode 100644 examples/ip_pipeline/config/ip_pipeline.cfg create mode 100644 examples/ip_pipeline/config/ip_pipeline.sh delete mode 100644 examples/ip_pipeline/ip_pipeline.cfg delete mode 100644 examples/ip_pipeline/ip_pipeline.sh
diff --git a/examples/ip_pipeline/config/ip_pipeline.cfg b/examples/ip_pipeline/config/ip_pipeline.cfg new file mode 100644 index 0000000..9e7e7e4 --- /dev/null +++ b/examples/ip_pipeline/config/ip_pipeline.cfg @@ -0,0 +1,9 @@ +[PIPELINE0] +type = MASTER +core = 0 + +[PIPELINE1] +type = PASS-THROUGH +core = s0c1 +pktq_in = RXQ0.0 RXQ1.0 +pktq_out = TXQ0.0 TXQ1.0 \ No newline at end of file diff --git a/examples/ip_pipeline/config/ip_pipeline.sh b/examples/ip_pipeline/config/ip_pipeline.sh new file mode 100644 index 0000000..f1ff544 --- /dev/null +++ b/examples/ip_pipeline/config/ip_pipeline.sh @@ -0,0 +1 @@ +p 1 ping \ No newline at end of file diff --git a/examples/ip_pipeline/ip_pipeline.cfg b/examples/ip_pipeline/ip_pipeline.cfg deleted file mode 100644 index 428830d..0000000 --- a/examples/ip_pipeline/ip_pipeline.cfg +++ /dev/null @@ -1,56 +0,0 @@ -; BSD LICENSE -; -; Copyright(c) 2010-2014 Intel Corporation. All rights reserved. -; All rights reserved. -; -; Redistribution and use in source and binary forms, with or without -; modification, are permitted provided that the following conditions -; are met: -; -; * Redistributions of source code must retain the above copyright -; notice, this list of conditions and the following disclaimer. -; * Redistributions in binary form must reproduce the above copyright -; notice, this list of conditions and the following disclaimer in -; the documentation and/or other materials provided with the -; distribution. -; * Neither the name of Intel Corporation nor the names of its -; contributors may be used to endorse or promote products derived -; from this software without specific prior written permission. -; -; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -; Core configuration -[core 0] -type = MASTER -queues in = 15 16 17 -1 -1 -1 -1 -1 -queues out = 12 13 14 -1 -1 -1 -1 -1 - -[core 1] -type = RX -queues in = -1 -1 -1 -1 -1 -1 -1 12 -queues out = 0 1 2 3 -1 -1 -1 15 - -[core 2] -type = FC -queues in = 0 1 2 3 -1 -1 -1 13 -queues out = 4 5 6 7 -1 -1 -1 16 - -[core 3] -type = RT -queues in = 4 5 6 7 -1 -1 -1 14 -queues out = 8 9 10 11 -1 -1 -1 17 - -[core 4] -type = TX -queues in = 8 9 10 11 -1 -1 -1 -1 -queues out = -1 -1 -1 -1 -1 -1 -1 -1 diff --git a/examples/ip_pipeline/ip_pipeline.sh b/examples/ip_pipeline/ip_pipeline.sh deleted file mode 100644 index c3419ca..0000000 --- a/examples/ip_pipeline/ip_pipeline.sh +++ /dev/null @@ -1,18 +0,0 @@ -#Address Resolution Protocol (ARP) Table -#arp add iface ipaddr macaddr -arp add 0 0.0.0.1 0a:0b:0c:0d:0e:0f -arp add 1 0.128.0.1 1a:1b:1c:1d:1e:1f - -#Routing Table -#route add ipaddr prefixlen iface gateway -route add 0.0.0.0 9 0 0.0.0.1 -route add 0.128.0.0 9 1 0.128.0.1 - -#Flow Table -flow add all -#flow add 0.0.0.0 1.2.3.4 0 0 6 0 -#flow add 10.11.12.13 0.0.0.0 0 0 6 1 - -#Firewall -#firewall add 1 0.0.0.0 0 0.0.0.0 9 0 65535 0 65535 6 0xf 0 -#firewall add 1 0.0.0.0 0 0.128.0.0 9 0 65535 0 65535 6 0xf 1 -- 1.7.9.5