Cette petite fiche concerne la gestion d'une carte réseau via CLI sur un windows server installé sans GUI.
Sur la version GUI de Windows, nous avons l'habitude d'utiliser ncpa.cpl
pour configurer l'interface.
wmic nicconfig get caption,index,TcpipNetbiosOptions
New-NetIPAddress -InterfaceIndex N°Interface -IPAddress IPSERVEUR -PrefixLength 24 -DefaultGateway IPGATEWAY
Set-NetIPInterface -InterfaceIndex N°Interface -Dhcp {Enabled/Disabled}
Remove-NetIPAddress –InterfaceIndex N°Interface –IPAddress 10.10.10.10 –PrefixLength 16 –DefaultGateway 10.10.10.254
Set-DnsClientServerAddress -InterfaceIndex N°Interface -ServerAddresses 8.8.8.8
Get-NetIPConfiguration
wmic nicconfig where index=N°Interface call SetTcpipNetbios 2
* /flushdns * /release * /renew *