cisco.ucs.ucs_serial_over_lan_policy module – Manages UCS Serial Over Lan Policies on UCS Manager
Note
This module is part of the cisco.ucs collection (version 1.16.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install cisco.ucs.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: cisco.ucs.ucs_serial_over_lan_policy.
Synopsis
- Manages UCS Serial Over Lan Policies on UCS Manager. 
Requirements
The below requirements are needed on the host that executes this module.
- ucsmsdk 
Parameters
| Parameter | Comments | 
|---|---|
| The administrative state of the serial over lan policy. disable Serial over LAN access is blocked. enable Serial over LAN access is permitted. Choices: 
 | |
| A user-defined description of the serial over lan policy. Enter up to 256 characters. You can use any characters or spaces except the following: ` (accent mark), (backslash), ^ (carat), ” (double quote) = (equal sign), > (greater than), < (less than), ‘ (single quote). | |
| IP address or hostname of Cisco UCS Manager. Modules can be used with the UCS Platform Emulator https://cs.co/ucspe | |
| The name of the serial over lan policy. Enter up to 16 characters. You can use any characters or spaces except the following: ` (accent mark), (backslash), ^ (carat), ” (double quote) = (equal sign), > (greater than), < (less than), ‘ (single quote). | |
| Org dn (distinguished name) of the serial over lan policy. Default:  | |
| Password for Cisco UCS Manager authentication. | |
| Port number to be used during connection (by default uses 443 for https and 80 for http connection). | |
| If use_proxy is no, specfies proxy to be used for connection. e.g. ‘http://proxy.xy.z:8080’ | |
| The transmission speed of the serial over lan policy. Choices: 
 | |
| If  If  Choices: 
 | |
| If  Choices: 
 | |
| If  Choices: 
 | |
| Username for Cisco UCS Manager authentication. Default:  | 
Examples
- name: Add UCS Serial Over Lan Policy
  cisco.ucs.ucs_serial_over_lan:
    hostname: "{{ ucs_hostname }}"
    username: "{{ ucs_username }}"
    password: "{{ ucs_password }}"
    state: present
    name: sol_org_root
    description: Serial Over Lan for Org root servers
    admin_state: enable
    speed: 115200
  delegate_to: localhost
- name: Add UCS Serial Over Lan Policy in Organization
  cisco.ucs.ucs_serial_over_lan:
    hostname: "{{ ucs_hostname }}"
    username: "{{ ucs_username }}"
    password: "{{ ucs_password }}"
    state: present
    org_dn: org-root/org-prod
    name: sol_org_prod
    description: Serial Over Lan for Org Prod servers
    admin_state: enable
    speed: 115200
  delegate_to: localhost
- name: Update UCS Serial Over Lan Policy in Organization
  cisco.ucs.ucs_serial_over_lan:
    hostname: "{{ ucs_hostname }}"
    username: "{{ ucs_username }}"
    password: "{{ ucs_password }}"
    state: present
    org_dn: org-root/org-prod
    name: sol_org_prod
    description: Serial Over Lan for Org Prod servers
    admin_state: enable
    speed: 38400
  delegate_to: localhost
- name: Update UCS Serial Over Lan Policy in Organization
  cisco.ucs.ucs_serial_over_lan:
    hostname: "{{ ucs_hostname }}"
    username: "{{ ucs_username }}"
    password: "{{ ucs_password }}"
    state: present
    org_dn: org-root/org-prod
    name: sol_org_prod
    descr: Serial Over Lan for Org Prod servers
    admin_state: enable
    speed: 57600
  delegate_to: localhost
- name: Delete UCS Serial Over Lan Policy in Organization
  cisco.ucs.ucs_serial_over_lan:
    hostname: "{{ ucs_hostname }}"
    username: "{{ ucs_username }}"
    password: "{{ ucs_password }}"
    state: absent
    org_dn: org-root/org-prod
    name: sol_org_prod
  delegate_to: localhost
- name: Delete UCS Serial Over Lan Policy
  cisco.ucs.ucs_serial_over_lan:
    hostname: "{{ ucs_hostname }}"
    username: "{{ ucs_username }}"
    password: "{{ ucs_password }}"
    state: absent
    name: sol_org_root
  delegate_to: localhost
