diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-13 07:22:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-13 07:22:30 +0200 |
commit | f1eb14c7e97e79dbaeac67c31e3d2b8737c6e2df (patch) | |
tree | 1057bb0a72c82a61389a1ad84e5dd7d7ed94ac26 /docs/configuration/firewall/global-options.rst | |
parent | 03b87236bb358058f6e23b682676b43387319055 (diff) | |
parent | 8118c93687b89e267111069c475e02f8e89f648c (diff) | |
download | vyos-documentation-f1eb14c7e97e79dbaeac67c31e3d2b8737c6e2df.tar.gz vyos-documentation-f1eb14c7e97e79dbaeac67c31e3d2b8737c6e2df.zip |
Merge pull request #1478 from nicolas-fort/T3900-fwall-raw-tables
Firewall: Add prerouting information
Diffstat (limited to 'docs/configuration/firewall/global-options.rst')
-rw-r--r-- | docs/configuration/firewall/global-options.rst | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/configuration/firewall/global-options.rst b/docs/configuration/firewall/global-options.rst index b3f311aa..7c52045e 100644 --- a/docs/configuration/firewall/global-options.rst +++ b/docs/configuration/firewall/global-options.rst @@ -145,3 +145,35 @@ Configuration [emerg | alert | crit | err | warn | notice | info | debug] Set the global setting for related connections. + +VyOS supports setting timeouts for connections according to the +connection type. You can set timeout values for generic connections, for ICMP +connections, UDP connections, or for TCP connections in a number of different +states. + +.. cfgcmd:: set firewall global-options timeout icmp <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout other <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp close <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp close-wait <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp established <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp fin-wait <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp last-ack <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp syn-recv <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp syn-sent <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout tcp time-wait <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout udp other <1-21474836> + :defaultvalue: +.. cfgcmd:: set firewall global-options timeout udp stream <1-21474836> + :defaultvalue: + + Set the timeout in seconds for a protocol or state.
\ No newline at end of file |