-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] Release ports on the dynamic range on Windows runners (#10839)
#### Description The default port used by `zpagesextension` is in a range that Windows machines can exclude by default. This change adds a PowerShell script to release the default `zpagesextension` port (55679) on the Windows GH workflows. #### Link to tracking issue Fixes #10811
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<# | ||
.SYNOPSIS | ||
This script ensures that the ports required by the default configuration of the collector are available. | ||
.DESCRIPTION | ||
Certain runs on GitHub Actions sometimes have ports required by the default configuration reserved by other | ||
applications via the WinNAT service. | ||
#> | ||
|
||
#Requires -RunAsAdministrator | ||
|
||
netsh interface ip show excludedportrange protocol=tcp | ||
|
||
Stop-Service winnat | ||
|
||
# Only port in the dynamic range that is being, from time to time, reserved by other applications. | ||
netsh interface ip add excludedportrange protocol=tcp startport=55679 numberofports=1 | ||
|
||
Start-Service winnat | ||
|
||
netsh interface ip show excludedportrange protocol=tcp |