Tagged Questions

3
votes
3answers
387 views

How to read complete IP frames from TCP socket in Python?

I need to read a complete (raw) IP frame from a TCP stream socket using Python. Essentially I want an unmodified frame just as if it came off the physical line, including all the header information. ...
3
votes
1answer
2k views

how to bind raw socket to specific interface

My application is running on CentOS 5.5. I'm using raw socket to send data: sd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW); if (sd < 0) { // Error } const int opt_on = 1; rc = ...
2
votes
5answers
2k views

Packet socket in promiscuous mode only receiving local traffic

I have a socket created with socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)), and I've set it into promiscuous mode using struct ifreq ifr; strncpy((char*)ifr.ifr_name, interface, IF_NAMESIZE); ...
2
votes
7answers
2k views

How to discard incoming packets in raw socket?

I'm writing a C/C++ application under Linux that reads data from a raw socket (for ICMP packets). Question: is there a way to discard all data that is still queued on the socket? The problem is that ...
1
vote
1answer
831 views

How to reproduce TCP protocol 3-way handshake with raw sockets correctly?

Im simulating tcp protocol's 3-way handshake in c++, along with wireshark as my code runs. My code crafts the headers at ip and tcp layers, packs them, then send it to an http server with tcp header's ...
1
vote
2answers
139 views

Does sendto() dst_addr arg matters if used on a raw socket with IP_HDRINCL set?

The question is almost all in the title. I was wondering, given that: - I use a raw socket (on GNU/Linux); - the option IP_HDRINCL is set so that I craft the IP headers by myself. As the dest IP ...
1
vote
3answers
958 views

Can I make a “TCP packet modifier” using tun/tap and raw sockets?

I have a Linux application that talks TCP, and to help with analysis and statistics, I'd like to modify the data in some of the TCP packets that it sends out. I'd prefer to do this without hacking the ...
0
votes
1answer
50 views

Can iperf tool be used for measuring the throughput of raw sockets?

I am using client server application using raw sockets, can I measure the throuhput between them using iperf.
0
votes
1answer
110 views

dereferencing pointer to incomplete type with struct ip and also with struct iphdr

hello i'm trying to parse some packets, and when using struct ip i get the: "dereferencing pointer to incomplete type" error message. So i tryed then with struct iphdr but still have the same problem ...
0
votes
1answer
126 views

Set IP_HDRINCL with PF_PACKET error in linux

I setup a raw Packet socket using the following: sockFd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL) ); Then I am trying to set the socket option IP_HDRINCL using: int one = 1; if (setsockopt ...
0
votes
1answer
167 views

802.3 header length always 256 when using raw sockets in Linux

I have the following code to open a raw socket and send over it. In the send function I have a trace statement showing me that the length of my packet is 21. However, when I view the packets on the ...
0
votes
1answer
2k views

Sending data on AF_PACKET socket

How do I send data on a SOCK_PACKET socket without specifying which host it's bound for? I've constructed the IP header to show where it should go, but write() won't work.