I am trying to generate packet using Scapy as :
send(IP(dst="151.189.13.35", src="192.168.0.103")/UDP(sport=5555, dport=53))
Result shows: Sent 1 packet. But I want to know whether this packet is being sent to given destination address, why it is not being captured by my wireless sniffer?
Other one I have tried to send more packets (loop) 'p=sr1(IP(src="192.168.0.103", dst="151.189.13.35")/UDP (sport=[5555], dport=[53])/"Xyz") ' , still not single packet captured by wireless sniffer.
I am using scapy`s sniff function as sniffer on wlan0 interface, enabling monitor mode on it (mon0) using airmon-ng. Sniffer is on one system and packets are being generated on other system.