Initial code drop from Cisco 65/38365/4 1.0.0
authorahothan <ahothan@cisco.com>
Sat, 29 Jul 2017 00:08:46 +0000 (17:08 -0700)
committerahothan <ahothan@cisco.com>
Mon, 31 Jul 2017 19:34:00 +0000 (12:34 -0700)
commit04a7de082bd221eae3c7004f4e0b99dfa4f8be91
treec9fb7beaedc80479772ba24c3b47c85d49c22f76
parentb8f02ed4e72399840a93aceb02b8c53831bbe68a
Initial code drop from Cisco

Change-Id: Ie2993886dc8e95c5f73ccdb871add8b96ffcc849
Signed-off-by: ahothan <ahothan@cisco.com>
84 files changed:
.dockerignore [new file with mode: 0644]
.gitignore [new file with mode: 0644]
Dockerfile [new file with mode: 0644]
INFO
README.rst [new file with mode: 0644]
cleanup/__init__.py [new file with mode: 0644]
cleanup/nfvbench_cleanup.py [new file with mode: 0644]
client/__init__.py [new file with mode: 0644]
client/client.py [new file with mode: 0644]
client/nfvbench_client.py [new file with mode: 0644]
client/requirements.txt [new file with mode: 0644]
conftest.py [new file with mode: 0644]
docker/cleanup_generators.py [new file with mode: 0755]
docs/Makefile [new file with mode: 0644]
docs/development/design/design.rst [new file with mode: 0644]
docs/development/design/index.rst [new file with mode: 0644]
docs/development/index.rst [new file with mode: 0644]
docs/development/overview/index.rst [new file with mode: 0644]
docs/development/overview/overview.rst [new file with mode: 0644]
docs/index.rst [new file with mode: 0644]
docs/release/release-notes/index.rst [new file with mode: 0644]
docs/release/release-notes/release-notes.rst [new file with mode: 0644]
docs/testing/developer/devguide/index.rst [new file with mode: 0644]
docs/testing/index.rst [new file with mode: 0644]
docs/testing/user/configguide/configguide.rst [new file with mode: 0644]
docs/testing/user/configguide/index.rst [new file with mode: 0644]
docs/testing/user/userguide/_static/custom.css [new file with mode: 0644]
docs/testing/user/userguide/_templates/layout.html [new file with mode: 0644]
docs/testing/user/userguide/advanced.rst [new file with mode: 0644]
docs/testing/user/userguide/conf.py [new file with mode: 0644]
docs/testing/user/userguide/examples.rst [new file with mode: 0644]
docs/testing/user/userguide/faq.rst [new file with mode: 0644]
docs/testing/user/userguide/hw_requirements.rst [new file with mode: 0644]
docs/testing/user/userguide/images/extchain-config.svg [new file with mode: 0644]
docs/testing/user/userguide/images/nfvbench-npvp.svg [new file with mode: 0644]
docs/testing/user/userguide/images/nfvbench-pvp.svg [new file with mode: 0644]
docs/testing/user/userguide/images/nfvbench-pvvp-inter.svg [new file with mode: 0644]
docs/testing/user/userguide/images/nfvbench-pvvp-intra.svg [new file with mode: 0644]
docs/testing/user/userguide/images/nfvbench-spirent-setup.svg [new file with mode: 0644]
docs/testing/user/userguide/images/nfvbench-trex-setup.svg [new file with mode: 0644]
docs/testing/user/userguide/index.rst [new file with mode: 0644]
docs/testing/user/userguide/installation.rst [new file with mode: 0644]
docs/testing/user/userguide/quickstart_docker.rst [new file with mode: 0644]
docs/testing/user/userguide/readme.rst [new file with mode: 0644]
docs/testing/user/userguide/server.rst [new file with mode: 0644]
nfvbench/__init__.py [new file with mode: 0644]
nfvbench/cfg.default.yaml [new file with mode: 0644]
nfvbench/chain_clients.py [new file with mode: 0644]
nfvbench/chain_managers.py [new file with mode: 0644]
nfvbench/chain_runner.py [new file with mode: 0644]
nfvbench/chain_workers.py [new file with mode: 0644]
nfvbench/compute.py [new file with mode: 0644]
nfvbench/config.py [new file with mode: 0644]
nfvbench/config_plugin.py [new file with mode: 0644]
nfvbench/connection.py [new file with mode: 0644]
nfvbench/credentials.py [new file with mode: 0644]
nfvbench/factory.py [new file with mode: 0644]
nfvbench/log.py [new file with mode: 0644]
nfvbench/network.py [new file with mode: 0644]
nfvbench/nfvbench.py [new file with mode: 0644]
nfvbench/nfvbenchd.py [new file with mode: 0644]
nfvbench/nfvbenchvm/nfvbenchvm.conf [new file with mode: 0644]
nfvbench/packet_analyzer.py [new file with mode: 0644]
nfvbench/service_chain.py [new file with mode: 0644]
nfvbench/specs.py [new file with mode: 0644]
nfvbench/stats_collector.py [new file with mode: 0644]
nfvbench/summarizer.py [new file with mode: 0644]
nfvbench/tor_client.py [new file with mode: 0644]
nfvbench/traffic_client.py [new file with mode: 0644]
nfvbench/traffic_gen/__init__.py [new file with mode: 0644]
nfvbench/traffic_gen/dummy.py [new file with mode: 0644]
nfvbench/traffic_gen/traffic_base.py [new file with mode: 0644]
nfvbench/traffic_gen/traffic_utils.py [new file with mode: 0644]
nfvbench/traffic_gen/trex.py [new file with mode: 0644]
nfvbench/traffic_server.py [new file with mode: 0644]
nfvbench/utils.py [new file with mode: 0644]
nfvbenchvm/README.rst [new file with mode: 0644]
requirements-dev.txt [new file with mode: 0644]
requirements.txt [new file with mode: 0644]
setup.cfg [new file with mode: 0644]
setup.py [new file with mode: 0644]
test-requirements.txt [new file with mode: 0644]
test/test_nfvbench.py [new file with mode: 0644]
tox.ini [new file with mode: 0644]