Files
cupcontrol/scp_core/docs/FirewallRule.md
2025-12-25 13:59:50 +01:00

1.9 KiB

FirewallRule

Properties

Name Type Description Notes
number_of_effective_rules Option<i32> [optional]
description Option<String> [optional]
direction models::FirewallRuleDirection
protocol models::FirewallProtocol
action models::FirewallAction
sources Option<Vec> Valid configurations are any IP (null or empty array), IPv4/IPv6 address (f.e. 192.168.10.1 or 0092:e10f:cb66:35a9::) or IPv4 network / IPv6 prefix (f.e. 192.168.10.0/24 or 0092:e10f:cb66:35a9::/64). If more than one IP/network is specified for the source, the destination must be empty (any) or contain only a single IP/network. If IPv4 addresses and IPv6 addresses are mixed in sources, destinations must empty (any). [optional]
source_ports Option<String> Valid configurations are any port (null), single port (f.e. 1234) or port range (f.e. 1024-65535). [optional]
destinations Option<Vec> Valid configurations are any IP (null or empty array), IPv4/IPv6 address (f.e. 192.168.10.1 or 0092:e10f:cb66:35a9::) or IPv4 network / IPv6 prefix (f.e. 192.168.10.0/24 or 0092:e10f:cb66:35a9::/64). If more than one IP/network is specified for the destination, the source must be empty (any) or contain only a single IP/network. If IPv4 addresses and IPv6 addresses are mixed in destinations, sources must be empty (any). [optional]
destination_ports Option<String> Valid configurations are any port (null), single port (f.e. 1234) or port range (f.e. 1024-65535). [optional]

[Back to Model list] [Back to API list] [Back to README]