1
vote
0answers
39 views

Looking for example network device drivers that uses serial port (2.6.34)

I've been asked to develop a driver for a network adapter that is currently being designed. I know very little about how the device will actually function at this point, I'm just trying to get ...
-3
votes
1answer
109 views

Linux Network Device Driver [duplicate]

I am writing Linux driver for I/O data transfer. The data transfer should be through network communication. So, I need transfer data from kernel to Ethernet port. The Ethernet port connected to ...
1
vote
0answers
53 views

Is it possible to transmit a packet while the network interface is blocked using netif_stop_queue?

I'm trying to implement a time-slotted queueing algorithm for wifi mesh networks, using a loadable kernel module. During certain slots, packets from higher layers are allowed to pass through the wlan ...
0
votes
0answers
142 views

disable TCP/IP protocol stack in linux [closed]

I am testing my own protocol stack for IP packets & this is done with the help of kernel-modules. So i registers my stack as the handler for IP packets in the linux kernel. But due to TCP/IP stack ...
0
votes
1answer
747 views

tun/tap interface understanding

I am currently exploring different networking interfaces and came across tun/tap. I got confused about one part which was creating sockets. Can we create regular sockets with well know ports on the ...
0
votes
2answers
311 views

Create connection based on usb cable between 2 computers

I have 2 linux computers. For security, I want to setup a link between them, then program a library for sending/receiving data over this connection. I know that we can use USB networking cable for ...
0
votes
1answer
2k views

Which OS support wifi direct? [closed]

I have read that we only need a special software(driver) in order to support WiFi Direct in a specific operating system, that is to say, we don't need buying new network interfaces, so the key is the ...
1
vote
1answer
98 views

Distinguish forwarding traffic and locally originated traffic in Linux network driver

Is there any information in the struct skbuff to distinguish between the forwarding traffic (bridge forwarding and ip forwarding) and locally originated traffic? We want to treat these two kinds of ...
0
votes
0answers
183 views

How do we enable NAPI feature in Linux [closed]

I'm trying to enable NAPI feature on linux but could find any way to achieve it,My question here is to enable NAPI feature in Linux would I have to write separate routine and embedded into the ...
0
votes
2answers
244 views

How does linux pull my mac address to send over the link?

I want to build a MAC address spoofer that spits out a randomize mac address everytime my computer boots up. My question is how and from where do all my computer programs in linux pull up my MAC ...
0
votes
1answer
129 views

undefined reference to “ `function` in the network device interface to the userspace.”

I want to use the network device interface exported by the network driver module. This is my program devget.c #include<stdio.h> #include<linux/netdevice.h> void main(void) { ...
0
votes
1answer
526 views

how does the tcp/ip stack get the net_device interface in linux

I was reading through the network device driver code.My driver follows the driver-model.REF:kernel/Documentation/driver-model. Reading through the interface.txt: { Device interfaces are the ...
0
votes
2answers
1k views

how to capture tcp/ip packets

I'm creating a module that would capture the TCP/IP packets from TCP/IP stack and send this to Kernel which from ther sends to the userspace. My code right now has been completed for second half. It ...
6
votes
2answers
2k views

How can I monitor the NIC status(up/down) in a C program without polling the kernel?

Now I need to get the status of the NIC(up or down) in the real time. That means I have to catch the kernel interrupt when the NIC up or down in a blocked loop. The first stupid method from mine is ...
1
vote
0answers
63 views

Can a single page can be used for multiple skbs which are not fragments

I have a networking hardware which does Rx coalescing , in which frames partaining to a nic device are combined and send as a big chunk ( Greater than mtu) to the driver. In the driver i have to ...
0
votes
1answer
821 views

skb and Scatter gather feature

I have few questions related to the SKB. when we try to allocate a skb using alloc_skb( ) all the headers related to the skb will be allocated, for example a l4 header,l3 header,l2 header etc., I ...
0
votes
1answer
466 views

Ethernet switch device driver

We're designing a network device based around SoC, which contains MIPS core and 5-ports switch core, connected to the CPU via internal MII port. Device driver provided by a chip vendor represents ...
0
votes
1answer
121 views

Depmod - unresolved symbols in rt73 module

I'm trying to install a linux driver for my wireless network card (D-Link DWL-G510) on my Red Hat Linux 7.1 machine with a 2.4.37.9 kernel. I downloaded the serial monkey driver from the sourceforge ...