-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-RoutesPerAdapter.ps1
111 lines (68 loc) · 2.25 KB
/
Get-RoutesPerAdapter.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<#PSScriptInfo
.VERSION 1.0.0
.GUID 1bbfeb41-07ae-41fb-a41a-e3f7e4752ac9
.AUTHOR Jan Tiedemann
.COMPANYNAME Jan Tiedemann
.COPYRIGHT 2021
.TAGS Network Routes Nic Adapter
.LICENSEURI
.PROJECTURI
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
.PRIVATEDATA
#>
<#
.DESCRIPTION
Shows all network routes per network adapter (NIC)
#>
Function Get-ActiveRoutesPerAdapter {
<#PSScriptInfo
.VERSION 1.0
.GUID 1bbfeb41-07ae-41fb-a41a-e3f7e4752ac9
.AUTHOR Jan Tiedemann
.COMPANYNAME Jan Tiedemann
.COPYRIGHT 2021
.TAGS Network Routes Nic Adapter
.LICENSEURI
.PROJECTURI
.ICONURI
.EXTERNALMODULEDEPENDENCIES
.REQUIREDSCRIPTS
.EXTERNALSCRIPTDEPENDENCIES
.RELEASENOTES
You can use the script like this:
- Get-ActiveRoutesPerAdapter -AddressType IPv4 | Sort-Object Interface | Format-Table -AutoSize
- Get-ActiveRoutesPerAdapter -AddressType IPv4 | Where-Object Interface -like "*Ethernet*" | Format-Table
.PRIVATEDATA
#>
<#
.DESCRIPTION
Shows all network routes per network adapter (NIC)
#>
[CmdletBinding()]
Param (
[Parameter(Mandatory = $true,
ParameterSetName = 'AddressType')]
[ValidateSet('IPv4', 'IPv6')]
[string]$AddressType
)
begin {}
process {
Get-NetRoute -AddressFamily $AddressType -PolicyStore ActiveStore | `
Select-Object -Property `
@{label = "DestinationPrefix" ; expression = { $PSItem.DestinationPrefix } },
@{label = "DefaultGateway" ; expression = { if ($PSItem.NextHop -ne '0.0.0.0') { $_.NextHop } } },
@{label = 'NextHopLocalIP'; Expression = { if ($PSItem.NextHop -eq '0.0.0.0') { ($PSItem | Get-NetIPAddress -AddressFamily $AddressType | Where-Object ifIndex -EQ $PSItem.IfIndex).IPAddress } } },
@{label = "RouteMetric" ; expression = { $PSItem.RouteMetric } },
@{label = "InterfaceMetric" ; expression = { $PSItem.InterfaceMetric } },
@{label = 'Interface'; Expression = { ($PSItem | Get-NetIPInterface | Where-Object IfIndex -EQ $PSItem.IfIndex).InterfaceAlias } },
@{label = "IfIndex" ; expression = { $PSItem.IfIndex } }
}
end {}
}
# Main
<# Clear-Host
Get-ActiveRoutesPerAdapter -AddressType IPv4 | Format-Table -AutoSize #>