How to ping MAC address in Linux

后端 未结 5 1414
南方客
南方客 2021-01-31 12:19

I want to ping a known MAC address, I tried to use nmap:

sudo nmap -sP 192.168.15.1/24 | grep  20:64:32:3F:B1:A9

But in this case its ping all

5条回答
  •  天涯浪人
    2021-01-31 13:15

    nmap has the -T option to speed things like this up. -T 5 is the fastest.

    You can also try the --min-parallelism option.

提交回复
热议问题