[networking] RFC 5737: sfc

Replaces non-compliant subnets in:

config-sfc.rst

Change-Id: Id7e4d3d126da8eb0994d060eae28eef3c623213a
Partial-Bug: #1656378
This commit is contained in:
caoyuan 2017-03-03 00:20:11 +08:00 committed by John Davidge
parent 1a044ca498
commit 3f5495bb2a
1 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ Create a port chain
The following example uses the ``neutron`` command-line interface (CLI) to
create a port chain consisting of three service function instances to handle
HTTP (TCP) traffic flows from 192.168.1.11:1000 to 192.168.2.11:80.
HTTP (TCP) traffic flows from 192.0.2.11:1000 to 198.51.100.11:80.
* Instance 1
@ -231,10 +231,10 @@ HTTP (TCP) traffic flows from 192.168.1.11:1000 to 192.168.2.11:80.
.. code-block:: console
$ neutron flow-classifier-create \
--description "HTTP traffic from 192.168.1.11 to 192.168.2.11" \
--description "HTTP traffic from 192.0.2.11 to 198.51.100.11" \
--ethertype IPv4 \
--source-ip-prefix 192.168.1.11/32 \
--destination-ip-prefix 192.168.2.11/32 \
--source-ip-prefix 192.0.2.11/32 \
--destination-ip-prefix 198.51.100.11/32 \
--protocol tcp \
--source-port 1000:1000 \
--destination-port 80:80 FC1