Tuesday 9 September 2014

Opening the agent port on Hyper-V hosts form Dell vRanger software

This PowerShell command needs to be executed from one of the cluster nodes. It will find all the nodes in the cluster, and create a firewall rule to allow TCP port 8081 inbound.


get-clusternode | ForEach-Object  {Invoke-command -computername $_.name -scriptblock {netsh advfirewall firewall add rule name="Dell vRanger remote agent" dir=in action=allow protocol=TCP localport=8081}}

No comments:

Post a Comment