2

从事特定于大学网络的课程项目。

这个想法是,如果我们可以获取校园网络会话/连接的识别特征,我们可以绘制出 AP 并将其与其位置坐标相关联,并将它们绘制在地图上。更具体地说,我们正在尝试确定设备连接到哪个 AP。

基本上,用户会从支持 wi-fi 的设备(最好是 iPad 或 iPod Touch)在 Intranet 上打开网页,然后在页面加载时或通过操作事件捕获唯一标识符;我们可以反过来将其与纬度和经度坐标相关联。这里的想法是唯一标识符将被发送并存储到数据库字段中(几乎就像留言簿提交一样)。然后,在外部单独的公共网页上——查看者将能够看到这些唯一标识符返回并翻译为地图上绘制的最近访问的位置。这将转化为手动“登记”跟踪服务。

捕获 IP 地址将不起作用,因为它们不是静态的。

4

1 回答 1

0

BSSID is part of the active connection attributes set and as such is stored inside the client networking component of the OS. You need to query it by calling the appropriate API of your OS (e.g., in Windows it would be WlanQueryInterface). You'll also need to be able to call this API from script, you can find some info about this here: How to call Windows API functions in JScript?

于 2012-10-24T21:07:01.427 回答