This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CA 'ibv_device0' | |
CA type: | |
Number of ports: 1 | |
Firmware version: 2.42.5000 | |
Hardware version: 0x0 | |
Node GUID: 0x0002c903000232da | |
System image GUID: 0x0002c903000232dd | |
Port 1: | |
State: Initializing | |
Physical state: LinkUp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# DEVICE ATTRIBUTES OPTIONS | |
# | |
# The port GUID on which the OpenSM is running | |
guid 0x0000000000000000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# PARTITIONING OPTIONS | |
# | |
# Partition configuration file to be used | |
partition_config_file %ProgramFiles%\OFED\OpenSM\partitions.conf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Default=0x7fff,ipoib,mtu=5:ALL=full; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Check if we have OpenSM service | |
# | |
Get-Service op* | |
# | |
# If it's present and running, stop and remove this service. | |
# There's Remove-Service available with PowerShell 6.0, which you likely don't have. | |
# Use sc.exe delete OpenSM or command below | |
# | |
Stop-Service 'OpenSM'; Get-CimInstance -ClassName Win32_Service -Filter "Name='OpenSM'" | Remove-CimInstance |