
Link Layer
文章平均质量分 72
安静呆一会儿
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
r8169
drivers/net/ethernet/realtek/r8169.cinclude/linux/mod_devicetable.hstruct pci_device_id { __u32 vendor, device; /* Vendor and device ID or PCI_ANY_ID*/ __u32 subvendor, subdevice;原创 2014-08-27 09:20:48 · 1373 阅读 · 0 评论 -
tcp-ip Link Layer
The purpose of the link layer in the TCP/IP protocol suite is to send and receiveIP datagrams for the IP module, ARP requests and replies for the ARP module, andRARP requests and replies for the原创 2014-12-25 16:33:36 · 512 阅读 · 0 评论 -
以太网实现
以太网的头部为14字节,6字节源地址,6字节目的地址,2字节类型域。它的定义如下:[ include/uapi/linux/if_ether.h ]/* * This is an Ethernet frame header. * ETH_ALEN = 6 */struct ethhdr { unsigned char h_dest[ETH_ALEN]; /* destinati原创 2014-11-26 13:20:26 · 1076 阅读 · 0 评论 -
网卡驱动:8139Cp
这个网卡驱动也是一个PCI驱动,所以先来原创 2014-09-09 17:07:59 · 3219 阅读 · 0 评论 -
Interrupts and Network Drivers
devices and the kernel can use two main techniquesfor exchanging data: polling and interrupts原创 2014-07-31 10:01:47 · 694 阅读 · 0 评论 -
Network Device Initialization
Among the various initialization tasks, we are mainly interested in three:原创 2014-07-21 14:10:16 · 770 阅读 · 0 评论 -
The PCI Layer and Network Interface Cards
include/linux/mod_devicetable.hinclude/linux/pci.h原创 2014-07-22 15:43:17 · 514 阅读 · 0 评论 -
Device Registration and Initialization
When a Device Is RegisteredThe registration of a network device takes place in the following situations:Loading an NIC’s device driverAn NIC’s device driver is initialized at boot time if it is原创 2014-07-29 09:48:28 · 1398 阅读 · 0 评论 -
Bridging: Concepts
Repeaters, Bridges, and RoutersArepeater is a device, typically equipped with two ports, that simply copies whatit receives on one port to the other, and vice versa. It copies data bit by bit; it原创 2014-08-07 13:33:11 · 651 阅读 · 0 评论 -
Bridging: The Spanning Tree Protocol
we will see how the Spanning Tree Protocol (STP) manages to makeany topology loop free, and therefore allows the network administrator to use topologieswith redundant links. In particular原创 2014-08-07 13:47:05 · 632 阅读 · 0 评论 -
Bridging: Linux Implementation
Bridge Device AbstractionIn Linux, a bridge is a virtual device. As such, it cannot receive or transmit anything unless you bind one or more real devices to it. We will use the term enslave to refer原创 2014-08-08 14:31:21 · 357 阅读 · 0 评论 -
tcp-ip MTU
There is a limit on the size of the frame for both Ethernet encapsulation and 802.3 encapsulation. This limits the number of bytes of data to 1500 and 1492, respectively. This characteristic of the li原创 2014-12-26 09:33:54 · 438 阅读 · 0 评论