Hi!
You've asked:
1) "what the BER and how to solve it ?"
2) "what the Loops ? and how to use it in different alarms?"
First, BER = Bit Error Rate, the chance that a bit-error will occur.
BER is often expressed in scientific notation such as 10E-6: which means: "One in a million bits passing, there will be 1 bit error". So, the BER will tell you something how well a channel is.
Another practical example: traditional 2 Mbit/s circuit (E1): 2048 kbit/s - so each second, 2048000 bits will pass. With a BER of 10E-6, it is very likely 2 bits are wrong of those 2048000 bits that has passed.
How to solve this? Many approaches:
1) Improve the quality of the link. If a BER is very high (unusual high for your media) then something is wrong and you have to investigate. For a radio link, it means: "Increase the quality of your radio link - often by increasing power, with the hope your SNR (Signal to Noise Ratio) improves, hence - lowers the BER.
2) Implement FEC (Forward Error Correction) ... With BER = 10E-6 if you already know 1 out of a million bits will be wrong, then make sure you can detect and calculate the correct value (fix the error) of that wrong bit.
3) If you have a link with high BER (i.e. a lot of bits are going to be wrong - and you know it)... try to decrease the packetsize (i.e. sending only small groups of bits) and hope your higher level protocols can request a resend. By using only small packets, you hope - the amount of packets going through is still okay.
Loops...
By setting a 'loop' somewhere in the circuit, you needed only one BER tester at one end. A loop, is like a mirror: all the traffic sent, is being reflected back where it came from. So! as troubleshooting, you could measure the BER, set a loop and if the data came back clean (without errors) then you know... 'until the loop and back, it is fine'.
Then you move the loop further down the line... until you see a sudden increase of errors... if that happens, you know, something is wrong between loop1 and loop2... and you can narrow down your investigation.
Hope this helps.
ahXing