mirror of
https://github.com/openvswitch/ovs
synced 2025-10-27 15:18:06 +00:00
Documentation: Update Faucet tutorial.
Drop use of minimum_ip_size_check in Faucet tutorial which is no longer needed after we fixed a bug that was causing packet length checks to be calculated wrong. Signed-off-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
@@ -908,11 +908,7 @@ Now let's start over, adding L3 routing into the picture.
|
|||||||
|
|
||||||
It's remarkably easy to enable routing. We just change our ``vlans``
|
It's remarkably easy to enable routing. We just change our ``vlans``
|
||||||
section in ``inst/faucet.yaml`` to specify a router IP address for
|
section in ``inst/faucet.yaml`` to specify a router IP address for
|
||||||
each VLAN and define a router between them. For our example we need to
|
each VLAN and define a router between them. The ``dps`` section is unchanged::
|
||||||
set ``minimum_ip_size_check`` to ``False``, this will disable a sanity
|
|
||||||
check in Faucet that will allow it to accept packets generated by
|
|
||||||
``ofproto/trace``, normally in production you would not turn this off.
|
|
||||||
The ``dps`` section is unchanged::
|
|
||||||
|
|
||||||
dps:
|
dps:
|
||||||
switch-1:
|
switch-1:
|
||||||
@@ -933,10 +929,8 @@ The ``dps`` section is unchanged::
|
|||||||
vlans:
|
vlans:
|
||||||
100:
|
100:
|
||||||
faucet_vips: ["10.100.0.254/24"]
|
faucet_vips: ["10.100.0.254/24"]
|
||||||
minimum_ip_size_check: False
|
|
||||||
200:
|
200:
|
||||||
faucet_vips: ["10.200.0.254/24"]
|
faucet_vips: ["10.200.0.254/24"]
|
||||||
minimum_ip_size_check: False
|
|
||||||
routers:
|
routers:
|
||||||
router-1:
|
router-1:
|
||||||
vlans: [100, 200]
|
vlans: [100, 200]
|
||||||
@@ -1314,10 +1308,8 @@ the ways that OVS tries to optimize megaflows. Update
|
|||||||
vlans:
|
vlans:
|
||||||
100:
|
100:
|
||||||
faucet_vips: ["10.100.0.254/24"]
|
faucet_vips: ["10.100.0.254/24"]
|
||||||
minimum_ip_size_check: False
|
|
||||||
200:
|
200:
|
||||||
faucet_vips: ["10.200.0.254/24"]
|
faucet_vips: ["10.200.0.254/24"]
|
||||||
minimum_ip_size_check: False
|
|
||||||
routers:
|
routers:
|
||||||
router-1:
|
router-1:
|
||||||
vlans: [100, 200]
|
vlans: [100, 200]
|
||||||
|
|||||||
Reference in New Issue
Block a user