답변:
보낸 사람 man ping
:
-w deadline
Specify a timeout, in seconds, before ping exits regardless of how many packets have been sent or received. In this case ping does not stop after count packet are sent, it waits either for deadline expire or until count probes are answered or for some error
notification from network.
-W timeout
Time to wait for a response, in seconds. The option affects only timeout in absense of any responses, otherwise ping waits for two RTTs.
즉 -w
, 전체 프로그램 세션에 대한 시간 초과를 설정합니다 . 를 설정하면 -w 30
, ping
(프로그램)는 30 초 후에 종료됩니다.
-W
반면에 단일 핑에 대한 시간 초과를 설정합니다 . 을 설정 -W 1
하면 특정 핑 시도가 시간 초과됩니다.
개별 핑 시간 초과를 200ms로 설정하는 방법에 대해서는 iputils
'의 버전 으로 수행 할 수 있다고 생각하지 않습니다 ping
. ICMP 라이브러리를 사용하여 직접 프로그래밍을 시도 할 수 있습니다.
-w
플래그가 없지만 설명이 있습니다. 방금 -W에 속한다고 믿었습니다. 따라서 1보다 작은 시간 초과를 정의 할 방법이 없습니까?
-w
, -c
무시됩니다. 단일 핑이 필요한 경우 -c 1 -W 4
또는 적절한 시간 초과가 무엇이든 사용할 수 있습니다.
내 맨 페이지 (Fedora 18, iputils-20121221-1.fc18)에 따르면
-w deadline
Specify a timeout, in seconds, before ping exits regardless of
how many packets have been sent or received. In this case ping
does not stop after count packet are sent, it waits either for
deadline expire or until count probes are answered or for some
error notification from network.
-W timeout
Time to wait for a response, in seconds. The option affects only
timeout in absence of any responses, otherwise ping waits for
two RTTs.
ping
실행 파일입니까? 다른 옵션과 함께 여러 가지 핑 버전이 있습니다.