Ethernet is a set of networking technologies widely used to interconnect computers.
0
votes
0answers
5 views
Windows NDIS Driver: Concurrent Read/Write on a single device (IRP_MJ_READ/WRITE)
Starting with the ndisprot sample from Microsoft I try to write a NDIS protocol driver. From User space I try to read and write to the device simultaneous (out of two threads). Since I don't receive ...
0
votes
0answers
8 views
Do all ethernet frames contain an LLC header?
As the title states: do all ethernet frames contain an LLC header? In other words, is 802.2 mandatory?
When doing pcap using wireshark, the LLC filter shows no results.
If LLC is not mandatory, then ...
-1
votes
0answers
10 views
Does android supports WiFi hotspot using ethernet connection [closed]
Instead of using 2G/3G data connection for WiFI Hotspot, I need to use data from Ethernet port of my android device. Is there any way for routing data from Ethernet to WiFi hotspot ?
Thanks in ...
0
votes
0answers
16 views
How to use socat to transfer serial commands in a script over TCP/IP?
I have a web application that will constantly post some queries and get replies from a device through the serial port on Raspberry Pi. Like this:
@cherrypy.expose
def login (self, **data):
...
0
votes
0answers
26 views
How does virtual serial port work?
I've previously asked about how to send my serial port data through Ethernet and I've been lead to the term "virtual serial port". One of the suggestions was to use socat. I did not find any practical ...
0
votes
1answer
87 views
POST request on a webserveur using Arduino Ethernet shield
First of all, sorry for my bad english, I'm french. :)
Ok, so my goal is to send toward a webserver a data of temperature at regular time. I use a LAMP server on a Raspberry Pi computer and the ...
0
votes
0answers
30 views
write before read with Arduino Ethernet library
A tcp server is implemented on the arduino using EthernetServer(port), a connection is accepted using
client = server.available();
if (client) {
...
}
However, as far as I understand the source ...
0
votes
2answers
37 views
Receiving Ethernet frames from an UDP port
I need to listen on multiple UDP ports and process received datagrams as Ethernet frames. I cannot think of any other solution than creating a SOCK_RAW socket to receive ethernet frames, check if what ...
0
votes
0answers
15 views
Winsoc on XP drops UDP packet every other run
I have an application with a DSP connected to an XP PC by a direct Ethernet connection (no router in the way). The PC's firewall is disabled. The PC waits for BOOTP packets from the DSP and then ...
-1
votes
1answer
23 views
Splitting Packet Data from client to server [closed]
Is it possible to sniff datagram that goes from client to server , get that data and modify that data.If it is possible could please let me know the way to do it.
Please let me the way i can ...
0
votes
0answers
37 views
ioctl(sock, SIOCETHTOOL, &ifr) why its returning -1 all the time
/* Same piece of code works differently for two different version of Linux & there out put as below
Linux mammo-linux 2.6.27.19-5-default #1 SMP 2009-02-28 04:40:21 +0100 x86_64 x86_64 x86_64 ...
0
votes
0answers
24 views
Python: is a given network interface wifi or ethernet?
Is there a way, from within Python, to know if a given (and connected) network interface is wifi or Ethernet?
The module inetfaces provides a list of network interfaces available and corresponding ...
-1
votes
0answers
21 views
Ethtool output is not as expected [closed]
I am running ethtool to find the link speed on my linux box.
The only output I get is
Settings for eth0:
Link detected: yes
While the expected output is like
Settings for eth0:
Supported ...
0
votes
0answers
28 views
How much fast can a microcontroller read from IO pins?
What actually wonder is like the following. I will supply 8 bit data, 1 clock and 1 data valid signal to a microcontroller with 20 Mhz; and then want to send the data over ethernet or USB. I have ...
1
vote
0answers
24 views
[Mac OS]How to share folders with C++
i want to share folders in LAN and i want to offer otional access from public-ethernet too.
Is there any way to share folder on Mac OS X with C++? Something like 'Network Share Management ...
-1
votes
0answers
18 views
How can the Linux SMSC 8720 PHY driver be put into loopback mode? [closed]
I'm debugging some custom hardware, it has an 8620 as the PHY chip. According to the datasheet it supports loopback modes. Does anyone know if the stock Linux driver supports this, and if so how to ...
0
votes
2answers
23 views
Remote Desktop From Outside Network
I've got a school demo tomorrow and because I don't have a laptop I need to use remote desktop to access a DB on my home machine for the demo. I can access my desktop from another machine on my ...
0
votes
1answer
28 views
edit wireshark cap file: change the crc value to be bad
I want to generate a cap file with bad CRC packets using wireshark.
I recorded the traffic I want but:
1. I don't see the CRC in the wireshark GUI and couldn't find where to enable this view
2. I cant ...
0
votes
0answers
12 views
Calculation units in EtherType frame field
The EterType ethernet frame field value is represent a payload field length in bits or bytes?
0
votes
1answer
58 views
With the Arduino Ethernet shield, what's the difference between `write()`, `print()`, and `printIn()`?
Using the Arduino Ethernet Server Library, what is the difference between:
server.write(data);,
server.print(data);, and
server.println(data);
I know that the printIn adds a new line, where print ...
0
votes
0answers
49 views
eth1 networking interface not working while configuring hadoop [closed]
I have a following issue
Following is what i have given in my file in /etc/networking/interface
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
...
0
votes
1answer
45 views
Sort of NDIS Intermediate Miniport on Mac OS X
We have a solution of an intermediate network layer which is currently implemented as a NDIS IM on Windows. I am investigating how this thing could be ported to Mac OS X.
Ideally, it should be an ...
0
votes
0answers
133 views
Connecting Arduino Ethernet Shield and reading data issue PROCESSING
i am new to this forum and the whole thing with Processing.
I have a specific question to ask and thanks a lot for your time and thoughts!
How can i connect my Arduino with Ethernet Shield, getting ...
0
votes
1answer
61 views
How to send Ethernet-Frames in Java without TCP/IP Stack
My Java application should control an external device (EtherCAT Bus technology) directly connected to the network interface of my computer(Ubuntu and Windows). No other network devices are connected. ...
0
votes
1answer
48 views
obtain the MAC Address/interface name from GUID on FreeBSD?
Is there any way I can obtain the MAC Address/interface name from GUID on FreeBSD? Are there any system calls to do that? I was searching everywhere but couldn't find any information. Can you please ...
-1
votes
0answers
30 views
Understanding Wifi Collisions [closed]
I have an application that communicates with two IP cameras.
When the cameras are connected via ethernet cable, I see no dropped packets.
When I use wireless gaming adapters, one for each IP camera ...
1
vote
0answers
79 views
Arduino Ethernet shield not connecting to a website
I am trying to send data to a local server using the code below:
The server does not receive the data through the Ethernet shield. It says it connects successfully.
I have pinged Google with the ...
0
votes
1answer
71 views
Ethernet Loopback Test
I am trying to create a test to verify a PHY loopback is working correctly. Developing on linux in c. This is essentially what the test is currently doing:
Bring up the interface and make sure it ...
1
vote
0answers
98 views
Search tweets with hashtag, using Arduino with ethernet shield
I want to receive all tweets containing #hashtag, i prefer XML but from what i understand JSON will have to do. My current code only lets me search for tweets coming from one person instead of using ...
0
votes
1answer
44 views
What multicast mac addresses mean?
When boot up a Linux server, some multicast packets are sent out. The destination mac address is 33:33:00:00:00:02. I wonder if the multicast address is well known? Dose it have some special meaning? ...
0
votes
1answer
33 views
controlling ethernet speeds in lan c++ windows
I am wondering if it is possible to limit/control ethernet upload and download speeds on specific transport layers (tcp/udp) using c++? I am trying to make a simple to use program that can control the ...
0
votes
1answer
53 views
I am trying to print via Ethernet on a thermal printer in VB.NET
I am trying to print via Ethernet on a thermal printer in VB.NET. Searching the internet, I found this routine, which apparently stored in memory print because the printer does nothing. Then, if I ...
1
vote
1answer
106 views
testing user-space TCP/IP stack with TUN / TAP
Is it possible to test an TCP stack using TUN / TAP interfaces ?
I'm thinking of a mechanism like this:
+--------------------------------+
| TCP Client / Server |
| socket(AF_INET, ...
0
votes
2answers
554 views
Hook up Raspberry Pi via ethernet to laptop without router?
I'm working on balloon project with a raspberry pi. When we potentially recover the raspberry pi, it will most likely be in a rural location and I'd like to turn off the pi at that point safely. ...
3
votes
1answer
31 views
What is the benefit of Arduino Ethernet's library IPAddress()?
The Arduino defailt Ethernet library class contains an IPAddress variable type. What is this IPAddress for? Why should I use it and why is it not used for the gateway and subnet IPs in the official ...
0
votes
1answer
174 views
Trouble with implementing a C program that sends and receives raw ethernet frames
First off, I am fairly new to the topic of the ethernet and the data link layer and I am trying to write a C program which allows the sending and receiving of ethernet frames.
I am trying to have my ...
-2
votes
1answer
41 views
How to sniff the network traffic when victims' static ARPs are on [closed]
For example, if there is a network with three computers connected to the same switch, Alice, Bob, and Eve. If Alice and Bob add each other on their own ARP list as a static ARP entry, and Eve still ...
0
votes
1answer
11 views
ndisproto sample not reading any traffic
i was trying to get familiar with ndisproto samples in wdk. As per the doc, the -r -n 10 option should read 10 packets off the interface, but nothing in result even if I ping to the interface! The ...
1
vote
1answer
119 views
TCP server with Python: How to optimized my implementation?
I would like to implement a TCP server using a Python script.
The server should basically do the following task:
It will be cyclically polled by a remote client, then reads certain data on its local ...
0
votes
2answers
397 views
Cosm example with temp and humidity sensor (DHT11) added
Added a temperature and humidity sensor (DHT11) to the standard Cosm Arduino sensor client example. Works for a short while then data streams flat line.
Any idea what could be causing the problem?
...
0
votes
2answers
47 views
libpcap not receiving in real time, seems to be buffering packets
So I'm working with a device where I need to send and receive raw ethernet frames. It's a wireless radio and it uses ethernet to send status messages to its host. The protocol it uses is actually IPX, ...
0
votes
0answers
72 views
Crossover Ethernet Communication with two mbeds
I'm trying to communicate via Ethernet from one Mbed Device to another.
I don't know why my example doesn't work.
The connection between the mbed devices is crossover with cables.
RD+ -> TD+
RD- ...
-1
votes
1answer
224 views
Android ethernet configure IP using dhcp [closed]
I have an android box with ethernet interface. There are no Java classes in android SDK to configure ethernet. As a last resort I am using shell commands to configure ethernet. Could any body please ...
0
votes
0answers
49 views
Android SDK access to ethernet APIs
I have been struggling with this problem for quite a long now but haven't found any solution yet. I have an Android box (ICS 4.0.4 OS Version) with ethernet port. I am developing a custom setup ...
0
votes
1answer
48 views
Is there a way send ethernet packet directly on link using winsock on windows?
Is there a way send ethernet packet directly on link using winsock on windows?
I need to broadcast an ethernet packet on a link (i.e. Destination Mac-Address: Broadcast (ff:ff:ff:ff:ff:ff))
0
votes
1answer
56 views
Ethernet header from recvfrom is not as expected
I am writing some network packet sniffing code in C (running on an Ethernet LAN). While attempting to print out the Ethernet header, I've run into a bit of confusion. According to Wikipedia the first ...
0
votes
0answers
16 views
Etherent problems with VPN | Ethernet without VPN works fine | Wirless with VPN works also fine
Hello stackoverflow members,
I have problems with my Ethernet Connection with Ubuntu 12.10 on my new DELL XPS.
Note: My wireless connection uses another net than the Ethernet connection does
If I use ...
0
votes
2answers
85 views
Need to improve the Linux performance for embedded system
I have a ARM OMAP based embedded system with 1 GHZ processor running Linux 2.6.33 cross compiled as CONFIG_PREEMPT. One of the Processes (process 1) is critical and need to run every 4 or 8 milli sec ...
0
votes
2answers
94 views
NDIS 6.x ethernet bridge driver
I was wondering what would be the best choice and way to build an ethernet bridge using NDIS 6.x. Where should I start and which one should I use for this, Miniport, IM, protocol or filter driver?
...
0
votes
0answers
25 views
gcm service running only on wifi but not through ethernet?
My GCM web service is running when my laptop is connected to Wi-Fi but not if it is connected to Ethernet. It gives unknown host exception. I am using tomcat as web server on eclipse Indigo. I'm using ...



