Users Guide

Table Of Contents
"@Message.ExtendedInfo": [
{
"MessageId": "CTEM1043",
"RelatedProperties": [],
"Message": "Unable to create or update the network because the entered
VLAN minimum 0 (unsure of what the 0 refers to)
is not within a valid range ( 1 - 4000 or 4021 - 4094 ).",
"MessageArgs": [
"0",
"1",
"4000",
"4021",
"4094"
],
"Severity": "Warning",
"Resolution": "Enter a valid VLAN minimum as identified in the message
and retry the operation."
Enter a valid minimum VLAN ID as identified in the message and retry the operation."
}
]
}
Examples
- name: Create a VLAN range
dellemc.openmanage.ome_network_vlan:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: present
name: "vlan1"
description: "VLAN desc"
type: "General Purpose (Bronze)"
vlan_minimum: 35
vlan_maximum: 40
tags: create_vlan_range
- name: Create a VLAN with a single value
dellemc.openmanage.ome_network_vlan:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: present
name: "vlan2"
description: "VLAN desc"
type: "General Purpose (Bronze)"
vlan_minimum: 127
vlan_maximum: 127
tags: create_vlan_single
- name: Modify a VLAN
dellemc.openmanage.ome_network_vlan:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: present
name: "vlan1"
new_name: "vlan_gold1"
description: "new description"
type: "General Purpose (Gold)"
vlan_minimum: 45
vlan_maximum: 50
tags: modify_vlan
- name: Delete a VLAN
dellemc.openmanage.ome_network_vlan:
hostname: "{{hostname}}"
username: "{{username}}"
password: "{{password}}"
state: "absent"
name: "vlan1"
tags: delete_vlan
Modules for OpenManage Enterprise (OME)
127