Specific vendor OUI
Retrieve a specific vendor OUI.
URL = https://<servername>:8443/api/vendoroui/{id}
Return value |
Type |
Description |
---|---|---|
id |
Integer |
Vendor OUI record ID |
oui |
String |
Organizationally unique identifier |
name |
String |
Vendor name |
alias |
String |
Alternate name |
description |
String |
Description |
registration type |
Integer |
Type of device registration that is specified through the AutoDef Synchronization. Assigned to devices registered via the Portal page. |
userRegistrationType |
Integer |
Overrides the type of device registration that is specified through the AutoDef Synchronization. Assigned to devices registered via the Portal page |
role |
String |
Role assigned to devices registered via the Portal page. |
Example request
curl -k -u '<username>:<password>' -H "accept: application/xml" -X GET https://<servername>:8443/api/vendoroui/1
Example XML format
<vendorOuiResult>
<status>success</status>
<errorMessage></errorMessage>
<vendorOui>
<id>30</id>
<oui>00:00:1D</oui>
<name>Cabletron Systems, Inc.</name>
<alias>ctron</alias>
<description>Cabletron/Enterasys</description>
<role>NAC-Default</role>
<registrationType>0</registrationType>
<userRegistrationType>0</userRegistrationType>
</vendorOui>
</vendorOuiResult>