Tagged Questions

7
votes
5answers
8k views

How Do I Use Raw Socket in Python?

I am writing an application to test a network driver for handling corrupted data. And I thought of sending this data using raw socket, so it will not be corrected by the sending machine's TCP-IP ...
5
votes
7answers
1k views

How to detect a timeout when using asynchronous Socket.BeginReceive?

Writing an asynchronous Ping using Raw Sockets in F#, to enable parallel requests using as few threads as possible. Not using "System.Net.NetworkInformation.Ping", because it appears to allocate one ...
3
votes
3answers
49 views

Prevent Thread From Sleeping When Calling Socket.Receive

I'm working on a low latency financial application that receives tcp data over sockets. This is how I'm making a socket connection and receiving bytes: public class IncomingData { Socket _Socket; ...
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
2answers
537 views

connecting to OrientDB from PHP

I would like to write an adapter for PHP for the binary API of OrientDB. But I need a bit of help from someone who has experience with raw socket communications in PHP - I can't seem to even get past ...
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 = ...
3
votes
1answer
490 views

Mac + Ruby: Can't access ioctl of Socket? How to fix?

Good time of day. Ruby Code: def hw_address(iface) sock = Socket.new(Socket::AF_INET, Socket::SOCK_DGRAM,0) buf = [iface,""].pack('a16h16') sock.ioctl(SIOCGIFHWADDR, buf); ...
2
votes
2answers
151 views

How can I extract mac address from a icmp reply in c on linux

I am trying to find out mac address of a machine in a switched environment after sending it a raw packet. I am trying to implement traceroute command . I want to know when i receive a ICMP time ...
2
votes
1answer
325 views

How to set the Don't Fragment (IP_DF) flag in C

I want to set the Don't Fragment flag on a IP packet. Is there a way to do so via the setsockopt() function or via the flags of the sendto() function? Can I do this with "normal" sockets or do i have ...
2
votes
2answers
170 views

What should I use as a buffer in C++ for receiving data from network sockets?

I'm using sockets with C++. The program simply requests an HTTP page, reads it into a buffer buf[512], and then displays the buffer. However pages can contain more data than the buffer, so it will cut ...
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
2answers
266 views

Socket transmit data but can't receive response

I am trying to implement UpNP in C++, I found a few sources on google but none worked. I found this one working (http://www.codeproject.com/KB/IP/upnplib.aspx) but it's for .NET, so I decided to sniff ...
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
1answer
279 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
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 ...
1
vote
3answers
1k views

How to write byte by byte to socket in PHP?

How to write byte by byte to socket in PHP? For example how can I do something like: socket_write($socket,$msg.14.56.255.11.7.89.152,strlen($msg)+7); The pseudo code concatenated digits are ...
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
67 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
1answer
127 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
155 views

Using ntop() instead of ntoa() on an older raw socket tutorial

I am following the tutorial at this link to create a raw socket packet sniffer: http://www.security-freak.net/raw-sockets/sniffer_eth_ip.c The code uses the ntoa() function to get the dot-notation ...
0
votes
1answer
1k views

Send an UDP packet and receive an ICMP response from router in C

I'm trying write a C program that sends an UDP packet to a given IP adress and waits for an ICMP response of a router telling that the time to live expired. It's kept very simple because I just want ...
0
votes
2answers
190 views

How to implement bridging/NAT on linux? [closed]

What I have is a network topology which looks like this: ------ PC --- IP Camera The PC has two ethernet interfaces, and is hosting a small webserver providing some auxiliary data. The issue is ...
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.