1.这里的扫描怎么实现的先找一些luci代码,在openwrt21版本后,luci用js替换了lua写后台,先找一些代码路径
在openrwt15这部分代码是在这个目录下
feeds/luci/modules/luci-mod-admin-full/luasrc/view/admin_network/wifi_join.htm
里面包含了html和lua,我们看一些lua部分是怎么实现的,直接copy代码
#!/usr/bin/lua
dev = arg[1]
local sys = require "luci.sys"
local utl = require "luci.util"
local iw = luci.sys.wifi.getiwinfo(dev)
function scanlist(times)
local i, k, v
local l = { }
local s = { }
for i = 1, times do
for k, v in ipairs(iw.scanlist or { }) do
if not s[v.bssid] then
l[#l+1] = v
s[v.bssid] = true
end
end
end
return l
end
function format_wifi_encryption(info)
if info.wep == true then
return "WEP"
elseif info.wpa > 0 then
return string.format("Pairwise: %s / Group: %s >%s - %s",
table.concat(info.pair_ciphers, ", "),
table.concat(info.group_ciphers, ", "),
(info.wpa == 3) and string.format("mixed WPA/WPA2")
or (info.wpa == 2 and "WPA2" or "WPA"),
table.concat(info.auth_suites, ", ")
)
elseif info.enabled then
return unknown
else
return open
end
end
for i, net in ipairs(scanlist(3)) do
net.encryption = net.encryption or { }
print("channel:",net.channel);
print("ssid:",net.ssid);
print("bssid:",net.bssid);
print("Mode:",net.mode);
wep=net.encryption.wep and 1 or 0
print("Encryption:",format_wifi_encryption(net.encryption));
print("");
end
使用方法:
root@OPENWRT:~# ./test.lua ra0
还有就是openwrt和Web服务器的交互,我们请求了Web服务器,它不是回josn格式或者什么xml格式数据,而是直接回给了我们html文件,我们可以通过抓包看到
这是服务器托管我们的http get请求和得到下响应
把这个html直接用浏览器打开是这个样子,缺少了一些css这些样式的东西
openwrt21之后代码路径变为了如下:
feeds/luci/modules/luci-base/htdocs/luci-static/resources/network.js
feeds/luci/docs/jsapi/network.js.html
大概代码是这样子,看不懂,截取部分,用过调用ubus命令得到数据
*/
getMeshID: function() {
if (this.getMode() !=服务器托管 'mesh')
return null;
return this.ubus('net', 'config', 'mesh_id') || this.get('mesh_id');
},
/**
* Get the configured BSSID of the wireless network.
*
* @returns {null|string}
* Returns the BSSID value or `null` if none has been specified.
*/
getBSSID: function() {
return this.ubus('net', 'config', 'bssid') || this.get('bssid');
},
类似这样:ubus call iwinfo info ‘{ “device”: “wlan0” }’
2.虚拟机给路由器开发板传文件,确保虚拟机已安装ssh
scp + 虚拟机里面要传的文件 + 开发板用户名@开发板ip地址:开发板放文件的路劲
scp mongoose root@192.168.1.1:/bin
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
先说一下自己的情况,本科生,19年通过校招进入南京某软件公司,干了接近2年的功能测试,今年年初,感觉自己不能够在这样下去了,长时间呆在一个舒适的环境会让一个人堕落!而我已经在一个企业干了2年的功能测试,已经让我变得不思进取,谈了2年的女朋友也因为我的心态和工资…