Hi all
I need something which works similiar like tcping.
I need to run constant ping to specific port. So tbh i need to be sending constantly SYN packets to specific port and if server responds with SYN-ACK.
More or less this can be done with tracereroute <ip> -T -p 443
But only i want to be able to receive anser like from normal ping like
ping -p 443 TCP
Solved! Go to Solution.
Hi,
you can try "nc -vz host port" wrapped in a bash/perl script, most simple version:
while true; do nc -vz host port; sleep 1; done
Hi,
Do you really need the SYN packets or does telnet maybe also work for you?
I need sometyhing which will send SYN every few seconds till i stop it. Thats the point 😕
@drethwrote:Hi all
I need something which works similiar like tcping.
I need to run constant ping to specific port. So tbh i need to be sending constantly SYN packets to specific port and if server responds with SYN-ACK.
More or less this can be done with tracereroute <ip> -T -p 443
But only i want to be able to receive anser like from normal ping likeping -p 443 TCP
Hi dreth,
Consider using PsPing by
PsPing v2.10 - PsPing - ping, latency, bandwidth measurement utility
Copyright (C) 2012-2016 Mark Russinovich
Sysinternals - www.sysinternals.com
https://docs.microsoft.com/en-us/sysinternals/downloads/psping
psping -i 10 -t <ip addr>:443
This would ping every 10 seconds, using TCP, to the IP Addr on Port 443. It will continue to ping until Ctrl-C or Ctrl-Break entered.
Full details and options:
psping -? t
Hope this works for you.
Thanks,
Ron Metzger
But this solution is for windows machines. I need this for mcafee webgateways
Hi,
you can try "nc -vz host port" wrapped in a bash/perl script, most simple version:
while true; do nc -vz host port; sleep 1; done
Thanks!
This one will be enough for me!:)
Download the new ePolicy Orchestrator (ePO) Support Center Extension which simplifies ePO management and provides support resources directly in the console. Learn more about ePO Support Center
Corporate Headquarters
2821 Mission College Blvd.
Santa Clara, CA 95054 USA