<p>Harald Welte has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.osmocom.org/12832">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">manual: Add sections on 3G/4G neighbor cells<br><br>This adds some instructions on how to configure 3G/4G neighbor<br>cells within osmo-bsc.   I didn't want to add a new top-level<br>chapter but instead chose to add it to the handover section which<br>describes also the configuration of 2G neighbors.<br><br>Change-Id: I81df1a453858b6fca80c8adf234b1d5b8bf5283d<br>---<br>M doc/manuals/chapters/handover.adoc<br>1 file changed, 102 insertions(+), 1 deletion(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/32/12832/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/doc/manuals/chapters/handover.adoc b/doc/manuals/chapters/handover.adoc</span><br><span>index 297eafc..c75b03c 100644</span><br><span>--- a/doc/manuals/chapters/handover.adoc</span><br><span>+++ b/doc/manuals/chapters/handover.adoc</span><br><span>@@ -19,7 +19,8 @@</span><br><span> OsmoBSC currently supports handover within one BSS and between separate BSS.</span><br><span> Whether inter-MSC is supported depends on the MSC implementation (to the BSC,</span><br><span> inter-MSC handover looks identical to inter-BSC handover). Inter-RAT handover</span><br><span style="color: hsl(0, 100%, 40%);">-is currently not implemented.</span><br><span style="color: hsl(120, 100%, 40%);">+is currently not implemented.  However, you may still advertise 3G and 4G neighbor cells</span><br><span style="color: hsl(120, 100%, 40%);">+in order to facilitate cell/RAT re-selection to those neighbors.</span><br><span> </span><br><span> At the time of writing, OsmoMSC's inter-BSC handover support is not complete</span><br><span> yet, so OsmoBSC can perform handover between separate BSS only in conjunction</span><br><span>@@ -575,3 +576,103 @@</span><br><span> - Algorithm 1 has no `min rxlev` setting.</span><br><span> - Algorithm 1 does not actually use any information besides the Measurement</span><br><span>   Reports, and hence can trivially treat all neighbor cells identically.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+=== Advertising 3G/4G neighbors</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+Despite osmo-bsc not supporting inter-RAT hand-over at this point, it</span><br><span style="color: hsl(120, 100%, 40%);">+still makes sense to advertise neighbor cells of other network</span><br><span style="color: hsl(120, 100%, 40%);">+technologies like UMTS/UTRAN (3G) and LTE/EUTRAN (4G).  This will help</span><br><span style="color: hsl(120, 100%, 40%);">+phones with idle-mode re-selection of the best available radio access</span><br><span style="color: hsl(120, 100%, 40%);">+technology (RAT).</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+For more information on the inter-RAT cell re-selection algorithm and its</span><br><span style="color: hsl(120, 100%, 40%);">+parameters, see 3GPP TS 45.008 - particularly Section 6.6.4 describing</span><br><span style="color: hsl(120, 100%, 40%);">+measurements on cells of other (non-GSM) RATs.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+Such neighbors are advertised as part of the SI2quater (System</span><br><span style="color: hsl(120, 100%, 40%);">+Information Type 2quater).</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+==== UMTS/UTRAN/3G neighbors</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+In order to advertise a 3G neighbor cell you have to specify the</span><br><span style="color: hsl(120, 100%, 40%);">+following properties:</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+* the UARFCN (UTRAN Absolute Radio Channel Number) on which the cell</span><br><span style="color: hsl(120, 100%, 40%);">+  broadcasts</span><br><span style="color: hsl(120, 100%, 40%);">+* the Scrambling Code of the cell</span><br><span style="color: hsl(120, 100%, 40%);">+* whether or not the cell uses diversity</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+In the following example, we're configuring a 3G neighbor cell on UARFCN</span><br><span style="color: hsl(120, 100%, 40%);">+1234 using the scrambling code 511 with no diversity:</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+----</span><br><span style="color: hsl(120, 100%, 40%);">+network</span><br><span style="color: hsl(120, 100%, 40%);">+ bts 0</span><br><span style="color: hsl(120, 100%, 40%);">+  si2quater neighbor-list add uarfcn 1234 511 0</span><br><span style="color: hsl(120, 100%, 40%);">+----</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+3G neighbor cells can be removed using the same command, just replacing</span><br><span style="color: hsl(120, 100%, 40%);">+`add` with `del`.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+==== LTE/EUTRAN/4G neighbors</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+In order to advertise a 4G neighbor cell you have to specify the</span><br><span style="color: hsl(120, 100%, 40%);">+following properties:</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+* EARFCN (EUTRAN Absolute Radio Channel Number) on which the cell</span><br><span style="color: hsl(120, 100%, 40%);">+  broadcasts</span><br><span style="color: hsl(120, 100%, 40%);">+* Reselection thresholds towards E-UTRAN cells:</span><br><span style="color: hsl(120, 100%, 40%);">+[width="30%"]</span><br><span style="color: hsl(120, 100%, 40%);">+|====</span><br><span style="color: hsl(120, 100%, 40%);">+| 0 | 0 dB</span><br><span style="color: hsl(120, 100%, 40%);">+| 1 | 2 dB</span><br><span style="color: hsl(120, 100%, 40%);">+| 2 | 4 dB</span><br><span style="color: hsl(120, 100%, 40%);">+| 3 | 6 dB</span><br><span style="color: hsl(120, 100%, 40%);">+| ... | ...</span><br><span style="color: hsl(120, 100%, 40%);">+| 31 | 62 dB</span><br><span style="color: hsl(120, 100%, 40%);">+|=====</span><br><span style="color: hsl(120, 100%, 40%);">+* Priority of E-UTRAN frequency: 0 = lowest priority, ..., 7 = highest priority</span><br><span style="color: hsl(120, 100%, 40%);">+* QRXLEVMIN parameter: Minimum required RX level in the UTRAN FDD cell</span><br><span style="color: hsl(120, 100%, 40%);">+  (dBm), see 3GPP TS 25.304.</span><br><span style="color: hsl(120, 100%, 40%);">+[width="30%"]</span><br><span style="color: hsl(120, 100%, 40%);">+|====</span><br><span style="color: hsl(120, 100%, 40%);">+| 0 | -140 dBm</span><br><span style="color: hsl(120, 100%, 40%);">+| 1 | -138 dBm</span><br><span style="color: hsl(120, 100%, 40%);">+| 2 | -136 dBm</span><br><span style="color: hsl(120, 100%, 40%);">+| ... | ...</span><br><span style="color: hsl(120, 100%, 40%);">+| 31 | -78 dBm</span><br><span style="color: hsl(120, 100%, 40%);">+|====</span><br><span style="color: hsl(120, 100%, 40%);">+* Measurement bandwidth in MHz, see 3GPP TS 44.018 and 3GPP TS 44.060.</span><br><span style="color: hsl(120, 100%, 40%);">+  This field specifies the minimum value of the channel bandwidth of all</span><br><span style="color: hsl(120, 100%, 40%);">+  valid E-UTRAN cells on the specified EARFCN. It is defined by the</span><br><span style="color: hsl(120, 100%, 40%);">+  parameter Transmission Bandwidth Configuration, N RB (see 3GPP TS</span><br><span style="color: hsl(120, 100%, 40%);">+  36.104). The values indicate the number of resource blocks over which</span><br><span style="color: hsl(120, 100%, 40%);">+  the mobile station could measure if the mobile station does not</span><br><span style="color: hsl(120, 100%, 40%);">+  support wideband RSRQ measurements (see 3GPP TS 24.008). A mobile</span><br><span style="color: hsl(120, 100%, 40%);">+  station supporting wideband RSRQ measurements shall measure over the</span><br><span style="color: hsl(120, 100%, 40%);">+  indicated number of resource blocks. The field is coded according to</span><br><span style="color: hsl(120, 100%, 40%);">+  the following table:</span><br><span style="color: hsl(120, 100%, 40%);">+[width="30%"]</span><br><span style="color: hsl(120, 100%, 40%);">+|====</span><br><span style="color: hsl(120, 100%, 40%);">+| 0 | N_RB = 6</span><br><span style="color: hsl(120, 100%, 40%);">+| 1 | N_RB = 15</span><br><span style="color: hsl(120, 100%, 40%);">+| 2 | N_RB = 25</span><br><span style="color: hsl(120, 100%, 40%);">+| 3 | N_RB = 50</span><br><span style="color: hsl(120, 100%, 40%);">+| 4 | N_RB = 75</span><br><span style="color: hsl(120, 100%, 40%);">+| 5 | N_RB = 100</span><br><span style="color: hsl(120, 100%, 40%);">+|====</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+In the following example we're configuring a 4G neighbor on EARFCN 2342</span><br><span style="color: hsl(120, 100%, 40%);">+with a higher reselection threshold of 40dB, a lower reselection</span><br><span style="color: hsl(120, 100%, 40%);">+threshold of 20dB, priority 5, QRXLEVMIN of -140 dBm and a measurement</span><br><span style="color: hsl(120, 100%, 40%);">+bandwidth of 100 resource blocks:</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+----</span><br><span style="color: hsl(120, 100%, 40%);">+network</span><br><span style="color: hsl(120, 100%, 40%);">+ bts 0</span><br><span style="color: hsl(120, 100%, 40%);">+  si2quater neighbor-list add earfcn 2342 thresh-hi 20 thresh-lo 10 prio 5 qrxlv 0 meas 5</span><br><span style="color: hsl(120, 100%, 40%);">+----</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+4G neighbor cells can be removed using the same command, just replacing</span><br><span style="color: hsl(120, 100%, 40%);">+`add` with `del`.</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/12832">change 12832</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/12832"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: osmo-bsc </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>
<div style="display:none"> Gerrit-Change-Id: I81df1a453858b6fca80c8adf234b1d5b8bf5283d </div>
<div style="display:none"> Gerrit-Change-Number: 12832 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Harald Welte <laforge@gnumonks.org> </div>