Virtual KVM Policy
A Virtual KVM Policy controls the KVM (Keyboard, Video, Mouse) console access to UCS servers managed by Intersight, including session limits, port, video encryption, and tunneled access settings.
Location in Intersight GUI:
Policies » Virtual KVM
Diagram
Section titled “Diagram”Classes
Section titled “Classes”policies (compute.intersight.organizations)
Section titled “policies (compute.intersight.organizations)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| virtual_kvm | List | [virtual_kvm] | No |
virtual_kvm (compute.intersight.organizations.policies)
Section titled “virtual_kvm (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 |
| maximum_sessions | Integer | min: 1, max: 4 | No | 4 |
| remote_port | Integer | min: 1024, max: 65535 | No | 2069 |
| video_encryption | Boolean | true, false | No | true |
| local_server_video | Boolean | true, false | No | true |
| tunneled_kvm | Boolean | true, false | No | false |
tags (compute.intersight.organizations.policies.virtual_kvm)
Section titled “tags (compute.intersight.organizations.policies.virtual_kvm)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| key | String | Yes | ||
| value | String | Yes |
Examples
Section titled “Examples”Example-1: Configure a Virtual KVM policy with default settings and tunneled access enabled.
compute: intersight: organizations: - name: MyOrg policies: virtual_kvm: - name: MyKvmPolicy enabled: true tunneled_kvm: true tags: - key: env value: prodExample-2: Configure a restrictive KVM policy allowing only one session with encryption enforced.
compute: intersight: organizations: - name: MyOrg policies: virtual_kvm: - name: RestrictedKvmPolicy enabled: true maximum_sessions: 1 video_encryption: true local_server_video: false tunneled_kvm: false