Bonding:Ethernet Channel Bonding enables two or
more Network Interfaces Card (NIC) to a single virtual NIC card which may
increase the bandwidth and p...
分类:
Web程序 时间:
2014-06-07 03:38:59
阅读次数:
267
我们已经完成了lwIP的系统移植,那么我们就需要进行ethernet的移植工作。
ethernet的移植工作,主要是“填空“ethernetif.c的过程!(PS. 再一次感谢Adam Dunkels大侠的无私工作!以及对他的敬意!)
ethernetif.c位置(../src/netif)
一、移植硬件
1....
分类:
Web程序 时间:
2014-06-05 09:16:05
阅读次数:
680
lwIP作为RTOS准标配的TCP/IP,在我们编写网络模块时,经常用到。
本移植笔记使用lwIP的版本为V1.4.1。
MDK: V4.0+
RTOS: μC/OS-II V2.91
Eval-Board: LPC1752
Ethernet: ENC28J60
移植lwIP到OS其实就是实现sys.h的过程。...
分类:
其他好文 时间:
2014-06-04 21:52:32
阅读次数:
635
首先,要检查一下网络适配器的型号。[root@localhost sam]# lspci
-nn | grep -i net03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co.,
Ltd. RTL8111/8168B PCI Ex...
分类:
其他好文 时间:
2014-06-03 04:56:28
阅读次数:
498
测试运行平台:CentOS 6.5发行版,内核版本3.11
1. Linux抓包源程序
在OSI七层模型中,网卡工作在物理层和数据链路层的MAC子层。
进行网络通信时,源主机通过socket(或其它)应用程序产生IP报文,经过各个OSI层层封装,数据包以Ethernet帧的形式进入物理层。Ethernet帧包含源主机地址、IP报文、目标地址(IP地址、端口号或映射的6字节...
分类:
系统相关 时间:
2014-06-03 02:45:05
阅读次数:
428
select * from channel where pid=0 union select *
from channel where pid=1 union select * from channel where pid=3 limit
5,10这里的limit限制了返回的union(合并)后的结...
分类:
其他好文 时间:
2014-05-31 01:47:26
阅读次数:
218
channel 不仅能够控制数据传输,还可以控制执行流。1.
关闭的channel从来都不会阻塞关闭的channel不能传数据但是可以接受数据,例子```package mainimport "fmt"func
main() { ch := make(chan bool, 2) ...
分类:
其他好文 时间:
2014-05-30 00:08:36
阅读次数:
250
ifconfig |grep "inet addr"|cut -f 2 -d":"|cut
-f 1 -d " "|head -n 1ifconfigeth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.1.100 ....
分类:
系统相关 时间:
2014-05-29 20:55:58
阅读次数:
435
手头有一块6410开发板,已经有别人提供的uboot代码,但是在检测dm9000时显示下面的输出:Net: No ethernet
found.当然其他网络命令例如ping等都执行失败。但是在(include/configs/*6410*.h)下添加一行(增加debug)信息:#define
D.....
分类:
其他好文 时间:
2014-05-28 18:54:24
阅读次数:
483
图片有问题,印象笔记的链接:
http://app.yinxiang.com/shard/s5/sh/e2ec3ece-55fc-42d6-942d-9359cdf965e7/9543bdfad422ac8a8a2e5fa91e572a89
环境搭建:
1.官网下载android studio:http://developer.android.com/sdk/installing/studi...
分类:
移动开发 时间:
2014-05-24 18:11:17
阅读次数:
427