Project

General

Profile

Minimal RBS Assemblies » History » Version 18

laforge, 05/06/2020 08:07 AM

1 12 laforge
{{>toc}}
2
3 1 laforge
h1. Minimal RBS Assemblies
4
5
This page will document some minimal configurations of ericsson parts that need to be combined to create a working BTS.
6
7
h2. Option "A" (remote radio heads)
8
9
This is a configuration where we have a 2U rackmount unit indoor hosting the digital side (DUx) and one or multiple remote radio heads (RRUS) which are located outdoor at some height of the antenna pole, preferably as close to the antenna (RF cable loss) but taking into consideratoin the ~23kg load and wind load.
10
11 14 laforge
{{graphviz_link()
12 16 laforge
graph G {
13 14 laforge
  rankdir=LR;
14
15
  subgraph cluster_pole {
16
    label="Antenna pole";
17
    Antenna;
18
    { rank = same; RRUS; RUPSU [label="48V PSU"]; };
19
  }
20
21
  subgraph cluster_cabinet {
22
    label="RBS 6601 cabinet";
23
    DUG;
24
    DUL;
25 16 laforge
    PDU [label="power distribution\nbuilt-into cabinet"];
26 1 laforge
  }
27 16 laforge
  DUPSU [label="48V PSU"];
28
  DUPSU -- PDU [label="2x 4mm2 + Connector\n42816-0212 or 1060550000"];
29
  PDU -- DUG [label="RPM 777 193"];
30
  PDU -- DUL [label="RPM 777 193"];
31
32 1 laforge
  subgraph cluster_computer {
33
    label="Linux computer";
34
    OsmoBSC;
35
    mme [label="open5gs-mme"];
36
    CN;
37 16 laforge
    OsmoBSC -- CN [label="AoIP"];
38
    mme -- CN;
39 14 laforge
  }
40
41 16 laforge
  Antenna -- RRUS [label="coaxial (7/16)"];
42
  RRUS -- DUG [label="LC duplex via SFP"];
43
  RRUS -- DUL [label="LC duplex via SFP"];
44 14 laforge
45 16 laforge
  DUL -- mme [label="Ethernet (RJ45)"];
46
  DUG -- OsmoBSC [label="E1 (RJ45)"];
47 14 laforge
 
48
}
49
}}
50 1 laforge
51
52
h3. Parts list
53 9 laforge
54
|_.Qty|_.Model|_.Part|_.Description|
55 3 laforge
|1|[[DUG 20|DUG 20 01]]|KDU 137 569/x|Digital (baseband) unit for GSM|
56 1 laforge
|1|[[DUL 20|DUL 20 01]]|KDU 137 533/x|Digital (baseband) unit for LTE|
57 3 laforge
|1|RBS6601 cabinet|BFL 901 009|2U rackmount enclosure hosting DUL + DUG (Variant 1 or 2; have different DC connector)|
58
|2|RPM 777 193|RPM 777 193/00160|DC power cable between cabinet and DUG/DUL|
59
|1|1060550000|"Variant 2":https://www.digikey.com/product-detail/en/weidmuller/1060550000/281-4290-ND/4012622|RBS6601 cabinet 48V DC power connector housing for Variant 2|
60 2 laforge
|1|42816-0212|"Variant 1 housing":https://www.digikey.de/product-detail/en/molex/0428160212/WM1927-ND/283471|RBS6601 cabinet 48V DC power connector housing for Variant 1|
61 1 laforge
|2|42816-0212|"Variant 1 contact":https://www.digikey.de/product-detail/en/molex/0428150012/WM9166CT-ND/3829574|RBS6601 cabinet 48V DC power connector contact for Variant 1|
62 13 laforge
|1|-|-|DC power supply for DUx (-40.0V to -58.5V, absolute maximum of 1xDUL + 1xDUG = 190W)|
63 1 laforge
|1|RRUS xx||Remote Radio Unit (see below)|
64 2 laforge
|1|||DC power connector on RRUS side (maybe just screw terminals?)|
65 7 laforge
|1|||DC power supply for RRUS (or "PSU AC" option for AC mains connection)|
66 1 laforge
|1|-|-|Grounding cable with cable lug for M8 bolt|
67
|4||RDH 102 47/2|[[SFP-Transceivers]] (1x DUG, 1x DUL, 2x RRUS). 2.5Gbps CPRI line rate should be sufficient|
68
|2|||Duplex LC fiber patch cables (1x DUG-RRUS, 1x DUL-RRUS) compatible with transceivers|
69
70 4 laforge
h3. Compatible Remote Radios
71 1 laforge
72
73
Please see [[RRUS]] about a general description of the various Remote Radio Units.
74 2 laforge
75 1 laforge
The important fact here is:
76
* RRUS 11/61 cannot be used (no GSM support)
77 6 laforge
78
79
|_.Model|_.Band|_.Part|_.GSM Carriers|_.LTE Carriers|_.Instantaneous BW|
80
|RRUS 01|B5|KRC 118 70/x|1-4 (total)|1-4 (total)|20 MHz|
81
|RRUS 01|B8|KRC 118 71/x|1-4 (total)|1-4 (total)|20 MHz|
82
|RRUS 02|B0|KRC 161 264/x|1-8|1-4|40 MHz|
83
|RRUS 02|B8|KRC 161 261/x|1-8|1-4|40 MHz|
84 1 laforge
|RRUS 12|B5|KRC 161 321/x|1-8|1-2|40 MHz|
85
|RRUS 12|B8|KRC 161 262/x|1-8|1-2|40 MHz|
86 4 laforge
|RRUS 13|||1-8|1-3|
87
|RRUS 14|||1-8|1-3|
88
|RRUS 32|||
89
90
h2. Option "B" (classic radios)
91
92 11 laforge
This is a more classic deployment where a RUS (non-remote radio unit) is used instead of a RRUS.
93
on the positive side:
94 4 laforge
* they are much cheaper
95
* they are much more frequently found
96 11 laforge
97
on the negative side:
98 4 laforge
* they require some amount of active cooling
99 15 laforge
* the only official Ericsson racks are large (for 6 RUS equalling something like 2xRUS per sector of a 3-sector site)
100
101
102
{{graphviz_link()
103 17 laforge
graph G {
104 15 laforge
  rankdir=LR;
105
106
  subgraph cluster_pole {
107
    label="Antenna pole";
108
    Antenna;
109
  }
110
111
  subgraph cluster_cabinet {
112
    label="RBS 6202 cabinet";
113 1 laforge
    DUG;
114 15 laforge
    DUL;
115 17 laforge
{ rank=same;
116 1 laforge
    RUS;
117 17 laforge
    PDU [label="power distribution\nbuilt-into cabinet"];
118
}
119 1 laforge
  }
120 17 laforge
  PSU [label="48V PSU"];
121
  PSU -- PDU [label="wires on\nscrew terminals"];
122
  PDU -- DUG;
123
  PDU -- DUL;
124
  PDU -- RUS;
125
   
126 1 laforge
  subgraph cluster_computer {
127
    label="Linux computer";
128
    OsmoBSC;
129
    mme [label="open5gs-mme"];
130 15 laforge
    CN;
131 18 laforge
    OsmoBSC -- CN [label="AoIP"];
132 17 laforge
    mme -- CN;
133 15 laforge
  }
134
135 17 laforge
  Antenna -- RUS [label="coaxial (7/16)"];
136
  RUS -- DUG [label="RPM 777 211"];
137
  RUS -- DUL [label="RPM 777 211"];
138 15 laforge
139 17 laforge
  DUL -- mme [label="Ethernet (RJ45)"];
140
  DUG -- OsmoBSC [label="E1 (RJ45)"];
141 4 laforge
 
142
}
143 9 laforge
}}
144
h3. Parts list
145 4 laforge
146
|_.Qty|_.Model|_.Part|_.Description|
147
|1|[[DUG 20|DUG 20 01]]|KDU 137 569/x|Digital (baseband) unit for GSM|
148
|1|[[DUL 20|DUL 20 01]]|KDU 137 533/x|Digital (baseband) unit for LTE|
149
|1|RBS6202 cabinet|BFM 901 351|19" sub-rack for 2 DU + 6 RU|
150
|2|?|?|DC power cable between cabinet and DUG/DUL|
151
|1|-|-|DC power supply (-40.0V to -58.5V, absolute maximum of 1xDUL + 1xDUG + 1xRUS = 190W)|
152
|1|RUS xx||Radio Unit (see below)|
153
|1|?|?|DC power cable between cabinet and RUS|
154 10 laforge
|1||RPM 777 211/00900|CPRI cable between RUS and DUG/DUL (/900 = 90cm, diffeent lengths available)|
155
156 5 laforge
h3. Compatible Radios
157
158
Please see [[RUS]] about a general description of the various Remote Radio Units.
159
160
|_.Model|_.Band|_.Part|_.GSM Carriers|_.LTE Carriers|_.Instantaneous BW|
161
|RUS 01|B0|KRC 118 63/x|1-4|1-4|20 MHz|
162
|RUS 01|B5|KRC 118 64/x|1-4|1-4|20 MHz|
163 1 laforge
|RUS 01|B8|KRC 118 62/x|1-4|1-4|20 MHz|
164
|RUS 02|B0|KRC 161 263/x|1-8|1-4|40 MHz|
165
|RUS 02|B5|KRC 161 320/x|1-8|1-4|40 MHz|
166
|RUS 02|B8|KRC 161 260/x|1-8|1-4|40 MHz|
Add picture from clipboard (Maximum size: 48.8 MB)