LANからコンピュータを起動するときにIPアドレスが必要なのはなぜですか?

LANからコンピュータを起動するときにIPアドレスが必要なのはなぜですか?

新しいGNU / Linux Debian 9サーバーをインストールしました。

これが私が得たものですethtool

root@web-server:~# ethtool enp2s0
Settings for enp2s0:
        Supported ports: [ TP MII ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Half 1000baseT/Full
        Supported pause frame use: No
        Supports auto-negotiation: Yes
        Advertised link modes:  10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Half 1000baseT/Full
        Advertised pause frame use: Symmetric Receive-only
        Advertised auto-negotiation: Yes
        Link partner advertised link modes:  10baseT/Half 10baseT/Full
                                             100baseT/Half 100baseT/Full
                                             1000baseT/Full
        Link partner advertised pause frame use: Symmetric Receive-only
        Link partner advertised auto-negotiation: Yes
        Speed: 1000Mb/s
        Duplex: Full
        Port: MII
        PHYAD: 0
        Transceiver: internal
        Auto-negotiation: on
        Supports Wake-on: pumbg
        Wake-on: g
        Current message level: 0x00000033 (51)
                               drv probe ifdown ifup
        Link detected: yes

したがって、Magic Packetが(Wake-on: g)の位置にあることがわかります。


次のようにシャットダウン状態でこのコンピュータを起動しました。

./wolcmd 00********** 192.168.0.104 255.255.255.0 7  # I've hidden the MAC address here

Windows 10のCygwinで使用Depicus Wake on LAN コマンドライン


私が理解していないのはなぜIPアドレスとマスクまたはポート番号を指定するのですか?

MACアドレスが不足しているのはなぜですか?誰が詳しく説明できますか...

ベストアンサー1

WoLマジックパケットは、UDPポート0、7、9(使用されているハードウェアによって異なります)または0x0842タイプのネイティブイーサネットパケットで送信できます。wolcmdデフォルトは、ポート7の電子方式を使用するように選択します。

気づくwolcmd するUDPブロードキャストがサポートされています。つまり、ハードウェアとネットワークがTCP / IPブロードキャストをサポートしている場合は、アドレスとマスクとして255.255.255.255を指定できます。マジックパケットはMACアドレスを含むマシンでのみ解釈され、他のすべてのマシンではこれを無視します。

おすすめ記事