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
Connaître le nom de l'interface :
netsh interface ipv4 show config
netsh interface ipv4 set address name="INTERFACENAME" static IPADR SUBNETMASK GATEWAY
netsh interface ipv4 set dns name="INTERFACENAME" static DNSSERVER_IP
Rajouter le paramètre index=2
pour configurer un deuxième serveur DNS.
netsh interface ipv4 set dnsservers name"YOUR INTERFACE NAME" source=dhcp
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 *