Windows에서 패턴 핑이 가능합니까?


답변:


1

실제로 그렇습니다 . 캐치 하지만 당신이 그물을 사용하여 응용 프로그램을 직접 작성하고 핑을 구현해야합니다. 좋은 소식은 이 MS 페이지 의 예제 를 Visual Studio C # (무료) 복사 하는 것입니다.


1
실제로, 진행하기 전에 VPN 연결을 확인하기 위해 Pinger를 앱에 작성했습니다. 여기에 코드를 게시하는 것에 대해 생각했지만 이것이 SU가 아니기 때문에 ops 질문의 범위를 벗어날 수 있다고 생각했습니다. OP, 당신이 어디에 있든, 당신 자신을 굴리는 것은 당신이 원하는 것을 얻는 좋은 방법입니다. "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"를 원하는 16 진 문자열로 바꾸십시오 (32 바이트 형식). 데이터 필드 너비는 임의적이지만 주어진 플랫폼에 구현 제한이있을 수 있습니다.
Frank Thomas

0

아니요, windows ping 구현에는 -p 옵션 또는 페이로드를 설정할 수있는 다른 옵션이 포함되어 있지 않습니다 (IIRC, windows ping 페이로드는 m -thru-l에서 시작하는 라틴 알파벳 임).

PS C:\Windows\system32> ping /?

Usage: ping [-t] [-a] [-n count] [-l size] [-f] [-i TTL] [-v TOS]
            [-r count] [-s count] [[-j host-list] | [-k host-list]]
            [-w timeout] [-R] [-S srcaddr] [-4] [-6] target_name

Options:
    -t             Ping the specified host until stopped.
                   To see statistics and continue - type Control-Break;
                   To stop - type Control-C.
    -a             Resolve addresses to hostnames.
    -n count       Number of echo requests to send.
    -l size        Send buffer size.
    -f             Set Don't Fragment flag in packet (IPv4-only).
    -i TTL         Time To Live.
    -v TOS         Type Of Service (IPv4-only. This setting has been deprecated
                   and has no effect on the type of service field in the IP Header).
    -r count       Record route for count hops (IPv4-only).
    -s count       Timestamp for count hops (IPv4-only).
    -j host-list   Loose source route along host-list (IPv4-only).
    -k host-list   Strict source route along host-list (IPv4-only).
    -w timeout     Timeout in milliseconds to wait for each reply.
    -R             Use routing header to test reverse route also (IPv6-only).
    -S srcaddr     Source address to use.
    -4             Force using IPv4.
    -6             Force using IPv6.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.