The DenyService class is a type of service that rejects connections with a predefined error code. DenyServices can be specified in the service parameter of Rules. If the rule referencing the DenyService matches a connection request, the connection is rejected. DenyService is a replacement for the obsolete Umbrella zone concept.
| Example 5.36. A simple DenyService |
|---|
|
The following defines a DenyService and a rule to reject all traffic that targets port 5555. def demo() :
DenyService(name='DenyService', ipv4_setting=DenyIPv4.DROP, ipv6_setting=DenyIPv6.DROP)
Rule(dst_port=5555,
service='DenyService'
)
|
Copyright: © 2021 Balasys IT Security
Send your comments to support@balasys.hu


