Problem with Elevation - Scan Frequency in Json

Hi Team,

we are trying to Elevate an Ubiquiti device (Nanobeam M5) by a remote configuration compiling a json file.

We want to insert a specific range of frequency but we don't know the correct syntax.

Does anyone have a json template with this specific settings? 

Thanks in advance.

You can setup a radio the way you want and create a backup then edit it with a text editor like Notepad++.  Its in json format so you need to keep the matched {}'s  but its pretty easy to figure out.  If you exclude lines then they are not set so just grap the code you need.

1 Like

@gquarta wrote:

Hi Team,

we are trying to Elevate an Ubiquiti device (Nanobeam M5) by a remote configuration compiling a json file.

We want to insert a specific range of frequency but we don't know the correct syntax.

Does anyone have a json template with this specific settings? 

Thanks in advance.


Hi,

Please find example below:

"wirelessInterfaceScanFrequencyBandwidth":	"15",
		"wirelessInterfaceScanFrequencyListTwenty":	"5775 5780 5785 5790 5795 5800 5805 5810 5815",
		"wirelessInterfaceScanFrequencyListForty":	"5600 5605 5610 5615",
		"wirelessInterfaceScanFrequencyListTen":	"5420 5425 5430 5435",
		"wirelessInterfaceScanFrequencyListFive":	"5480 5485 5490 5495",
Frequency Bandwidth as bitmask, fields are:
1 - 20Mhz,
            2 - 40Mhz,
            4 - 10Mhz,
            8 - 5Mhz

In provided example 15 means that 5/10/20/40 MHz bandwidths are used for scanning.

Thank you.

3 Likes