टर्मिनल के माध्यम से हॉटस्पॉट में जुड़े उपकरणों की सूची बनाना


16

मैं अपने हॉटस्पॉट को एपी-हॉटस्पॉट के माध्यम से जोड़ता हूं और मैं नोटिफिकेशन पॉप आउट को नए डिवाइस से कनेक्ट , डिवाइस डिस्कनेक्ट किए हुए देख सकता हूं । (क्योंकि मैं हॉटस्पॉट का उपयोग करने या उपयोग करने के लिए विशेषाधिकार के बारे में सीखना चाहता हूं।)

मैं टर्मिनल के माध्यम से जुड़े डिवाइस को कैसे सूचीबद्ध कर सकता हूं?

जवाबों:


28

arp -a आपको सभी जुड़े उपकरणों की एक सूची वापस देनी चाहिए।


4
यह भी arp -anउपयोगी है - आईपी पते को हल करने की कोशिश में देरी से बचने के लिए।
रमनो

arp वास्तविक समय अपडेट नहीं करता है
लुइस

10

यदि आप अधिक विस्तृत सूची चाहते हैं, तो मैंने इस स्क्रिप्ट को वेबअप 8 सेap-hotspot आने वाली स्क्रिप्ट के लिए अनुकूलित किया :

#!/bin/bash

# show_wifi_clients.sh
# Shows MAC, IP address and any hostname info for all connected wifi devices
# written for openwrt 12.09 Attitude Adjustment
# modified by romano@rgtti.com from http://wiki.openwrt.org/doc/faq/faq.wireless#how.to.get.a.list.of.connected.clients

echo    "# All connected wifi devices, with IP address,"
echo    "# hostname (if available), and MAC address."
printf  "# %-20s %-30s %-20s\n" "IP address" "lease name" "MAC address"
leasefile=/var/lib/misc/dnsmasq.leases
# list all wireless network interfaces 
# (for MAC80211 driver; see wiki article for alternative commands)
for interface in `iw dev | grep Interface | cut -f 2 -s -d" "`
do
  # for each interface, get mac addresses of connected stations/clients
  maclist=`iw dev $interface station dump | grep Station | cut -f 2 -s -d" "`
  # for each mac address in that list...
  for mac in $maclist
  do
    # If a DHCP lease has been given out by dnsmasq,
    # save it.
    ip="UNKN"
    host=""
    ip=`cat $leasefile | cut -f 2,3,4 -s -d" " | grep $mac | cut -f 2 -s -d" "`
    host=`cat $leasefile | cut -f 2,3,4 -s -d" " | grep $mac | cut -f 3 -s -d" "`
    # ... show the mac address:
    printf "  %-20s %-30s %-20s\n" "$ip" "$host" "$mac"
  done
done

उदाहरण के लिए ~/bin/show_wifi_clients, इसे अपने PATH --- में फ़ाइल में कॉपी करें , इसे निष्पादित करें chmod +xऔर आनंद लें।


एक अच्छी पागल स्क्रिप्ट, साझा करने के लिए धन्यवाद
:)

1
चर को printf " %-20s %-30s %-20s\n" $ip $host $mac"सही ढंग से मुद्रित करने के लिए डबल उद्धृत होना चाहिए। इसी तरह उत्तर का संपादन किया ...
मग्गू

@Magguu आप सही हैं, स्वीकार किए जाते हैं संपादित करें।
रमनो

8

उपकरणों की एक सूची दिखाएँ: ( <interface>अपने वाईफाई इंटरफेस के इंटरफेस नाम के साथ बदलें )

iw dev <interface> station dump

यदि आप अपने वाईफाई इंटरफ़ेस का नाम नहीं जानते हैं, तो इंटरफ़ेस का नाम जानने के लिए इस कमांड का उपयोग करें:

iw dev

हालांकि यह उत्तर अपनी वर्तमान स्थिति में अच्छा है, फिर भी इसमें सुधार किया जा सकता है। शायद आप कुछ उदाहरण आउटपुट जोड़ सकते हैं या अन्यथा यह समझा सकते हैं कि यह कमांड क्या करता है?
काज वोल्फ


0

यह उपकरण के मैक विक्रेताओं को भी मिलता है और आपके उपकरणों के मैक को लेबल भी कर सकता है

python3.6 की आवश्यकता है

#!/usr/bin/python3.6   
import subprocess
import re
import requests

# Store Mac address of all nodes here
saved = {
    'xx:xx:xx:xx:xx:xx': 'My laptop',
}

# Set wireless interface using ifconfig
interface = "wlp4s0"

mac_regex = re.compile(r'([a-zA-Z0-9]{2}:){5}[a-zA-Z0-9]{2}')


def parse_arp():
    arp_out = subprocess.check_output(f'arp -e -i {interface}', shell=True).decode('utf-8')
    if 'no match found' in arp_out:
        return None

    result = []
    for lines in arp_out.strip().split('\n'):
        line = lines.split()
        if interface in line and '(incomplete)' not in line:
            for element in line:
                # If its a mac addr
                if mac_regex.match(element):
                    result.append((line[0], element))
    return result


def get_mac_vendor(devices):
    num = 0
    for device in devices:
        try:
            url = f"http://api.macvendors.com/{device[1]}"
            try:
                vendor = requests.get(url).text
            except Exception as e:
                print(e)
                vendor = None

        except Exception as e:
            print("Error occured while getting mac vendor", e)

        num += 1
        print_device(device, num, vendor)

def print_device(device, num=0, vendor=None):
    device_name = saved[device[1]] if device[1] in saved else 'unrecognised !!'

    print(f'\n{num})', device_name,  '\nVendor:', vendor, '\nMac:', device[1], '\nIP: ',device[0])

if __name__ == '__main__':
    print('Retrieving connected devices ..')

    devices = parse_arp()

    if not devices:
        print('No devices found!')

    else:
        print('Retrieving mac vendors ..')
        try:
            get_mac_vendor(devices)

        except KeyboardInterrupt as e:
            num = 0
            for device in devices:
                num += 1
                print_device(device, num)
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.