How do I check if a port is consistently alive? For example, I could use
ping 192.168.1.1 -t > results.txt
This will ping 192.168.1.1 continuously so that I could monitor it.
Is there an equivalent tool or command that I could use for this?
Currently I use telnet but sometimes the host disconnects it. I need a Windows solution.