cancel
Showing results for 
Search instead for 
Did you mean: 

XMC Topology Layer

XMC Topology Layer

Holger_Gmerek
New Contributor III
In XMC in the 'Configure Device' widget, there is an option for the 'Topology Layer'.
What does this field do ??? Is it some where groupable or searchable ??
It would be nice if we could declare our device a "Layer 3" and do the mapping by e.g routing protocols.

Greetings
4 REPLIES 4

Zdeněk_Pala
Extreme Employee
Example of graphQL query you can use in your script/workflow to understand the configured topology:
query{
network {
device(ip:"192.168.130.36") {
deviceData {
topologyRole
}
}
}
}


response:
{
"data": {
"network": {
"device": {
"deviceData": {
"topologyRole": "11"
}
}
}
}
}


3ff5739434ac4e81860e0d0a3ec2b372_143c3e88-a668-4919-9bab-b618b7d28b2c.png

Regards Zdeněk Pala

Zdeněk_Pala
Extreme Employee
Here is example:


When you discover the device you can assign topology.

0272f102af154c2594c1b2efa2e00480_f384b950-8a8d-4a21-9ebb-1c29c8988f33.png




In Actions you can define aditional scripts what will be executed based on the topology.

0272f102af154c2594c1b2efa2e00480_aac5757a-7002-45b4-a6e9-a46682f3670b.png

Regards Zdeněk Pala

Holger_Gmerek
New Contributor III
If you could provide an example, that would be nice.

Greetings Holger

Zdeněk_Pala
Extreme Employee
You can assign the value and you can use this value in scripts/workflows/ZTP process
Regards Zdeněk Pala
GTM-P2G8KFN