Concept Guide

Table Of Contents
Leaf:
In SFS, the two leaf switches are automatically configured as a VLT pair.
OS10(config)# smartfabric l3fabric enable role LEAF vlti ethernet 1/1/4-1/1/5
Reboot to change the personality? [yes/no]: yes
In the above example, the Ethernet interfaces 1/1/4 and 1/1/5 are the VLTi interfaces.
In Isilon or PowerScale back-end deployments, when enabling SFS in a leaf and spine topology, no VLTi configuration is required
for the leaf switch. To set the leaf role for a switch, use the smartfabric l3fabric enable role LEAF command
without the VLTi parameters.
Enable SFS using RESTCONF API
You can enable SFS on OS10 switches using the RESTCONF API. For more information regarding general RESTCONF API
operations, see Dell EMC SmartFabric OS10 User Guide.
Description Enables SFS on the switches with leaf and spine roles.
RESTCONF
endpoint
/restconf/data/dell-smart-fabric:config-personality
JSON content
(spine)
{
"dell-smart-fabric:config-personality": {
"service-enable":true,
"role": "SPINE",
}
}
Example
curl -k -u admin:admin -H 'Content-Type: application/json' -i -X POST
-d \
'{"dell-smart-fabric:config-personality":
{"service-enable":true,
"role":"SPINE"}
}'
https://100.104.26.104/restconf/data/dell-smart-fabric:config-personality
The following example shows how to enable SFS on a leaf switch with an IP address (100.104.26.104) and ICL interfaces as
1/1/5 and 1/1/6.
JSON content
(leaf)
{
"dell-smart-fabric:config-personality": {
"service-enable":true,
"mode": "L3 Fabric",
"role": "LEAF",
"icl": [
"ethernet1/1/5",
"ethernet1/1/6"
]
}
}
Example
curl -k -u admin:admin -H 'Content-Type:
application/json' -i -X POST -d \
'{"dell-smart-fabric:config-personality":{"service-
enable":true,"role":"LEAF",
"icl": [
"ethernet1/1/5",
"ethernet1/1/6"
]
}
}'
https://100.104.26.104/restconf/data/dell-smart-fabric:config-personality
Setting up SFS 13