Concept Guide
Table Of Contents
- Dell EMC SmartFabric Services User Guide Release 1.0
- About this guide
- SFS fundamentals
- Setting up SFS
- Deploying and managing a fabric
- Access fabric setup options
- Update default fabric, switch names, and descriptions
- Create uplink for external network connectivity
- Breakout switch ports
- Configure jump host
- Update network configuration
- Onboard a server onto the fabric
- Edit default fabric settings
- Restore fabric configuration
- Manage network profiles
- Manage routing profiles
- Access fabric setup options
- SFS with VxRail
- SFS with PowerEdge MX
- SFS for Isilon/PowerScale back-end fabric
- SFS commands
- smartfabric l3fabric enable
- smartfabric vlti
- show logging smartfabric
- show smartfabric cluster
- show smartfabric cluster member
- show smartfabric configured-server
- show smartfabric configured-server configured-server-interface
- show smartfabric details
- show smartfabric discovered-server
- show smartfabric discovered-server discovered-server-interface
- show smartfabric networks
- show smartfabric nodes
- show smartfabric personality
- show smartfabric uplinks
- show smartfabric upgrade-status
- show smartfabric validation-errors
- show switch-operating-mode
- Appendix

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