上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 44 下一页
摘要: client模式下,响应的接口wlan0 加入桥接时出现如下错误: root@root:~# brctl addif br-lan wlan0brctl: bridge br-lan: Operation not supported。 查看相应busybox代码(brctl.c),函数为 brctl 阅读全文
posted @ 2017-03-07 15:55 hbg-rohens 阅读(3525) 评论(0) 推荐(0)
摘要: 超级wifi (super wi-fi)是相对于现有的wifi提出的改进版,执行响应的 802.11af标准。 802.11af 标准是2014年2月提出的,它的主要特点是"建议在电视频率之间使用较低的频率的白色空间",频段主要是指30-450MHZ。超级wifi使用OFDM物理层,占用空间带宽为6 阅读全文
posted @ 2017-03-02 17:07 hbg-rohens 阅读(1284) 评论(0) 推荐(0)
摘要: 理论上的 中继(repeater)模式, 只有连接的最后一个才会有信号发出,中间的连接节点是没有信号发出的。 AP+WDS模式:就是每一个路由都有信号发出,可以进行信号的全方位覆盖。 阅读全文
posted @ 2017-02-28 16:41 hbg-rohens 阅读(4688) 评论(0) 推荐(0)
摘要: linux下利用route命令查看当前路由信息时,会打印如下信息: root@root:/# route Kernel IP routing tableDestination Gateway Genmask Flags Metric Ref Use Iface192.168.2.0 * 255.25 阅读全文
posted @ 2017-02-23 08:55 hbg-rohens 阅读(356) 评论(0) 推荐(0)
摘要: 格式:: your comment here 格式:# your comment here 写代码注释(单行注释)。 例如: 格式:: 'comment line1 comment line2 more comments' 写多行注释。 格式:: >file 格式:>file 清空文件file的内容 阅读全文
posted @ 2017-02-20 14:16 hbg-rohens 阅读(848) 评论(0) 推荐(0)
摘要: 在openwrt的makefile中经常能看见这样的描述: define KernelPackage/mt7602e CATEGORY:=MTK Properties TITLE:=MTK MT7602e wifi AP driver FILES:=$(PKG_BUILD_DIR)/build/mt 阅读全文
posted @ 2017-02-14 17:07 hbg-rohens 阅读(973) 评论(0) 推荐(0)
摘要: 射频知识; 功率/电平(dBm):放大器的输出能力,一般单位为w、mw、dBm。dBm是取1mw作基准值,以分贝表示的绝对功率电平。 换算公式:电平(dBm)=10lgw5W → 10lg5000 = 37dBm10W → 10lg10000 = 40dBm20W → 10lg20000 = 43d 阅读全文
posted @ 2017-02-10 10:16 hbg-rohens 阅读(3908) 评论(0) 推荐(0)
摘要: route配置项默认保存在文件 /etc/config/network 中。 配置route的接口“interface” 使用的协议需要为dhcp才可。 config interface 'wan' option ifname 'eth0.2' option proto 'dhcp' ....... 阅读全文
posted @ 2017-02-08 09:46 hbg-rohens 阅读(1386) 评论(0) 推荐(0)
摘要: 由于使用的使用的编译器不同导致, 需要使用shell为 #!/bin/bash 即可。 阅读全文
posted @ 2017-02-06 15:15 hbg-rohens 阅读(3795) 评论(0) 推荐(0)
摘要: shell脚本中echo显示内容带颜色显示,echo显示带颜色,需要使用参数-e 格式如下: echo -e “\033[字背景颜色;文字颜色m字符串\033[0m” 例如: echo -e “\033[41;36m something here \033[0m” 其中41的位置代表底色, 36的位 阅读全文
posted @ 2017-02-06 11:13 hbg-rohens 阅读(372) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 44 下一页