web-dev-qa-db-ja.com

Hyper-V vmはホストにpingできますが、ホストはHyper-V vmにpingできませんか?

Hyper-v VMからホストにpingする場合、ipv4またはipv6の両方で機能します。

Pinging MyHost [fe80::3549:ee49:a75c:619c%9] with 32 bytes of data:
Reply from fe80::3549:ee49:a75c:619c%9: time<1ms
Reply from fe80::3549:ee49:a75c:619c%9: time<1ms
Reply from fe80::3549:ee49:a75c:619c%9: time<1ms
Reply from fe80::3549:ee49:a75c:619c%9: time<1ms

Ping statistics for fe80::3549:ee49:a75c:619c%9:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms

ホストからHyper-V VM=にpingすると、ipv4がタイムアウトします。

Pinging win-hyperv [192.168.1.126] with 32 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.

Ping statistics for 192.168.1.126:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),

そしてipv6は

Ping request could not find Host win-hyperv. Please check the name and try again.

ホストがIPv4を使用するのに、別の方法でIPv6を使用するのはなぜですか?

2
sjzls

vMのホストベースのファイアウォールを確認しましたか? ICMPトラフィックを許可していますか?これは、VMがホストにpingできるが、その逆はできない理由を説明します

2
Michael Brown