Tagged Questions

4
votes
2answers
289 views

Low level networking in assembler (x86 compatible)

I wish to write a bootable program in assembler that would be capable of sending and receiving network packets. I do not wish to use any libraries, I'd like to create it all by myself (and also learn ...
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
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 = ...
1
vote
1answer
112 views

Is there any way to send serial data over physical ethernet layer with no encapsulation? [closed]

I wonder if I can use the physical ethernet layer like a serial port. Is it possible? The case would be reading signals with an electronic device without dealing with networking headers.
1
vote
1answer
338 views

Does the ICMP Header Checksum include the data as well?

As part of a homework assignment, I have to write a C program in Linux that generates ICMP replies to ICMP Echo requests using raw sockets. Does the data in the ICMP Packet have to be included in the ...
0
votes
2answers
189 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
417 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
1answer
457 views

python socket.PF_PACKET

I am trying to send out an ARP request with python, working with dpkt, and I found some sample code that uses: socket.socket(socket.PF_PACKET, socket.SOCK_RAW) I understand that you need to use raw ...
0
votes
2answers
454 views

C# - a userland TCP stack in Windows XP SP III

I'm trying to create an application to craft packets to be able to debug some gateways here, and to experiment with TCP DoS situations. Nevertheless this should be very easy, I didn't find a way to ...