Skip to content

Commit

Permalink
change ports to non well known ports and drop time_range for N1 (#31261)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahushen authored and trishnaguha committed Oct 11, 2017
1 parent 748adf7 commit c976ac7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/integration/targets/nxos_acl/tests/common/sanity.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_acl sanity test"

- set_fact: time_range="ans-range"
when: not (platform | match("N5K"))

- name: "Setup: Cleanup possibly existing acl."
nxos_acl: &remove
name: TEST_ACL
Expand All @@ -17,8 +20,8 @@
proto: tcp
src: 1.1.1.1/24
src_port_op: range
src_port1: 5
src_port2: 20
src_port1: 1900
src_port2: 1910
ack: 'enable'
dscp: 'af43'
dest: any
Expand All @@ -29,7 +32,7 @@
fin: 'enable'
rst: 'enable'
syn: 'enable'
time_range: 'ans-range'
time_range: "{{time_range|default(omit)}}"
state: present
provider: "{{ connection }}"
register: result
Expand Down

0 comments on commit c976ac7

Please sign in to comment.