diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-26 13:21:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-26 13:21:27 +0100 |
commit | 5e60a5996221ec73a5eab2be4e9f79361027f1cd (patch) | |
tree | 1c77e30386e8124546a2a3707999934e9b1c351b /docs/configuration/firewall/global-options.rst | |
parent | be266ef7b7514b7336e26fbde35cbe034017ed8c (diff) | |
parent | 0c5e77aea59cbb50af527c59770584d232c97f52 (diff) | |
download | vyos-documentation-5e60a5996221ec73a5eab2be4e9f79361027f1cd.tar.gz vyos-documentation-5e60a5996221ec73a5eab2be4e9f79361027f1cd.zip |
Merge pull request #1203 from nicolas-fort/flowtabe-docs
Add configuration commands and brief example of firewall Flowtables. …
Diffstat (limited to 'docs/configuration/firewall/global-options.rst')
-rw-r--r-- | docs/configuration/firewall/global-options.rst | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/docs/configuration/firewall/global-options.rst b/docs/configuration/firewall/global-options.rst index 316e0802..455e530b 100644 --- a/docs/configuration/firewall/global-options.rst +++ b/docs/configuration/firewall/global-options.rst @@ -1,4 +1,4 @@ -:lastproofread: 2023-11-07 +:lastproofread: 2023-12-026 .. _firewall-global-options-configuration: @@ -114,4 +114,34 @@ Configuration Enable or Disable VyOS to be :rfc:`1337` conform. The following system parameter will be altered: - * ``net.ipv4.tcp_rfc1337``
\ No newline at end of file + * ``net.ipv4.tcp_rfc1337`` + +.. cfgcmd:: set firewall global-options state-policy established action + [accept | drop | reject] + +.. cfgcmd:: set firewall global-options state-policy established log + +.. cfgcmd:: set firewall global-options state-policy established log-level + [emerg | alert | crit | err | warn | notice | info | debug] + + Set the global setting for an established connection. + +.. cfgcmd:: set firewall global-options state-policy invalid action + [accept | drop | reject] + +.. cfgcmd:: set firewall global-options state-policy invalid log + +.. cfgcmd:: set firewall global-options state-policy invalid log-level + [emerg | alert | crit | err | warn | notice | info | debug] + + Set the global setting for invalid packets. + +.. cfgcmd:: set firewall global-options state-policy related action + [accept | drop | reject] + +.. cfgcmd:: set firewall global-options state-policy related log + +.. cfgcmd:: set firewall global-options state-policy related log-level + [emerg | alert | crit | err | warn | notice | info | debug] + + Set the global setting for related connections. |