Project

General

Profile

FakeTRX » History » Version 37

fixeria, 04/19/2019 06:20 PM

1 1 fixeria
h1. FakeTRX (Virtual Um-interface)
2
3 37 fixeria
FakeTRX is a virtual Um-interface implementation written in Python, that allows to connect both [[OsmocomBB:]] and [[OsmoBTS:]] without the actual RF hardware. The main purpose of this software is to facilitate and simplify development and testing process. In other words, you don't need to physically run your GSM network nor use any kind of special hardware - just run a few scripts and do anything you want / need in your virtual GSM network!
4
5
h2. Source code
6
7
FakeTRX is a part of [[OsmocomBB:]]. The source code is available at git.osmocom.org.
8
9
You can browse it via cgit: https://git.osmocom.org/osmocom-bb/tree/src/target/trx_toolkit, and download using git:
10
11
<pre>
12
$ git clone git://git.osmocom.org/osmocom-bb.git
13
</pre>
14
15
Contributions are welcome via [[cellular-infrastructure:Gerrit]].
16 1 fixeria
17
h2. FAQ
18
19 3 fixeria
h3. What is the difference from [[cellular-infrastructure:Virtual_Um|VIRT-PHY]]?
20 1 fixeria
21 36 fixeria
The main difference is that FakeTRX basically works on GSM L1 and deals with bursts, while [[cellular-infrastructure:Virtual_Um|VIRT-PHY]] works on GSM L2, using GSMTAP and multicast sockets to exchange MAC-blocks. FakeTRX provides the [[TRX Interface]] for both [[OsmocomBB:]] and [[OsmoBTS:]], and forwards GSM bursts between both sides. So, there is no need to do any modifications in the [[OsmoBTS:]] source code, just use osmo-bts-trx.
22 1 fixeria
23
h3. Python?
24
25
Of course, Python is slower than C, for example. But it's more than enough for exchanging UDP messages between [[OsmocomBB:]] and [[OsmoBTS:]], and vice versa. Moreover, it can be easily reimplemented in C, if someone interested in better performance.
26
27 19 msuraev
Once multiple instances are supported, we can benchmark to see what's the preformance bottleneck.
28
29 5 fixeria
h3. What about RSSI and ToA (Timing of Arrival)?
30 1 fixeria
31 5 fixeria
Since we are talking about the virtual interface, it's possible to emulate any values for both RSSI and ToA.
32 1 fixeria
33
h3. Can I run multiple BTS and / or multiple MS instances?
34
35 28 fixeria
Yes (since #3667 is done)!
36 1 fixeria
37
h2. Running
38
39
This guide assumes that you already have the Osmocom GSM [[cellular-infrastructure:|network side stack]] compiled and installed. If not, the simplest way is to use the [[osmonitb:|Network in the Box]].
40
41 13 msuraev
{{graphviz_link()
42
digraph G {
43
    rankdir = LR;
44
    subgraph cluster_M {
45 33 fixeria
        L23APP1 [label="L2&3 app (e.g. mobile)"];
46
        L23APP2 [label="L2&3 app (e.g mobile)"];
47
        TTCN3MS [label="TTCN-3 TC (MS side)"];
48 30 fixeria
        TRXcon1 [label="trxcon"];
49
        TRXcon2 [label="trxcon"];
50
        TRXcon3 [label="trxcon"];
51 1 fixeria
        label = "Mobile side";
52 13 msuraev
    }
53 30 fixeria
54
    FakeTRX [label="FakeTRX"];
55
56 1 fixeria
    subgraph cluster_N {
57
        OsmoBSC;
58 33 fixeria
        TTCN3NET [label="TTCN-3 TC (BTS side)"];
59 1 fixeria
        OsmoBTS1 [label="osmo-bts-trx"];
60
        OsmoBTS2 [label="osmo-bts-trx"];
61 30 fixeria
        OsmoBTS3 [label="osmo-bts-trx"];
62 1 fixeria
        label = "Network side";
63
    }
64 30 fixeria
65
    L23APP1 -> TRXcon1 [label="L1CTL"];
66
    L23APP2 -> TRXcon2 [label="L1CTL"];
67
    TTCN3MS -> TRXcon3 [label="L1CTL"];
68
69
    TRXcon1 -> FakeTRX [label="TRX Interface"];
70
    TRXcon2 -> FakeTRX [label="TRX Interface"];
71
    TRXcon3 -> FakeTRX [label="TRX Interface"];
72
73
    FakeTRX -> OsmoBTS1 [label="TRX Interface"];
74
    FakeTRX -> OsmoBTS2 [label="TRX Interface"];
75
    FakeTRX -> OsmoBTS3 [label="TRX Interface"];
76 13 msuraev
    OsmoBTS1 -> OsmoBSC;
77
    OsmoBTS2 -> OsmoBSC;
78 30 fixeria
    OsmoBTS3 -> TTCN3NET;
79 13 msuraev
    }
80
}
81
}}
82 29 fixeria
83 30 fixeria
[[TRX Interface]] is a part of the upstream [[OsmocomBB:]], just make sure that you have compiled the latest version of [[TRX Interface#The-trxcon-application|trxcon]] application. FakeTRX is a part of TRX toolkit, that is located in 'src/target/trx_toolkit/'. See README for more details.
84 1 fixeria
85
_Tip: feel free to use tmux or screen to avoid a mess with multiple windows_
86
87
1. Run the network side stack you have. In this example we will use the [[osmonitb:|Network in the Box]]:
88
89
<pre>
90
$ osmo-nitb -c ./openbsc.cfg -l ./hlr.sqlite3 -P -C --debug=DRLL:DCC:DMM:DRR:DRSL:DNM
91
</pre>
92
93 31 fixeria
2. Run the fake_trx.py:
94 1 fixeria
95 6 fixeria
<pre>
96 23 msuraev
$ cd osmocom-bb/src/target/trx_toolkit/
97 31 fixeria
$ python ./fake_trx.py
98 1 fixeria
</pre>
99 11 osmith
100 31 fixeria
3. Start [[OsmoBTS:]]:
101 1 fixeria
102
<pre>
103 23 msuraev
$ osmo-bts-trx -c ./osmo-bts.cfg
104
</pre>
105
106 1 fixeria
Congratulations! Now you have a virtual GSM network running. As you can see, the virtual transceiver emulates the clock source, as this is required for [[OsmoBTS:]]. Also, it handles only a few important commands, such as RXTUNE and TXTUNE, but ignores other irrelevant ones.
107
108 31 fixeria
4. In order to "bridge" [[Host_Software|L2&3 applications]] with FakeTRX, you need to run [[TRX Interface#The-trxcon-application|trxcon]]:
109 1 fixeria
110 23 msuraev
<pre>
111 1 fixeria
$ cd osmocom-bb/src/host/trxcon/
112 31 fixeria
$ ./trxcon
113 23 msuraev
</pre>
114 1 fixeria
115
5. Finally, run any L2&3 application, e.g. ccch_scan:
116
117
<pre>
118
$ cd osmocom-bb/src/host/layer23/src/misc/
119
$ ./ccch_scan -a ARFCN -i 127.0.0.1
120
</pre>
121
122
Please note that ARFCN value should match the one your BTS configured to.
123
124 31 fixeria
At this stage, you should see the broadcast messages coming from the virtual network, like in case of a real one. You can use Wireshark to analyze them.
125 1 fixeria
126
h2. Running [[mobile]] application
127 12 osmith
128 1 fixeria
As you should already know, [[mobile]] applications implements a simple mobile phone with SMS, USSD and voice calls. In the virtual network we can benefit from using a virtual SIM card. Just configure one according to your network configuration, see the example below. If you are starting with the default config from the source tree (@osmocom-bb/doc/examples/mobile/default.cfg@), make sure to change @sim reader@ to @sim test@ in the @ms 1@ section.
129
130
<pre>
131
test-sim
132
  imsi 901700000000000
133
  no barred-access
134
  rplmn 901 70
135
</pre>
136
137
Make sure you have the virtual network running, then run mobile the same way as in case of a Calypso based phone:
138
139
<pre>
140
$ cd osmocom-bb/src/host/layer23/src/mobile/
141
$ ./mobile -i 127.0.0.1
142
</pre>
143
144
Now you can use mobile's telnet interface to manage your virtual phone:
145
146
<pre>
147
$ telnet localhost 4247
148
$ ...
149
</pre>
150
151 34 fixeria
h2. Multiple transceivers
152
153
It's possible to handle multiple MS and/or BTS connections in a single [[FakeTRX]] process using _--trx_ option.
154
155
Additional MS-/BTS-side transceiver:
156
157
<pre>
158
$ ./fake_trx.py --trx 127.0.0.1:6703
159
</pre>
160
161
Two child transceivers of the main BTS:
162
163
<pre>
164
$ ./fake_trx.py --trx 127.0.0.1:5700/1 --trx 127.0.0.1:5700/2
165
</pre>
166
167
Additional transceiver with name:
168
169
<pre>
170
$ ./fake_trx.py --trx foo@127.0.0.1:5703
171
</pre>
172
173
Additional transceiver with IPv6 address:
174
175
<pre>
176
$ ./fake_trx.py --trx ipv6@[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:5700/5
177
</pre>
178
179 1 fixeria
h2. Demo
180
181
https://www.youtube.com/watch?v=Uxdaui8EkjY
182
183
h2. Project status
184 10 fixeria
185
Supported:
186
187
* Simulation and randomization of both RSSI and ToA
188 32 fixeria
* Multiple MS / BTS transceivers (see #3667)
189 10 fixeria
* Burst capture to file (see data_dump.py)
190 1 fixeria
* Injection of bursts and commands
Add picture from clipboard (Maximum size: 48.8 MB)