上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
摘要: 一 退出kermit1: ctrl+ \2: 按c。3: 输入 exit。 阅读全文
posted @ 2013-11-21 09:00 安心种田 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 一: svn diff(1) 比较本地修改。 svn diff filename;(2)比较工作拷贝与版本库。 svn diff -r 3 filename;(3)比较版本库与版本库。 svn diff -r 2:3 filename;二: svn log svn log -v -r 160 -v ... 阅读全文
posted @ 2013-11-20 19:28 安心种田 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 一:1. ONU-G: This managed entity represents the ONU as equipment.2. ONU2-G: This managed entity contains additional attributes associated with a PON ONU. (1) Ethernet connectivity mode, (2) QoS configuration flexibility.3. ONU data: This managed entity models the MIB itself.4. Software image: This ma 阅读全文
posted @ 2013-10-28 15:16 安心种田 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 以Ubuntu系统中的readdir函数为例。一: #include (dp = opendir(argv[1])) = NULL (dirp = readdir(dp)) != NULL二: 在 /usr/include中, dirent.h。 #include #ifndef __USE_FILE_OFFSET64 extern struct dirent *readdir (DIR *__dirp) __nonnull ((1)); #else # ifdef __REDIRECT extern struct dirent *__REDIRECT (readdir, (DIR *_... 阅读全文
posted @ 2013-10-28 09:06 安心种田 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 1. 从官网上下载flash player的 .tar.gz包。2. 解压 .tar.gz, 得到libflashplayer.so和 usr文件夹。3. 修改权限, chmod 777 libflashplayer.so。 chmod 777 -R ./usr。4. 移动位置, sudo cp libflashplayer.so /usr/lib/mozilla/plugins/ sudo cp -r ./usr/* /usr/ 阅读全文
posted @ 2013-10-24 13:55 安心种田 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1. 802.1q 描述VLAN, 称为C-TAG。 VLAN tag 位于包的 源mac地址与IP包头之间, 有4个Byte. 前2个byte, 0x8100, tag protocol ID. 后3个bit, user priority. 后1个bit, canonical format indicator, 标准格式指示位, 默认0, 如果为1, 那么以太网交换机不对该帧进行转发。 后12个bit, VLAN ID。2. 802.1ad 是对802.1q的扩展, 其核心思想是将用户私网VLAN tag封装到公网VLANtag中, 报文带着两层tag穿越服务商的骨干网络, 从而为用户提供一 阅读全文
posted @ 2013-10-23 09:57 安心种田 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 一: 15.5.3 GEM连接模式协商流程 ONU应至少同时支持N:P bridge-filtering方式和 N:M bridge-mapping 两种链接方式。 N-P bridge-filtering, 有vlan tagging filtering data, P侧2个mac bridge port config data, 各上接1个GEM interworking TP. N-M bridge-mapping, 无vlan tagging filtering data, P侧1个macbrige port config data, 上接 1个802.1p mapper svc pr 阅读全文
posted @ 2013-10-23 08:42 安心种田 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1. /etc/apt/apt.conf Acquire::http::proxy"http://username:password@10.0.2.254:8080/";2: hostname sudo vi /etc/hostname; sudo vi /etc/hosts; 阅读全文
posted @ 2013-10-22 10:30 安心种田 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 1: VEIP : Virtual Ethernet Interface Point, 可以认为是GPON系统中, 对于LAN侧业务流得抽象上行端口。2: OMCI: ONU management and control interface. (1) specifies the managed entities of a protocal-independent management information base(MIB). (2) covers the ONU management and control channel, protocol and detailed mess... 阅读全文
posted @ 2013-10-18 15:32 安心种田 阅读(2137) 评论(0) 推荐(0) 编辑
摘要: 4. 标准I/O函数提供一种对不用缓冲I/O函数的带缓冲的接口, 使用标准I/O函数可以无需担心如何选取最佳的缓冲区大小, 例如1-2中,BUFFSIZE常量的大小。 使用标准I/O函数的另一个优点是简化了对输入行的处理(常常发生在UNIX的应用中)。 例如, fgets函数读完整的一行, 而read函数读指定的字节数。 在5.4节中, 我们将了解到标注I/O函数库提供了我们能够控制该库所使用的缓冲风格的函数。 我们最熟悉的标注I/O函数是printf。 在调用printf的程序中, 总是包括, 该头文件包含了所有标准I/O函数的原型。 程序 1-3 中: 函数getc一次读一个字符, 然后函 阅读全文
posted @ 2013-10-15 11:09 安心种田 阅读(226) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页