Вопрос

RAW Socket: How to filter packets in RAW Socket ? I was trying to capture UDP packets in a server Program but its receiving all the packets. Is there any function or command to filter the packets in linux.

Это было полезно?

Другие советы

 #include <sys/socket.h>
 #include <netinet/in.h>

 raw_socket = socket(AF_INET, SOCK_RAW, int protocol);

Using this protocol Field we can capture particular packet.

int fd = socket (PF_INET, SOCK_RAW, IPPROTO_TCP);
char buffer[8192]; /* single packets are usually not bigger than 8192 bytes */
while (read (fd, buffer, 8192) > 0)
{
     printf ("Caught tcp packet: %s\n", 
     buffer+sizeof(struct iphdr)+sizeof(struct tcphdr));
}

above code will capture all TCP packets. Similarly for UDP we can use

socket (PF_INET, SOCK_RAW, IPPROTO_UDP);

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top