-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkTools.ps1
More file actions
349 lines (277 loc) · 10.4 KB
/
NetworkTools.ps1
File metadata and controls
349 lines (277 loc) · 10.4 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
using namespace System.Collections.Generic
<#
[NetToolv4]::new("192.168.1.100", "255.255.255.0")
[NetToolv4]::new("192.168.1.100/24")
#>
class NetToolv4
{
[string]$IP
[string]$GW
[string]$SNM
[string]$NetAddress
[string]$Broadcast
NetToolv4()
{
$this.IP = $null
$this.GW = $null
$this.SNM = $null
$this.NetAddress = $null
$this.Broadcast = $null
}
NetToolv4($IP)
{
Write-Verbose "[NetToolv4] - Begin"
# is this in CIDR notation?
if ($IP -match '/')
{
Write-Verbose "[NetToolv4] - Found CIDR notation: $IP"
# assume this is in IP in CIDR notation
$CIDR = $IP.Split('/')[1]
Write-Verbose "[NetToolv4] - CIDR value: $CIDR"
$strIP = $IP.Split('/')[0]
Write-Verbose "[NetToolv4] - IP value: $strIP"
$strSNM = $this.ConvertCIDR2SNM($CIDR)
Write-Verbose "[NetToolv4] - Subnet Mask: $strSNM"
}
else
{
$strIP = $IP.ToString()
Write-Verbose "[NetToolv4] - Just an IP: $strIP"
$strSNM = $null
}
Write-Verbose "[NetToolv4] - Adding $strIP to object."
$this.IP = $this.ParseIP($strIP)
Write-Verbose "[NetToolv4] - Null gateway."
$this.GW = $null
if ([string]::IsNullOrEmpty($strSNM))
{
Write-Verbose "[NetToolv4] - Null subnet mask."
$this.SNM = $null
}
else
{
Write-Verbose "[NetToolv4] - Adding derived subnet mask $strSNM."
$this.SNM = $strSNM
}
if (-NOT [string]::IsNullOrEmpty($strSNM) -and -NOT [string]::IsNullOrEmpty($strIP))
{
$this.CalcThings($strIP, $strSNM)
}
else
{
$this.NetAddress = $null
$this.Broadcast = $null
}
}
NetToolv4($IP, $SNM)
{
$this.IP = $this.ParseIP($IP)
$this.GW = $null
$this.SNM = $this.ParseIP($SNM)
if (-NOT [string]::IsNullOrEmpty($IP) -and -NOT [string]::IsNullOrEmpty($SNM))
{
$this.CalcThings($IP, $SNM)
}
else
{
$this.NetAddress = $null
$this.Broadcast = $null
}
}
NetToolv4($IP, $SNM, $GW)
{
$this.IP = $this.ParseIP($IP)
$this.GW = $this.ParseIP($GW)
$this.SNM = $this.ParseIP($SNM)
$this.NetAddress = $null
$this.Broadcast = $null
}
CalcThings($strIP, $strSNM)
{
Write-Verbose "[NetToolv4]::CalcThings() - Calculating network address using $strIP and $strSNM."
$strNetAddress = $this.GetNetworkAddress($strIP, $strSNM)
Write-Verbose "[NetToolv4]::CalcThings() - Calculating broadcast address using $strIP and $strSNM."
$strBcast = $this.GetBroadcastAddress($strIP, $strSNM)
Write-Verbose "[NetToolv4] - Network address: $strNetAddress."
$this.NetAddress = $strNetAddress
Write-Verbose "[NetToolv4] - Broadcast address: $strBcast."
$this.Broadcast = $strBcast
}
[string]
ParseIP($IP)
{
try
{
[ipaddress]::TryParse($IP, [ref]'1.1.1.1')
}
catch
{
Write-Error "Failed to parse the IP address $IP."
return $null
}
return $IP
}
[string]
GetNetworkAddress()
{
if (-NOT [string]::IsNullOrEmpty($this.NetAddress))
{
return $this.NetAddress
}
else
{
return ($this.GetNetworkAddress($this.IP, $this.SNM))
}
}
[string]
GetNetworkAddress([string]$IP, [string]$SNM)
{
Write-Verbose "[NetToolv4]::GetNetworkAddress() - Begin"
if ([string]::IsNullOrEmpty($IP))
{
Write-Warning "Cannot calculate the Network Address. Reason: There is no IP address (IP) defined in the object."
return $null
}
if ([string]::IsNullOrEmpty($SNM))
{
Write-Warning "Cannot calculate the Network Address. Reason: There is no Subnet Mask (SNM) defined in the object."
return $null
}
# stores the IP address octets
Write-Verbose "[NetToolv4]::GetNetworkAddress() - Blank byte list for NetAddress."
$arrNetAddress = [System.Collections.Generic.List[Byte]]@(0,0,0,0)
Write-Verbose "[NetToolv4]::GetNetworkAddress() - Split IP by octect."
$arrIP = [System.Collections.Generic.List[Byte]]@(($IP.Split('.')))
Write-Verbose "[NetToolv4]::GetNetworkAddress() - Split SNM by octet."
$arrSNM = [System.Collections.Generic.List[Byte]]@(($SNM.Split('.')))
# not worrying about performance optimizations at this point
Write-Verbose "[NetToolv4]::GetNetworkAddress() - Building network address."
0..3 | ForEach-Object {
Write-Debug "[NetToolv4]::GetNetworkAddress() - Octect: $_"
Write-Debug "[NetToolv4]::GetNetworkAddress() - $($arrSNM[$_]) -band $($arrIP[$_])"
[byte]$tmpB = ($arrSNM[$_]) -band ($arrIP[$_])
$arrNetAddress[$_] = $tmpB
Write-Debug "[NetToolv4]::GetNetworkAddress() - Result: $($arrNetAddress[$_])"
Remove-Variable tmpB -EA SilentlyContinue
}
return ($arrNetAddress -join '.')
}
SetNetworkAddress($IP)
{
$this.NetAddress = $this.ParseIP($IP)
}
[string]
GetBroadcastAddress()
{
if (-NOT [string]::IsNullOrEmpty($this.Broadcast))
{
return $this.Broadcast
}
else
{
return ($this.GetBroadcastAddress($this.IP, $this.SNM))
}
}
[string]
GetBroadcastAddress([string]$IP, [string]$SNM)
{
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Begin"
if ([string]::IsNullOrEmpty($IP))
{
Write-Warning "Cannot calculate the Network Address. Reason: There is no IP address (IP) defined in the object."
return $null
}
if ([string]::IsNullOrEmpty($SNM))
{
Write-Warning "Cannot calculate the Network Address. Reason: There is no Subnet Mask (SNM) defined in the object."
return $null
}
# stores the IP address octets
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Subnet mask: $SNM"
[ipaddress]$ipSNM = $SNM
if ([string]::IsNullOrEmpty($this.NetAddress))
{
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Calculating subnet mask."
[ipaddress]$ipNetAddress = $this.GetNetworkAddress($IP, $SNM)
$this.NetAddress = $ipNetAddress.IPAddressToString
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Result: $($this.NetAddress)"
}
else
{
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Network Address: $($this.NetAddress)"
[ipaddress]$ipNetAddress = $this.NetAddress
}
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Doing the broadcast math."
[ipaddress]$ipBcast = [ipaddress](([ipaddress]::parse("255.255.255.255").address -bxor $ipSNM.address -bor $ipNetAddress.address))
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Did the math: $($ipBcast.IPAddressToString)"
return ($ipBcast.IPAddressToString)
}
SetBroadcastAddress($IP)
{
$this.Broadcast = $this.ParseIP($IP)
}
[string]
GetAddressRange()
{
if (-NOT [string]::IsNullOrEmpty($this.Broadcast))
{
return $this.Broadcast
}
else
{
return ($this.GetBroadcastAddress($this.IP, $this.SNM))
}
}
[string]
GetAddressRange([string]$IP, [string]$SNM)
{
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Begin"
if ([string]::IsNullOrEmpty($IP))
{
Write-Warning "Cannot calculate the Network Address. Reason: There is no IP address (IP) defined in the object."
return $null
}
if ([string]::IsNullOrEmpty($SNM))
{
Write-Warning "Cannot calculate the Network Address. Reason: There is no Subnet Mask (SNM) defined in the object."
return $null
}
# stores the IP address octets
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Subnet mask: $SNM"
[ipaddress]$ipSNM = $SNM
if ([string]::IsNullOrEmpty($this.NetAddress))
{
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Calculating subnet mask."
[ipaddress]$ipNetAddress = $this.GetNetworkAddress($IP, $SNM)
$this.NetAddress = $ipNetAddress.IPAddressToString
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Result: $($this.NetAddress)"
}
else
{
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Network Address: $($this.NetAddress)"
[ipaddress]$ipNetAddress = $this.NetAddress
}
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Doing the broadcast math."
[ipaddress]$ipBcast = [ipaddress](([ipaddress]::parse("255.255.255.255").address -bxor $ipSNM.address -bor $ipNetAddress.address))
Write-Verbose "[NetToolv4]::GetBroadcastAddress() - Did the math: $($ipBcast.IPAddressToString)"
return ($ipBcast.IPAddressToString)
}
SetAddressRange($IP)
{
$this.Range = $this.ParseIP($IP)
}
[string]
ConvertCIDR2SNM($CIDR)
{
# make sure the CIDR value is within range
if ($CIDR -lt 0 -or $CIDR -gt 32)
{
Write-Error "The CIDR value is invalid. The valid CIDR range is 0-32. CIDR value passed: $CIDR"
}
# do the math thing
$ipSNM = [ipaddress]([math]::pow(2, 32) -1 -bxor [math]::pow(2, (32 - $CIDR))-1)
return ($ipSNM.IPAddressToString)
}
}
[NetToolv4]::new("192.168.1.100/24")
[NetToolv4]::new("192.168.1.100", "255.255.255.0")