Comprobar puertos con PowerShell


/ Published in: Windows PowerShell
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #############################################################
  2. ##
  3. ## www.eneseblog.com
  4. ##
  5. ## testPort.ps1: Comprueba la visibilidad de un puerto entre
  6. ## el host y la ip destino.
  7. ##
  8. ## De vb.Net a PS1 el 07/09/2011.
  9. ##
  10. #############################################################
  11.  
  12. param($ip,$port)
  13.  
  14. echo "Dirección IP: $ip"
  15. echo "Puerto TCP: $port"
  16.  
  17. $connection = new-object net.Sockets.TcpClient
  18.  
  19. try
  20. {
  21. $connection.connect($ip,$port)
  22. $connection.close()
  23.  
  24. echo "Puerto $port abierto"
  25. }
  26. catch
  27. {
  28. echo "Puerto $port cerrado"
  29. }

URL: http://www.eneseblog.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.