#include <stdio.h> #include <string.h> #include <stdlib.h> #include <stdbool.h> #include <sys/socket.h> #include <errno.h> #include <netinet/in.h> #include <arpa/inet.h> static bool check_mac(struct in_addr mac_addr) { int i = ntohl(mac_addr.s_add...