我最近买了一个二手的 Aerohive AP,没有 GUI。我通过长按按钮来重置它。现在我想将它设置为普通的 WiFi AP,没有任何花哨的 Hive 东西。只有一个带宽和范围最大的 SSID。
我找不到我的特定型号(AP245X rev. A)的 CLI 手册。我可以通过 SSH 进入。关于运行哪些命令,您有什么想法吗?
答案1
更新:请阅读此文:https://gist.github.com/samdoran/6bb5a37c31a738450c04150046c1c039
我找到了答案(在钥匙的帮助下?
)。我做了以下事情:
#disables some sort of management thing
no capwap client enable
#creates a password
security-object MyWifiNetwork
#sets the password and encryption method
security-object MyWifiNetwork security protocol-suite wpa2-aes-psk ascii-key superawesomepassword
#creates a network name
ssid MyWifiNetwork
#assigns the password to the network name
ssid MyWifiNetwork security-object MyWifiNetwork
#I forget what this does (these comments are an edit)
security-object MyWifiNetwork default-user-profile-attr 0
#sets the 2.4GHz radio to use the network name
interface wifi0 ssid MyWifiNetwork
#sets the 5GHz radio to use the network name
interface wifi1 ssid MyWifiNetwork
#the AP asks clients to use 5GHz if possible
radio profile MyWifiNetwork band-steering enable
#the AP asks clients to use 5GHz if fewer than 80% of clients are on 5GHz
radio profile MyWifiNetwork band-steering balance-band threshold 80
#by default the Aerohives like to have a backhaul on 5GHz band. This disables that
interface wifi1 mode access
#this feels pretty self-explanatory
save config
#print to console the list of interfaces and what are assigned to do
show interface
Aerohive 都使用相同的默认蜂巢 ID,因此如果您在同一个以太网上设置多个,它们可能会相互找到并协作,但我不确定。祝你好运!