SDK: Find C444 IP Address - WinSystems/c444-manifest GitHub Wiki

How to find your IP Address

  1. Directly from Target

    ip a

    sudo cat /var/lib/connman/ethernet_<macaddr>_cable/settings

  2. By Scanning Netowrk

    sudo nmap -sP <local subnet>/24 | awk '/Nmap scan report for/{printf $5;}/MAC Address:/{print " => "$3;}' | grep 00:01:45 | sort

    sudo nmap -sP 192.168.30.0/24 | awk '/Nmap scan report for/{printf $5;}/MAC Address:/{print " => "$3;}' | grep 00:01:45 | sort

⚠️ **GitHub.com Fallback** ⚠️