博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ros ap 的无线中继
阅读量:5264 次
发布时间:2019-06-14

本文共 2194 字,大约阅读时间需要 7 分钟。

https://wiki.mikrotik.com/wiki/Manual:Interface/Wireless#Repeater

Wireless repeater will allow to receive the signal from the AP and repeat the signal using the same physical interface locally for connecting other clients. This will allow to extend the wireless service for the wireless clients. Wireless repeater function will configure the wireless interface to connect to the AP with station-bridge or station-pseudobridge option, create a virtual AP interface, create a bridge interface and add both (main and the virtual) interfaces to the bridge ports.

If your AP supports button-enabled WPS mode, you can use the automatic setup command:

/interface wireless setup-repeater wlan1

The setup-repeater does the following steps:

  • searches for WPS AP with button pushed
  • acquires SSID, key, channel from AP
  • resets main master interface config (same as reset-configuration)
  • removes all bridge ports that were added for virtual interfaces added to this master (so there are no dangling invalid bridge ports later)
  • removes all virtual interfaces added to this master
  • creates security profile with name "<interfacename>-<ssid>-repeater", if such security profile already exists does not create new, just updates settings
  • configures master interface, interface mode is selected like this: if AP supports bridge mode, use station-bridge, else if AP supports WDS, use station-wds, else use station-pseudobridge
  • creates virtual AP interface with same SSID and security profile as master
  • if master interface is not in some bridge, creates new bridge interface and adds master interface to it
  • adds virtual AP interface to the same bridge master interface is in.

If your AP does not support WPS, it is possible to specify the settings manually, using these parameters:

  • address - MAC address of AP to setup repeater for (optional)
  • ssid - SSID of AP to setup repeater for (optional)
  • passphrase - key to use for AP - if this IS specified, command will just scan for AP and create security profile based on info in beacon and with this passphrase. If this IS NOT specified, command will do WPS to find out passphrase.

The same options are available in the GUI:

转载于:https://www.cnblogs.com/itfat/p/10985995.html

你可能感兴趣的文章
S5PV210根文件系统的制作(一)
查看>>
centos下同时启动多个tomcat
查看>>
slab分配器
查看>>
数据清洗
查看>>
【读书笔记】C#高级编程 第三章 对象和类型
查看>>
针对sl的ICSharpCode.SharpZipLib,只保留zip,gzip的流压缩、解压缩功能
查看>>
【转】代码中特殊的注释技术——TODO、FIXME和XXX的用处
查看>>
【SVM】libsvm-python
查看>>
Jmeter接口压力测试,Java.net.BindException: Address already in use: connect
查看>>
Leetcode Balanced Binary Tree
查看>>
Leetcode 92. Reverse Linked List II
查看>>
九.python面向对象(双下方法内置方法)
查看>>
go:channel(未完)
查看>>
[JS]递归对象或数组
查看>>
LeetCode(17) - Letter Combinations of a Phone Number
查看>>
Linux查找命令对比(find、locate、whereis、which、type、grep)
查看>>
路由器外接硬盘做nas可行吗?
查看>>
python:从迭代器,到生成器,再到协程的示例代码
查看>>
Java多线程系列——原子类的实现(CAS算法)
查看>>
在Ubuntu下配置Apache多域名服务器
查看>>