Tag: network

  • How to find network device using it’s manufacturer name?

    How to find network device using it’s manufacturer name?

    I’ve previously posted a note about finding Raspberry Pi without knowing it’s ip address. Well, basically it’s the same… Only you need to change MAC prefix to find other manufacturer. To wrap this is up, this is a command to find device by MAC prefix: sudo nmap -sP 192.168.100.0/24 | awk ‘/^Nmap/{ip=$NF}/00:D0:23/{print ip}’ And here […]