mirror of
https://github.com/ansible-collections/community.routeros.git
synced 2025-06-22 09:53:32 +02:00
Add support for "ip firewall layer7-protocol" (#153)
* Add support for "ip firewall layer7-protocol" * Add changelog fragment * Add changelog fragment
This commit is contained in:
parent
bbf5be5d71
commit
ab87a27018
4 changed files with 13 additions and 0 deletions
2
changelogs/fragments/153-ip_firewall_layer7-protocol.yml
Normal file
2
changelogs/fragments/153-ip_firewall_layer7-protocol.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
minor_changes:
|
||||
- api_modify - support API paths ``ip firewall layer7-protocol`` (https://github.com/ansible-collections/community.routeros/pull/153).
|
|
@ -2759,6 +2759,15 @@ PATHS = {
|
|||
'sip-timeout': KeyInfo(),
|
||||
},
|
||||
),
|
||||
('ip', 'firewall', 'layer7-protocol'): APIData(
|
||||
primary_keys=('name', ),
|
||||
fully_understood=True,
|
||||
fields={
|
||||
'comment': KeyInfo(can_disable=True, remove_value=''),
|
||||
'name': KeyInfo(),
|
||||
'regexp': KeyInfo(),
|
||||
},
|
||||
),
|
||||
('ip', 'hotspot', 'service-port'): APIData(
|
||||
fixed_entries=True,
|
||||
primary_keys=('name', ),
|
||||
|
|
|
@ -102,6 +102,7 @@ options:
|
|||
- ip firewall nat
|
||||
- ip firewall raw
|
||||
- ip firewall service-port
|
||||
- ip firewall layer7-protocol
|
||||
- ip hotspot service-port
|
||||
- ip ipsec identity
|
||||
- ip ipsec peer
|
||||
|
|
|
@ -107,6 +107,7 @@ options:
|
|||
- ip firewall nat
|
||||
- ip firewall raw
|
||||
- ip firewall service-port
|
||||
- ip firewall layer7-protocol
|
||||
- ip hotspot service-port
|
||||
- ip ipsec identity
|
||||
- ip ipsec peer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue