Termux एक powerful Android terminal app है जिसकी मदद से आप Linux commands चला सकते हैं। इस guide में हम सीखेंगे कि arp -a command का use करके network में connected devices कैसे देखें।
arp -a एक networking command है जो आपके WiFi network में जुड़े devices के IP और MAC address दिखाता है। यह command खासकर ethical hacking और network analysis में बहुत useful होती है।
apt update && apt upgrade -y
यह command आपके Termux को latest version में update कर देती है।
apt install net-tools -y
arp command net-tools package के अंदर आती है, इसलिए इसे install करना जरूरी है।
ध्यान रखें कि आपका फोन WiFi network से connected होना चाहिए, तभी arp command काम करेगी।
arp -a
? (192.168.1.1) at aa:bb:cc:dd:ee:ff [ether] on wlan0
यहाँ:
✔ IP Address → 192.168.1.1
✔ MAC Address → aa:bb:cc:dd:ee:ff
✔ Interface → wlan0
कभी-कभी arp empty दिखाता है, तब पहले network scan करना पड़ता है।
ping -c 4 192.168.1.1
apt install nmap -y
nmap -sn 192.168.1.0/24
यह command पूरे network के सभी devices दिखा देती है।
apt install netdiscover -y
netdiscover
यह tool live network devices detect करता है।
✔ arp -a command network devices दिखाने के लिए use होती है
✔ net-tools install करना जरूरी है
✔ best result के लिए nmap use करें