« Réseau Windows » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
[[Category:Windows]] | |||
= CLI = | |||
== Powershell == | |||
<kode lang='ps'> | |||
# list ip adresses with its interface / adaptor | |||
Get-NetIPAddress | |||
# get adaptor details | |||
Get-NetAdapter -Name 'Adaptor name' | |||
# get the routing table | |||
Get-NetRoute | |||
# get the IPv4 routing table | |||
Get-NetRoute -AddressFamily IPv4 | |||
</kode> | |||
== Batch == | |||
<kode lang=dos> | <kode lang=dos> | ||
REM toutes les infos | REM toutes les infos | ||
Ligne 5 : | Ligne 22 : | ||
REM obtenir le nom d'hôte à partir de l'ip | REM obtenir le nom d'hôte à partir de l'ip | ||
ping -a x.x.x.x | ping -a x.x.x.x | ||
REM get the routing table | |||
route print | |||
</kode> | </kode> | ||
Version du 14 décembre 2020 à 16:17
CLI
Powershell
# list ip adresses with its interface / adaptor Get-NetIPAddress # get adaptor details Get-NetAdapter -Name 'Adaptor name' # get the routing table Get-NetRoute # get the IPv4 routing table Get-NetRoute -AddressFamily IPv4 |
Batch
REM toutes les infos ipconfig /all REM obtenir le nom d'hôte à partir de l'ip ping -a x.x.x.x REM get the routing table route print |