What is ARP? Understanding Address Resolution Protocol Basics (Simple Guide)
When two devices on a local network need to communicate, they don’t rely solely on IP addresses—they … Read more
Lynxbee topic
When two devices on a local network need to communicate, they don’t rely solely on IP addresses—they … Read more
For automation, cron jobs, or IoT devices, you often need to verify internet connectivity before continuing. Here are three bash methods to do it.
Network throughput is a critical metric that determines the efficiency of your network infrastructure. It helps you … Read more
Wi-Fi has become an indispensable part of our daily lives, connecting our devices seamlessly to the internet. … Read more
What is Nmap? Nmap (Network Mapper) is a free and open-source network scanning tool. It is widely … Read more
If you know the IP address of the Host, but its not within your physical reach but … Read more
As per Wikipedia, Beacon frame is one of the management frames in IEEE 802.11 based WLANs. It contains all the … Read more
To disable the ICMP ping from certain Linux host, lets say which has IP of 192.168.0.100 use … Read more
Use mdns-scan for a quick inventory of DNS-SD service types, then use Avahi to resolve actual instances, hosts, ports, and TXT metadata. This guide also explains the multicast boundary and why discovery commonly fails across Wi-Fi isolation, VLANs, containers, and firewalls.
Sometimes someone from within your network starts consuming lot of bandwidth and you just needed to identify … Read more
Lets say you are trying to do something with UPNP which reserves port 1900 for all of … Read more
If you need to get the mac address of certain wifi interface using C program, you can … Read more
Following the simple example which shows how we can send and receive an integer over a socket. … Read more
The file must begin with a Section Header Block. Below is typical configuration, with a single Section Header … Read more
This post is in continuation of our previous post “Understanding ARP (Address Resolution Protocol) basics“ To visualise … Read more
Write a Go program using net.InterfaceByName to lookup IP addresses, MAC hardware addresses, MTU, and status flags for a specific network interface.
Learn how to enumerate network interfaces, inspect MAC addresses, extract IPv4/IPv6 CIDR subnets, and check interface status flags using Go.
Write a C packet sniffer in Linux using AF_PACKET raw sockets to capture, decode, and analyze Ethernet, IP, TCP, and UDP frames on wlan0.
We can use tcpdump to capture the packets whereas tshark to analyse the packets. Using above help, … Read more
libpcap provides functions for user-level packet capture, used in low-level network monitoring. Following program captures the packets … Read more
Using the below script we tries to connect to different wifi channels of hotspot using iwconfig command. … Read more
Send HTTP POST data from client tools (curl, Python) and return custom JSON responses using Netcat over a specific port on Linux.
Learn bi-directional user-space to Linux kernel communication using Netlink sockets (AF_NETLINK) with full C kernel module and user client examples.
Listen on a specific port using Netcat (nc) to inspect incoming HTTP POST messages, webhooks, JSON payloads, and log headers in Linux.