Run this Python script on your kali terminal adding the IP address to do a network scan.
#!/usr/bin/env python import scapy.all as scapy def scan(ip): arp_request = scapy.ARP() #arp packet made by scapy print(arp_request.summary()) scan("192.168.19.26/24")