Tagged Questions
Ethernet is a set of networking technologies widely used to interconnect computers at the physical (layer 1) and link (layer 2) levels. The capability of Ethernet has matured to the point where it is used for both basic desktop computer networking and for carrier-grade networks where operators must guarantee quality of service.
19
votes
3answers
2k views
How do you get the ethernet address using Java?
I would like to retrieve the ethernet address of the network interface that is used to access a particular website.
How can this be done in Java?
Solution Note that the accepted solution of ...
11
votes
5answers
12k views
Read MAC Address from network adapter in .NET
I'd like to be able to read the mac address from the first active network adapter using VB.net or C# (using .NET 3.5 SP1) for a winform application
8
votes
1answer
507 views
How to reliably generate Ethernet frame errors in software?
Question:
I'm testing a section of cable-fault finding software, and I'd like to reliably and reproducibly generate cable faults on a cat5 cable.
At the moment I'm using a meter length of untwisted ...
5
votes
2answers
350 views
How can I send a datagram with an Ethernet trailer?
How can I send a datagram with an Ethernet trailer? If I use SocketType.Raw, I'll have to send the whole IP header and I have no idea how to do that.
Here's a picture that will explain this better:
...
5
votes
3answers
1k views
How do you send an Ethernet frame with a corrupt FCS?
I'm not sure if this is even possible since this might be handled in hardware, but I need to send some Ethernet frames with errors in them. I'd like to be able to create runts, jabber, misalignment, ...
5
votes
4answers
2k views
How to send a WOL package(or anything at all) through a nic which has no IP address?
I'm trying to send a WOL package on all interfaces in order to wake up the gateway(which is the DHCP server, so the machine won't have an IP yet).
And it seems that I can only bind sockets to IP and ...
4
votes
4answers
205 views
How can I fetch the ethernet port given the ip address?
I am trying to write a bash script to fetch the ethernet port of an interface whose IP address I know. I need to grab this from ifconfig but can't seem to be able to figure out how to go about it. Any ...
4
votes
3answers
441 views
Is length of ethernet header necessarily 14?
Code snippet from here:
void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
....
/* retireve the position of the ip header */
ih = (ip_header *) ...
4
votes
7answers
448 views
How to rapidly read data coming through a 10GbE NIC?
I have two debian boxes connected by a CX4 cable going between two 10 GbE cards. One is going to be generating data very quickly (between 4Gbits/s and 16Gbits/s), and the other needs to be able to ...
4
votes
4answers
4k views
Detecting network state (connected - disconnected) in C#
I am in need of a piece of code that can detect if a network connection is connected or disconnected. The connected state would mean a cable was plugged into the Ethernet connection. A disconnected ...
4
votes
6answers
2k views
What's the most efficient protocol for reliable multicast?
When a sender needs to multicast a relatively large volume of data (say several megabytes per second) in a reliable way over Ethernet to a modest number of receivers (say less than a dozen) on the ...
4
votes
3answers
815 views
Windows networking using only Ethernet Frames
I'm doing a project where I must write a network library for a device connected to a Windows machine. The complication comes in that I may only communicate with the device using ethernet frames. So ...
4
votes
4answers
3k views
Detect another host with the same MAC address
How can I detect if another host is using the same MAC address as the current host, e.g. because the other host is spoofing?
I'm working in an embedded environment, so looking for answers on a ...
3
votes
1answer
63 views
Book suggestions for Low-level ethernet/networking (e.g. MII)
I had a colleague who is using Xilinx's LocalLink TEMAC (read:http://www.xilinx.com/support/documentation/ip_documentation/xps_ll_temac.pdf)
While I find the DS interesting, I would like to learn ...
3
votes
1answer
220 views
How to determine the length of an Ethernet II frame?
the Ethernet II frame format does not contain a length field, and I'd like to understand how the end of a frame can be detected without it.
Unfortunately, if have no idea of physics, but the ...
3
votes
2answers
1k views
linux raw ethernet socket bind to specific protocol
I'm writing code to send raw Ethernet frames between two Linux boxes. To test this I just want to get a simple client-send and server-receive.
I have the client correctly making packets (I can see ...
3
votes
6answers
215 views
How can I inject raw packets onto my network
In testing certain network device driver receive features, I need to send special packets on the wire. I know I need to open a raw socket and push the bytes out. Is there some well-known example (C, ...
3
votes
4answers
4k views
How do I create virtual ethernet devices in linux?
I am testing an implementation of a protocol that talks between two computers using ethernet (not IP). In order to not actually have to have two physical computers, I want to create two virtual ...
3
votes
4answers
1k views
How does PPP or Ethernet recover from errors?
Looking at the data-link level standards, such as PPP general frame format or Ethernet, it's not clear what happens if the checksum is invalid. How does the protocol know where the next frame begins?
...
3
votes
2answers
2k views
How do I send an ARP packet through python on windows without needing winpcap?
Is there any way to send ARP packet on Windows without the use of another library such as winpcap?
I have heard that Windows XP SP2 blocks raw ethernet sockets, but I have also heard that raw sockets ...
3
votes
4answers
836 views
Ethernet MAC address as activation code for an appliance?
Let's suppose you deploy a network-attached appliances (small form factor PCs) in the field. You want to allow these to call home after being powered on, then be identified and activated by end users.
...
2
votes
0answers
54 views
If I bridge two network cards, does the bridging happen at the OS level or the hardware level?
I've written a C# app which listens to a lot of multicast streams.
I'd like to run two copies of the program, one for recording, one for reacting to the data.
I'm curious: if I create a virtual ...
2
votes
1answer
44 views
Identifying a frame, Ethernet or IEEE 802.3?
I've been asked to determine whether a frame is an Ethernet or IEEE 802.3 frame.
I have researched Ethernet and IEEE 802.3 and found the format of each frame, but nothing about the frame in question ...
2
votes
1answer
251 views
Using arduino Ethernet.h under Eclipse
I want to use eclipse for Arduino development and I have some issues.
I use Eclipse + Eclipse AVR plugin + WinAVR. I managed to compile the Arduino core library into a static library.
Now I want to ...
2
votes
1answer
82 views
Netmask, CIDR, Network and Broadcat IP address [closed]
I would like read netmask, network and broadcast address from an IP address. Basically I’m confused with netmask, CIDR, network and Broadcat terms, could anyone please help me to understand these ...
2
votes
2answers
620 views
What is the total length of pure TCP Ack sent over ethernet?
I have captured a pure TCP ack using Microsoft Network Monitor. It shows the captured frame length as 54 bytes. IP header (20 bytes) + TCP Header (20 bytes) + Src MAC (6 bytes) + Dst MAC (6 bytes) + ...
2
votes
1answer
803 views
Launch the Android x86 image on the target using ethernet
I want to launch android image to my x86 based target device by using Ethernet in eclipse. Presently i can boot android using USB or CD-ROM. So is it possible this directly over ethernet?? so i can ...
2
votes
3answers
140 views
Synchronizing time between two PCs via TCP/IP, no server
I've got two PCs connected by LAN. When the user alters the time (via my application) on one, I'd like the time on the second to be updated too (or the second machine could poll the first). There's no ...
2
votes
2answers
376 views
How to monitor Ethernet connection status
How can I monitor if Ethernet cables are plugged in or not from .NET for a given Ethernet connection?
I would like to enumerate all Ethernet connections and subscribe to any connection status ...
2
votes
1answer
364 views
How to remove Ethernet layer from a pcap file?
I have a pcap captured with Wireshark. Is there any function in Wireshark that will strip Ethernet layer from the result? Or any command line tool to do it?
2
votes
1answer
302 views
transfering bits in an ip(IPv4) datagram
The bits in Ethernet are transferred in LSB first fashion, but IPv4 datagram is to be transmitted in big endian byte order.
e.g.
assume an ethernet frame with destination address as 12-34-56-78-9A-BC ...
2
votes
1answer
161 views
How many bits can be transfered through Ethernet at each time?
I am writing a networking application. It has some unxpected lags. I need to calculate some figures but I cant find an information - how many bits can be transferes through Ethernet connection at each ...
2
votes
2answers
851 views
PIC 18 controller as serial to ethernet bridge
I am planning to use PIC18F6*** serial microntroller for my project serial-ethernet converter. Once I will put my hex code in PIC micro-controller for send recieve serial port data I will use the ...
2
votes
3answers
369 views
How to get the IP address of a remote host from its Ethernet address?
I'm looking for some Linux code to find an IP address from an Ethernet address. I suppose I have to do some inverse ARP trickery but I don't find any example...
2
votes
3answers
621 views
Sending data between two ethernet interfaces on the same box
I would like to send data between two ethernet interfaces that are connected with a crossover cable in Linux. The two ethernet interfaces are on the same box. I defined the ethernet interfaces to ...
2
votes
4answers
300 views
Cannot achieve full speed on Symmetrical Internet Connection
We are using a business Ethernet connection (3Mbit upload, 3Mbit download) and trying to understand issues with our tested bandwidth speeds. When uploading a large file we sustain 340 KB/s; ...
2
votes
1answer
828 views
Why I receive no answer from an ARP request?
I'm working on an embedded device that connects on local network with RJ45 and when the system sends an ARP request to know the mac address of the gateway, no answer at all.
If I clear the arp table ...
2
votes
4answers
838 views
How to write to & read from network card in x86 assembly?
does anyone know how to gain access to devices such as an ethernet port on a mainboard or on a pci card?
Are there special registers? Opcodes? Do I have to make a call to the OS? If so, how?
Thanks ...
2
votes
1answer
2k views
Overhead with PPP and Ethernet
What is the overhead for PPP and Ethernet sending 5000 bytes?
Frame size for Point-to-Point Protocol: 8 bytes
MTU: 500 bytes
Frame size for Ethernet: 18 bytes
MTU: 1500 bytes
Both sending 5000 ...
2
votes
3answers
486 views
Which ARM processor should be used for transfering data via ethernet?
The question below was related to the 8051 family as it has only the serial ports. Now when i found out that the ARM processors have inbuilt ethernet facility i decided to mov on to the ARM's. So ...
2
votes
2answers
268 views
The same driver for multiple network cards — performance bottleneck?
I'm using driver e1000e for multiple Intel network cards (Intel EXPI9402PT, based on 82571EB chip). The problem is that when I'm trying to utilize maximum speed (1GB) on more than one interface, speed ...
2
votes
10answers
630 views
Easy Button to UDP Packet - Control board terminology
For those who deal with microcontroller programming...
I want to take a momentary contact switch (let's say a Staples Easy Button, since that's the most fun momentary contact switch around), and when ...
2
votes
5answers
703 views
Sniffing data from a switch
I have 2 network devices that talk to each other over Ethernet. I would like to sniff the traffic using Wireshark. But the devices are going through a switch. The switch routes the traffic to only ...
2
votes
6answers
5k views
How can I access netstat-like Ethernet statistics from a Windows program
How can I access Ethernet statistics from C/C++ code like netstat -e?
Interface Statistics
Received Sent
Bytes 21010071 15425579
...
1
vote
1answer
29 views
Send an IP packet with Packet.Net and SharpPcap but generate ethernet frame
I'm trying to send a raw UDP packet with Packet.Net but the device.SendPacket() function only seems to accept link level PDUs which means I have to figure out the source and destination MAC addresses ...
1
vote
2answers
48 views
Arduino EthernetServer receiving unexpected values from Python client
I'm attempting to talk an Arduino with an ethernet shield from a Python client. I'm getting (what seem to be) junk values on the Arduino server side as soon as the Python client tries to connect. I ...
1
vote
1answer
113 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
104 views
Ethernet begin blocks for 60 seconds if there's no ethernet cable
I'm building a clock. I want to set the clock by plugging an ethernet cable into the clock. Most of the time the clock would not be plugged into the internet.
I have an arudino board and an ethernet ...
1
vote
2answers
67 views
Simple Http alternative for Wireshark
In web development, I usually use Firebug. But now I have to use Wireshark to monitor Http requests sent by an Android simulator. Wireshark is a fantastic tool, however it is too fat for what I'm ...
1
vote
1answer
257 views
Arduino Ethernet shield v1.1 ENC28J60 MAC address
I purchased an Ethernet shield, v1.1 ENC28J60. There came no paper/sticky with the MAC address of the card. I'm trying to run the examples and nothing is working.
I think the problem is the MAC ...