12–Windows Server 2016
Deploying and Managing a Nano Server
194
AH0054602-00 A
If the Nano Server connects successfully, the following is returned:
[172.28.41.152]: PS C:\Users\Administrator\Documents>
2.
To determine if the drivers are installed and the link is up, issue the following
PowerShell command:
[172.28.41.152]: PS C:\Users\Administrator\Documents>
Get-NetAdapter
shows example output.
Figure 12-19. PowerShell Command: Get-NetAdapter
3.
To verify whether the RDMA is enabled on the adapter, issue the following
PowerShell command:
[172.28.41.152]: PS C:\Users\Administrator\Documents>
Get-NetAdapterRdma
shows example output.
Figure 12-20. PowerShell Command: Get-NetAdapterRdma
4.
To assign an IP address and VLAN ID to all interfaces of the adapter, issue
the following PowerShell commands:
[172.28.41.152]: PS C:\>
Set-NetAdapterAdvancedProperty
-InterfaceAlias "slot 1 port 1" -RegistryKeyword vlanid
-RegistryValue 5
[172.28.41.152]: PS C:\>
netsh interface ip set address
name="SLOT 1 Port 1" static 192.168.10.10 255.255.255.0
5.
To create SMBShare on the Nano Server, issue the following PowerShell
command:
[172.28.41.152]: PS C:\Users\Administrator\Documents>
New-Item -Path c:\ -Type Directory -Name smbshare -Verbose