W6100 Ping 응답 에러인데 TCP연결은 정상동작하는 경우

TCP 소켓 통신을 사용하는 상황에서,
간혹 핑이 끊어진 것처럼 보이는데, 통신은 정상적으로 이뤄지는 상황이 발생하고 있습니다.

핑테스트 시 “요청 시간이 만료되었습니다.” 발생
이 때 TCP소켓 연결하면 정상적인 동작함

이런 상황이 발생하는 이유나 대처방안을 알려주시면 감사하겠습니다.

Ping is transactional - it sends packet and waits for response for short time.
TCP, if it does not have a response, performs retries and waits for more time, therefore TCP is much more protected against sporadic network issues or outages.
You will not see TCP reporting problem if there is network problem for several seconds, but ping will report it immediately.