We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Arista traffic policy currently generates space-separated ports in match conditions, causing commit failures. This should be comma-separated.
"protocol tcp source port 1024-65535 destination port 49 2824 3502 3524 2800-2801"
"protocol tcp source port 1024-65535 destination port 49, 2824, 3502, 3524, 2800-2801"
lab-device(config-traffic-policy-match-test-test-ipv4)#protocol tcp source port 50 ? destination Destination , extend list - specify range <cr> lab-device(config-traffic-policy-match-test-test-ipv4)#protocol tcp source port 50 100 200 % Invalid input lab-device(config-traffic-policy-match-test-test-ipv4)#protocol tcp source port 50, 100, 200 lab-device(config-traffic-policy-match-test-test-ipv4)#
Reference: https://www.arista.com/en/support/toi/eos-4-24-2f/14550-support-for-traffic-policy-on-interfaces
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Arista traffic policy currently generates space-separated ports in match conditions, causing commit failures. This should be comma-separated.
Current (incorrect) policy:
Required (correct) policy:
Lab test:
Reference: https://www.arista.com/en/support/toi/eos-4-24-2f/14550-support-for-traffic-policy-on-interfaces
The text was updated successfully, but these errors were encountered: