Skip to content

Latest commit

 

History

History
106 lines (80 loc) · 3.39 KB

comware_radius_module.rst

File metadata and controls

106 lines (80 loc) · 3.39 KB

comware_radius

Added in version 1.8

create radius scheme

parameter required default choices comments
radius_scheme yes Specify RADIUS scheme
state no present
  • present
  • absent
  • default
Desired state for the interface configuration
hostname yes IP Address or hostname of the Comware v7 device that has NETCONF enabled
username yes Username used to login to the switch
password yes Password used to login to the switch
port no 830 The Comware port used to connect to the switch
look_for_keys no False Whether searching for discoverable private key files in ~/.ssh/


# Basic radius config
- comware_radius: radius_scheme=test username={{ username }} password={{ password }} hostname={{ inventory_hostname }}

# Delete radius config
- comware_radius: radius_scheme=test state=default username={{ username }} password={{ password }} hostname={{ inventory_hostname }}

Note