-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Labels
bugThis issue/PR relates to a bug.This issue/PR relates to a bug.has_prThis issue has an associated PR.This issue has an associated PR.
Description
Issue Summary
When trying to create ACLs on EOS using arista.eos_acls tcp or udp ports are always attempted to be resolved to their IANA assigned names which may or may not work
Steps to reproduce
example_playbok:
- hosts: 10.83.13.214
gather_facts: no
vars:
acls:
- acls:
- aces:
- destination:
host: 192.168.150.1
grant: permit
log: true
protocol: tcp
sequence: 15
source:
host: 192.168.1.1
port_protocol:
eq: '8082'
name: acl-test
afi: ipv4
tasks:
- name: Push acls to device
arista.eos.eos_acls:
state: replaced
config: "{{ acls }}"Output:
TASK [Push acls to device] ************************************************************************************
Saturday 12 August 2023 01:53:47 +0100 (0:00:00.134) 0:00:00.134 *******
fatal: [10.83.13.214]: FAILED! => changed=false
module_stderr: 'Invalid input (at token 6: ''us-cli'')'
module_stdout: ''
msg: |-
MODULE FAILURE
See stdout/stderr for the exact errorquick python test:
>>> import socket
>>> val = 8082
>>> socket.getservbyport(int(val))
'us-cli'
>>>
EOS does not have all the IANA port to name mappings so it is discouraged to always try to resolve port numbers!
Reference line of code where the bug is: https://github.com/ansible-collections/arista.eos/blob/a7c6c6a0a5caa9bea252ca93d4c3fffedc7e1813/plugins/module_utils/network/eos/config/acls/acls.py#L530C1-L531C65
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugThis issue/PR relates to a bug.This issue/PR relates to a bug.has_prThis issue has an associated PR.This issue has an associated PR.