/network/ap-get-config 接口
获取AP 信息。
请求方式
POST /api/network/ap-get-config
参数 | 说明 |
---|---|
iface | 网卡名称。 |
返回数据
{
"ssid": "USB-Fusion_3002",
"hw_mode": "g",
"channel": 1,
"country-code": "CN",
"support-freq": [
{
"freq": "2.4G",
"hw-mode": "g"
},
{
"freq": "5G",
"hw-mode": "a"
}
],
"support-channels": {
"channels": [
{
"code": [
"US",
"CA"
],
"2g-chans": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11
],
"5g-chans": [
36,
40,
44,
48,
149,
153,
157,
161,
165
]
},
{
"code": [
"AL",
"AM",
"AT",
"AZ",
"BA",
"BE",
"BG",
"BY",
"CH",
"CY",
"CZ",
"DE",
"DK",
"EE",
"EL",
"ES",
"FI",
"FR",
"GE",
"HR",
"HU",
"IE",
"IS",
"IT",
"LI",
"LT",
"LU",
"LV",
"MD",
"ME",
"MK",
"MT",
"NL",
"NO",
"PL",
"PT",
"RO",
"RS",
"RU",
"SE",
"SI",
"SK",
"TR",
"UA",
"UK"
],
"2g-chans": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13
],
"5g-chans": [
36,
40,
44,
48,
149,
153,
157,
161,
165
]
},
{
"code": [
"JP"
],
"2g-chans": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13
],
"5g-chans": [
36,
40,
44,
48
]
},
{
"code": [
"CN"
],
"2g-chans": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13
],
"5g-chans": [
36,
40,
44,
48,
149,
153,
157,
161,
165
]
}
],
"global-2g-chans": [
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13
],
"global-5g-chans": [
36,
40,
44,
48,
149,
153,
157,
161,
165
]
},
"ipaddr": "192.168.67.1",
"dhcp-ip-start": "192.168.67.2",
"dhcp-ip-end": "192.168.67.254",
"first-use": false,
"ap-to-sta-reboot-effect": true,
"sta-to-ap-reboot-effect": false,
"enable-surfing": true,
"status": 0
}
属性 | 说明 |
---|---|
status | 0:请求成功。返回其它值请参考 API 状态码。 |
ssid | AP 名称。 |
hw_mode | wifi 工作频率 a:5GHz g: 2.4GHz。 |
channel | AP 默认通道。 |
country-code | 参考ISO/IEC 3166-1。 |
support-freq | 支持的频率。 |
ipaddr | IP地址。 |
dhcp-ip-start | DHCP 分配的IP起始地址。 |
dhcp-ip-end | DHCP 分配的IP结束地址。 |
enable-surfing | 使能冲浪上网。 |
first-use | 首次切换到AP模式。 |
ap-to-sta-reboot-effect | AP切换STA是否需要reboot。 |
sta-to-ap-reboot-effect | STA切换AP是否需要reboot。 |