Files
toallab-automation/reset_port.yml
2019-09-17 23:50:57 -04:00

17 lines
306 B
YAML

- name: Reset Port
hosts: switch01
become_method: enable
connection: network_cli
gather_facts: no
tasks:
- name: Shut down port
ios_interface:
name: Gigabit2/0/13
state: down
- name: Bring up port
ios_interface:
name: Gigabit2/0/13
state: up