Tagged Questions

4
votes
5answers
2k views

Python TCP stack implementation

Is there a python library which implements a standalone TCP stack? I can't use the usual python socket library because I'm receiving a stream of packets over a socket (they are being tunneled to me ...
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
2answers
823 views

How to bind a Raw Socket to a specific port?

I am currently working on a programming assignment. The assignment is to implement a client,network emulator, and server. The client passes packets to a network emulator, and the network emulator ...
1
vote
2answers
145 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
1answer
288 views

How to migrate existing udp application to raw sockets

Is there a tutorial for migration from plain udp sockets (linux, C99/C++, recv syscall is used) to the raw sockets? According to http://aschauf.landshut.org/fh/linux/udp_vs_raw/ch03s04.html raw ...
1
vote
2answers
1k views

Using recvfrom() with raw sockets : general doubt

I have created a raw socket which takes all IPv4 packets from data link layer (with data link layer header removed). And for reading the packets I use recvfrom. My doubt is: Suppose due to some ...
0
votes
0answers
44 views

Accessing wireless interface (802.11) at MAC layer (Linux)

I spent the last days reading through man pages, documentations and anything else google brought up, but I suppose I'm even more confused now than I was at the beginning. Here is what I want to do: I ...
0
votes
1answer
54 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
98 views

Please, can anybody help in writing a server-client raw socket program in c/c++

I am new to raw socket. I want write a server and a client application that use raw sockets to send and receive raw data in one or more files. Each file may contain one or more data segments of 50 ...
0
votes
0answers
76 views

DoS prevention/network monitoring [closed]

i am trying to make a syn flooding monitor(a firewall kind of that will check for syn floods). I am using C (on ubuntu) for that. Do i need to use raw sockets, or normal ones will do?? If only raw ...
0
votes
1answer
452 views

How to bind a raw_socket to an specific interface in kernelspace?

My problem is, when I listen with PF_PACKET I also get the packets my box sends and which is undesirable. err_create = sock_create(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL), sock); Instead of ETH_P_ALL ...
0
votes
2answers
664 views

Accessing data link layer packets

I want to create a socket for accessing IPv4 packets from data link layer. From unix network programming V1, socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)) 1)I am implementing a dhcp client, is ...