diff options
author | Marco Platania <platania@research.att.com> | 2019-06-17 09:12:21 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2019-06-17 09:34:58 -0400 |
commit | 9442f8f2f2f5eedec09285da7239a0877b10f076 (patch) | |
tree | 6fd39aa8a70e2b5e82c0bce4db55ad96c1c9741b /docs/docs_vfw.rst | |
parent | b9e219fd80179c53f4aceb1326126facc38c2499 (diff) |
Fix path to images in scale out doc
Change-Id: Ib923adec90f3c9493fcc957746f23ff6aac478d3
Issue-ID: INT-1104
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'docs/docs_vfw.rst')
-rw-r--r-- | docs/docs_vfw.rst | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/docs/docs_vfw.rst b/docs/docs_vfw.rst index bb57c6ae3..373348644 100644 --- a/docs/docs_vfw.rst +++ b/docs/docs_vfw.rst @@ -6,11 +6,11 @@ vFirewall Use Case Source files ~~~~~~~~~~~~ -- vFirewall/vSink template file: https://git.onap.org/demo/plain/heat/vFWCL/vFWSNK/base_vfw.yaml -- vFirewall/vSink environment file: https://git.onap.org/demo/plain/heat/vFWCL/vFWSNK/base_vfw.env +- vFirewall/vSink template file: https://git.onap.org/demo/tree/heat/vFWCL/vFWSNK/base_vfw.yaml?h=dublin +- vFirewall/vSink environment file: https://git.onap.org/demo/tree/heat/vFWCL/vFWSNK/base_vfw.env?h=dublin -- vPacketGenerator template file: https://git.onap.org/demo/plain/heat/vFWCL/vPKG/base_vpkg.yaml -- vPacketGenerator environment file: https://git.onap.org/demo/plain/heat/vFWCL/vPKG/base_vpkg.env +- vPacketGenerator template file: https://git.onap.org/demo/tree/heat/vFWCL/vPKG/base_vpkg.env?h=dublin +- vPacketGenerator environment file: https://git.onap.org/demo/tree/heat/vFWCL/vPKG/base_vpkg.env?h=dublin VVP Report ~~~~~~~~~~ @@ -51,18 +51,22 @@ The packet generator contains 10 streams: fw_udp1, fw_udp2, fw_udp3, ..., fw_udp per 10 seconds. A script in /opt/run_traffic_fw_demo.sh on the packet generator VM starts automatically and alternates high traffic (i.e. 10 active streams at the same time) and low traffic (1 active stream) every 5 minutes. -To enable a stream, include - -:: - - {"id":"fw_udp1", "is-enabled":"true"} in the pg-stream bracket - To adjust the traffic volume produced by the packet generator, run the following command in a shell, replacing PacketGen_IP in the HTTP argument with localhost (if you run it in the packet generator VM) or the packet generator IP address: :: - curl -X PUT -H "Authorization: Basic YWRtaW46YWRtaW4=" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -d '{"pg-streams":{"pg-stream": [{"id":"fw_udp1", "is-enabled":"true"},{"id":"fw_udp2", "is-enabled":"true"},{"id":"fw_udp3", "is-enabled":"true"},{"id":"fw_udp4", "is-enabled":"true"},{"id":"fw_udp5", "is-enabled":"true"}]}}' "http://PacketGen_IP:8183/restconf/config/sample-plugin:sample-plugin/pg-streams" + curl -X PUT \ + https://PacketGen_IP:8445/restconf/config/stream-count:stream-count/streams \ + -H 'Accept: application/json' \ + -H 'Content-Type: application/json' \ + -H 'Postman-Token: 88610924-938b-4d64-a682-0b0aabed4a6d' \ + -H 'cache-control: no-cache' \ + -d '{ + "streams": { + "active-streams": 5 + }}' + The command above enables 5 streams. |