Serial over LAN Policy
A Serial over LAN Policy configures the SOL service on UCS servers, enabling out-of-band serial console access over the network via SSH.
Location in Intersight GUI:
Policies » Serial over LAN
Diagram
Section titled “Diagram”Classes
Section titled “Classes”policies (compute.intersight.organizations)
Section titled “policies (compute.intersight.organizations)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| serial_over_lan | List | [serial_over_lan] | No |
serial_over_lan (compute.intersight.organizations.policies)
Section titled “serial_over_lan (compute.intersight.organizations.policies)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: ^[a-zA-Z0-9_.:-]{1,64}$ | Yes | |
| description | String | No | ||
| managed | Boolean | true, false | No | true |
| tags | List | [tags] | No | |
| enabled | Boolean | true, false | No | true |
| baud_rate | Choice | 9600, 19200, 38400, 57600, 115200 | No | 9600 |
| com_port | Choice | com0, com1 | No | com0 |
| ssh_port | Integer | min: 1024, max: 65535 | No | 2400 |
tags (compute.intersight.organizations.policies.serial_over_lan)
Section titled “tags (compute.intersight.organizations.policies.serial_over_lan)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| key | String | Yes | ||
| value | String | Yes |
Examples
Section titled “Examples”Example-1: Configure a SOL policy with default settings and environment tags.
compute: intersight: organizations: - name: MyOrg policies: serial_over_lan: - name: MySolPolicy enabled: true baud_rate: 9600 com_port: com0 ssh_port: 2400 tags: - key: env value: prodExample-2: Configure SOL with a higher baud rate for faster serial output.
compute: intersight: organizations: - name: MyOrg policies: serial_over_lan: - name: MySolHighSpeed enabled: true baud_rate: 115200 com_port: com0 ssh_port: 2400Example-3: Disable SOL access on a policy for servers that do not require it.
compute: intersight: organizations: - name: MyOrg policies: serial_over_lan: - name: MySolDisabled enabled: false