Project

General

Profile

Minimal RBS Assemblies » History » Version 15

laforge, 05/06/2020 07:56 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
digraph G {
13
  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
    DUPSU [label="48V PSU"];
26
  }
27
  
28
  subgraph cluster_computer {
29
    label="Linux computer";
30
    OsmoBSC;
31
    mme [label="open5gs-mme"];
32
    CN;
33
    OsmoBSC -> CN [label="AoIP"];
34
    mme -> CN;
35
  }
36
37
  Antenna -> RRUS [label="coaxial (7/16)"];
38
  RRUS -> DUG [label="LC duplex via SFP"];
39
  RRUS -> DUL [label="LC duplex via SFP"];
40
41
  DUL -> mme [label="Ethernet (RJ45)"];
42
  DUG -> OsmoBSC [label="E1 (RJ45)"];
43
 
44
}
45
}}
46
47
48 1 laforge
h3. Parts list
49
50
|_.Qty|_.Model|_.Part|_.Description|
51 9 laforge
|1|[[DUG 20|DUG 20 01]]|KDU 137 569/x|Digital (baseband) unit for GSM|
52
|1|[[DUL 20|DUL 20 01]]|KDU 137 533/x|Digital (baseband) unit for LTE|
53 3 laforge
|1|RBS6601 cabinet|BFL 901 009|2U rackmount enclosure hosting DUL + DUG (Variant 1 or 2; have different DC connector)|
54 1 laforge
|2|RPM 777 193|RPM 777 193/00160|DC power cable between cabinet and DUG/DUL|
55 3 laforge
|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|
56
|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|
57
|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|
58 2 laforge
|1|-|-|DC power supply for DUx (-40.0V to -58.5V, absolute maximum of 1xDUL + 1xDUG = 190W)|
59 1 laforge
|1|RRUS xx||Remote Radio Unit (see below)|
60 13 laforge
|1|||DC power connector on RRUS side (maybe just screw terminals?)|
61 1 laforge
|1|||DC power supply for RRUS (or "PSU AC" option for AC mains connection)|
62 2 laforge
|1|-|-|Grounding cable with cable lug for M8 bolt|
63 7 laforge
|4||RDH 102 47/2|[[SFP-Transceivers]] (1x DUG, 1x DUL, 2x RRUS). 2.5Gbps CPRI line rate should be sufficient|
64 1 laforge
|2|||Duplex LC fiber patch cables (1x DUG-RRUS, 1x DUL-RRUS) compatible with transceivers|
65
66
h3. Compatible Remote Radios
67
68 4 laforge
69 1 laforge
Please see [[RRUS]] about a general description of the various Remote Radio Units.
70
71
The important fact here is:
72 2 laforge
* RRUS 11/61 cannot be used (no GSM support)
73 1 laforge
74
75 6 laforge
|_.Model|_.Band|_.Part|_.GSM Carriers|_.LTE Carriers|_.Instantaneous BW|
76
|RRUS 01|B5|KRC 118 70/x|1-4 (total)|1-4 (total)|20 MHz|
77
|RRUS 01|B8|KRC 118 71/x|1-4 (total)|1-4 (total)|20 MHz|
78
|RRUS 02|B0|KRC 161 264/x|1-8|1-4|40 MHz|
79
|RRUS 02|B8|KRC 161 261/x|1-8|1-4|40 MHz|
80
|RRUS 12|B5|KRC 161 321/x|1-8|1-2|40 MHz|
81
|RRUS 12|B8|KRC 161 262/x|1-8|1-2|40 MHz|
82 1 laforge
|RRUS 13|||1-8|1-3|
83
|RRUS 14|||1-8|1-3|
84 4 laforge
|RRUS 32|||
85
86
h2. Option "B" (classic radios)
87
88
This is a more classic deployment where a RUS (non-remote radio unit) is used instead of a RRUS.
89
on the positive side:
90 11 laforge
* they are much cheaper
91
* they are much more frequently found
92 4 laforge
93
on the negative side:
94 11 laforge
* they require some amount of active cooling
95
* the only official Ericsson racks are large (for 6 RUS equalling something like 2xRUS per sector of a 3-sector site)
96 4 laforge
97 15 laforge
98
{{graphviz_link()
99
digraph G {
100
  rankdir=LR;
101
102
  subgraph cluster_pole {
103
    label="Antenna pole";
104
    Antenna;
105
106
  }
107
108
  subgraph cluster_cabinet {
109
    label="RBS 6202 cabinet";
110
    DUG;
111
    DUL;
112
    RUS;
113
    PSU [label="48V PSU"];
114
  }
115
  
116
  subgraph cluster_computer {
117
    label="Linux computer";
118
    OsmoBSC;
119
    mme [label="open5gs-mme"];
120
    CN;
121
    OsmoBSC -> CN [label="AoIP"];
122
    mme -> CN;
123
  }
124
125
  Antenna -> RUS [label="coaxial (7/16)"];
126
  RUS -> DUG [label="RPM 777 211"];
127
  RUS -> DUL [label="RPM 777 211"];
128
129
  DUL -> mme [label="Ethernet (RJ45)"];
130
  DUG -> OsmoBSC [label="E1 (RJ45)"];
131
 
132
}
133
}}
134 4 laforge
h3. Parts list
135
136
|_.Qty|_.Model|_.Part|_.Description|
137 9 laforge
|1|[[DUG 20|DUG 20 01]]|KDU 137 569/x|Digital (baseband) unit for GSM|
138
|1|[[DUL 20|DUL 20 01]]|KDU 137 533/x|Digital (baseband) unit for LTE|
139 4 laforge
|1|RBS6202 cabinet|BFM 901 351|19" sub-rack for 2 DU + 6 RU|
140
|2|?|?|DC power cable between cabinet and DUG/DUL|
141
|1|-|-|DC power supply (-40.0V to -58.5V, absolute maximum of 1xDUL + 1xDUG + 1xRUS = 190W)|
142
|1|RUS xx||Radio Unit (see below)|
143
|1|?|?|DC power cable between cabinet and RUS|
144
|1||RPM 777 211/00900|CPRI cable between RUS and DUG/DUL (/900 = 90cm, diffeent lengths available)|
145
146
h3. Compatible Radios
147
148 10 laforge
Please see [[RUS]] about a general description of the various Remote Radio Units.
149
150 5 laforge
|_.Model|_.Band|_.Part|_.GSM Carriers|_.LTE Carriers|_.Instantaneous BW|
151
|RUS 01|B0|KRC 118 63/x|1-4|1-4|20 MHz|
152
|RUS 01|B5|KRC 118 64/x|1-4|1-4|20 MHz|
153
|RUS 01|B8|KRC 118 62/x|1-4|1-4|20 MHz|
154
|RUS 02|B0|KRC 161 263/x|1-8|1-4|40 MHz|
155
|RUS 02|B5|KRC 161 320/x|1-8|1-4|40 MHz|
156
|RUS 02|B8|KRC 161 260/x|1-8|1-4|40 MHz|
Add picture from clipboard (Maximum size: 48.8 MB)