7307339a7e
* Added nxos_acls module * Adding tests * Added integration tests * Integration tests update * Updated documentation * Replaced state changes * Added warning detection * Added port-protocol mapping * Added change * Merge update changes * Completed integration tests, rtt * Added unit tests * Linting Added metaclass info * Changed port protocol to str * Fixed shippable errors, added examples * Fixed type error, updated examples
15 lines
454 B
YAML
15 lines
454 B
YAML
---
|
|
- name: Add configuration
|
|
cli_config:
|
|
config: |
|
|
ip access-list ACL1v4
|
|
10 permit ip any any
|
|
20 deny udp any any
|
|
ip access-list ACL2v4
|
|
10 permit ahp 192.0.2.0 0.0.0.255 any
|
|
ipv6 access-list ACL1v6
|
|
10 permit sctp any any
|
|
20 remark IPv6 ACL
|
|
ipv6 access-list ACL2v6
|
|
10 deny ipv6 any host 2001:db8:3000::36
|
|
20 permit tcp host 2001:db8:2000:2::2 host 2001:db8:2000:ab::2
|