mirror of
https://github.com/openvswitch/ovs
synced 2025-10-15 14:17:18 +00:00
Add a section that gives a quick introduction to applying ACLs. It discusses how the ACLs are translated into OVN logical flows. It doesn't get down to the OpenFlow level because that's not supported in ovs-sandbox yet. Instead, it provides a reference to an OpenStack related blog post that talks about how OVN ACLs are used there and gives examples of the resulting OpenFlow flows. In theory, once we have a userspace conntrack implementation available, we'll be able to provide better suppot for it in ovs-sandbox. Signed-off-by: Russell Bryant <rbryant@redhat.com> Acked-by: Kyle Mestery <mestery@mestery.com>
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
docs += \
|
|
tutorial/Tutorial.md \
|
|
tutorial/OVN-Tutorial.md
|
|
EXTRA_DIST += \
|
|
tutorial/ovs-sandbox \
|
|
tutorial/t-setup \
|
|
tutorial/t-stage0 \
|
|
tutorial/t-stage1 \
|
|
tutorial/t-stage2 \
|
|
tutorial/t-stage3 \
|
|
tutorial/t-stage4 \
|
|
tutorial/ovn/env1/setup.sh \
|
|
tutorial/ovn/env1/packet1.sh \
|
|
tutorial/ovn/env1/packet2.sh \
|
|
tutorial/ovn/env1/add-third-port.sh \
|
|
tutorial/ovn/env2/setup.sh \
|
|
tutorial/ovn/env2/packet1.sh \
|
|
tutorial/ovn/env2/packet2.sh \
|
|
tutorial/ovn/env3/setup.sh \
|
|
tutorial/ovn/env3/packet1.sh \
|
|
tutorial/ovn/env3/packet2.sh \
|
|
tutorial/ovn/env4/setup1.sh \
|
|
tutorial/ovn/env4/setup2.sh \
|
|
tutorial/ovn/env4/packet1.sh \
|
|
tutorial/ovn/env4/packet2.sh \
|
|
tutorial/ovn/env4/packet3.sh \
|
|
tutorial/ovn/env4/packet4.sh \
|
|
tutorial/ovn/env4/packet5.sh \
|
|
tutorial/ovn/env5/setup.sh \
|
|
tutorial/ovn/env5/packet1.sh \
|
|
tutorial/ovn/env5/packet2.sh \
|
|
tutorial/ovn/env6/setup.sh \
|
|
tutorial/ovn/env6/add-acls.sh
|
|
|
|
sandbox: all
|
|
cd $(srcdir)/tutorial && MAKE=$(MAKE) ./ovs-sandbox -b $(abs_builddir) $(SANDBOXFLAGS)
|