diff options
| author | Nataliia S. <81954790+natali-rs1985@users.noreply.github.com> | 2026-02-12 15:13:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-12 13:13:01 +0000 |
| commit | 417161e8bf85d07cd8c9744a8230dfa3e0af7ba3 (patch) | |
| tree | acb89dcb3241af6f4e5dc0660010e12d908faa8c | |
| parent | d252521e0d52bfab2fed6c522317686e076ec420 (diff) | |
| download | vyos-documentation-417161e8bf85d07cd8c9744a8230dfa3e0af7ba3.tar.gz vyos-documentation-417161e8bf85d07cd8c9744a8230dfa3e0af7ba3.zip | |
vpp: T8250: CLI changes for ACL tcp-flags (#1763)
| -rw-r--r-- | docs/vpp/configuration/acl.rst | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/docs/vpp/configuration/acl.rst b/docs/vpp/configuration/acl.rst index 1e32a2ab..9aaacb3a 100644 --- a/docs/vpp/configuration/acl.rst +++ b/docs/vpp/configuration/acl.rst @@ -136,16 +136,10 @@ For TCP protocol rules, you can match specific TCP flags: .. code-block:: none # Match packets with specific flags set - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags ack - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags fin - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags psh - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags rst - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags syn - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags urg + set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags is-set <ack|cwr|ecn|fin|psh|rst|syn|urg> # Match packets without specific flags set - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags not ack - set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags not syn + set vpp acl ip tag-name <tag-name> rule <rule-number> tcp-flags is-not-set <ack|cwr|ecn|fin|psh|rst|syn|urg> IP ACL Configuration Examples ----------------------------- |
