📌 Termux में arp -a command कैसे use करें

Termux एक powerful Android terminal app है जिसकी मदद से आप Linux commands चला सकते हैं। इस guide में हम सीखेंगे कि arp -a command का use करके network में connected devices कैसे देखें।

🔹 arp -a क्या होता है?

arp -a एक networking command है जो आपके WiFi network में जुड़े devices के IP और MAC address दिखाता है। यह command खासकर ethical hacking और network analysis में बहुत useful होती है।

🔧 Step 1: Termux update करें

apt update && apt upgrade -y

यह command आपके Termux को latest version में update कर देती है।

📦 Step 2: net-tools install करें

apt install net-tools -y

arp command net-tools package के अंदर आती है, इसलिए इसे install करना जरूरी है।

🌐 Step 3: WiFi से connect रहें

ध्यान रखें कि आपका फोन WiFi network से connected होना चाहिए, तभी arp command काम करेगी।

⚡ Step 4: arp -a command चलाएं

arp -a

📊 Output समझें

? (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

⚠️ अगर result नहीं आए तो?

कभी-कभी arp empty दिखाता है, तब पहले network scan करना पड़ता है।

ping -c 4 192.168.1.1

🚀 Advanced तरीका (Nmap)

apt install nmap -y nmap -sn 192.168.1.0/24

यह command पूरे network के सभी devices दिखा देती है।

🔥 Extra Tool: Netdiscover

apt install netdiscover -y netdiscover

यह tool live network devices detect करता है।

📌 Conclusion

✔ arp -a command network devices दिखाने के लिए use होती है
✔ net-tools install करना जरूरी है
✔ best result के लिए nmap use करें

⬅ Back to Home