Is this a bug in MT or with SR-2 card where after a few minutes or hour all of the client signal levels report in the positive 100’s and they can’t pass traffic?
I’ve seen this before but can’t remember what the cause was.
This is MT 2.9.23 on RB500 series with one SR-2 card.
You’ll probably need to configure the TX power as posted here, I had problems with the SR2 until I did that. I really wish they’d put something in the manual about it, or sticky that thread. SOMETHING so that this question won’t keep getting posted again and again.
I too have seen this while running a scan with CM9 radios. There used to be a bug (some time ago) that showed this in the registration table, but I haven’t seen this in a long time, just in scans.
The positive 100’s appear due to the binaric nature of a byte. If you have ever programmed in Assembler, you understand what I am saying.
Usually, 8-bit sequence declared as type:byte allows numbers from 0 to 255. 8-bit type:small_integer stands for -127..127 and the very first bit of the byte is a sign-bit. If you decrease the negative number by 1 consequently, after -127 you will be getting bit inversion in the very first bit and the resulting number will be in positive 100’s. So, it is the bug in the RouterOS, when signal gets too weak, it jumps to positive value.