You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script takes the target address and the port as input and checks the connection using a ping. However, since ping is not allowed in our case, but the port is open.
Expected behavior
Please check the port in line 105. Suggest replacing
What happened?
The script takes the target address and the port as input and checks the connection using a ping. However, since ping is not allowed in our case, but the port is open.
Expected behavior
Please check the port in line 105. Suggest replacing
if (Test-Connection -Ping $hostTmp -BufferSize 16 -Count 1 -ea 0 -quiet) {
with
if (Test-NetConnection -ComputerName $hostTmp -Port $portTmp) {
Relevant log output
No response
Proxmox VE Version
8.2.7
Version (bug)
8.2.3
Version (working)
No response
On what operating system are you experiencing the issue?
Windows
Pull Request
The text was updated successfully, but these errors were encountered: