Project

General

Profile

FakeTRX » History » Version 12

osmith, 09/06/2018 01:14 PM
"sim reader" needs to be changed to "sim test" in the default config

1 1 fixeria
h1. FakeTRX (Virtual Um-interface)
2
3 8 fixeria
FakeTRX is a virtual Um-interface implementation written in Python, which allows you to connect [[OsmocomBB:]] and [[OsmoBTS:]] without actual RF hardware. The main purpose of this software is to facilitate and simplify the 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 1 fixeria
5
h2. FAQ
6
7 3 fixeria
h3. What is the difference from [[cellular-infrastructure:Virtual_Um|VIRT-PHY]]?
8 1 fixeria
9 3 fixeria
The main difference is that FakeTRX actually works on GSM L1, while [[cellular-infrastructure:Virtual_Um|VIRT-PHY]] works on higher levels, using GSMTAP and multicast sockets to exchange the data. It means that FakeTRX provides the [[TRX Interface]] for both [[OsmocomBB:]] and [[OsmoBTS:]], and forwards GSM bursts between both sides. So, no need to do any modifications in the [[OsmoBTS:]] source code, just use osmo-bts-trx.
10 1 fixeria
11
h3. Python?
12
13
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.
14
15 5 fixeria
h3. What about RSSI and ToA (Timing of Arrival)?
16 1 fixeria
17 5 fixeria
Since we are talking about the virtual interface, it's possible to emulate any values for both RSSI and ToA.
18 1 fixeria
19
h3. Can I run multiple BTS and / or multiple MS instances?
20
21
Not yet.
22
23
h2. Running
24
25
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]].
26
27 6 fixeria
Since [[OsmocomBB:]] was extended with [[TRX Interface]] support, follow the corresponding instructions and compile OsmocomBB with [[TRX Interface#The-trxcon-application|trxcon]] application. After that, you may find the FakeTRX toolkit located in 'src/target/trx_toolkit/'. See README for more details.
28 1 fixeria
29
_Tip: feel free to use tmux or screen to avoid a mess with multiple windows_
30
31
1. Run the network side stack you have. In this example we will use the [[osmonitb:|Network in the Box]]:
32
33
<pre>
34
$ osmo-nitb -c ./openbsc.cfg -l ./hlr.sqlite3 -P -C --debug=DRLL:DCC:DMM:DRR:DRSL:DNM
35
</pre>
36
37
2. Run the fake transceiver:
38
39
<pre>
40 6 fixeria
$ cd osmocom-bb/src/target/trx_toolkit/
41 1 fixeria
$ python ./fake_trx.py
42
</pre>
43
44 11 osmith
3. Start [[OsmoBTS:]] (in case you want to [[cellular-infrastructure:build from source]], enable the TRX backend with @./configure --enable-trx=yes@).
45 1 fixeria
46
<pre>
47
$ osmo-bts-trx -c ./osmo-bts.cfg
48
</pre>
49
50
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.
51
52
4. In order to make [[OsmocomBB:]] applications able to work with FakeTRX, you need to run [[TRX Interface#The-trxcon-application|trxcon]]:
53
54
<pre>
55
$ cd osmocom-bb/src/host/trxcon/
56 4 fixeria
$ ./trxcon
57 1 fixeria
</pre>
58
59
5. Finally, run any L2&3 application, e.g. ccch_scan:
60
61
<pre>
62
$ cd osmocom-bb/src/host/layer23/src/misc/
63
$ ./ccch_scan -a ARFCN -i 127.0.0.1
64
</pre>
65
66
Please note that ARFCN value should match the one your BTS configured to.
67
68
Since this step, 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.
69
70
h2. Running [[mobile]] application
71
72 12 osmith
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.
73 1 fixeria
74
<pre>
75
test-sim
76
  imsi 901700000000000
77
  no barred-access
78
  rplmn 901 70
79
</pre>
80
81
Make sure you have the virtual network running, then run mobile the same way as in case of a Calypso based phone:
82
83
<pre>
84
$ cd osmocom-bb/src/host/layer23/src/mobile/
85
$ ./mobile -i 127.0.0.1
86
</pre>
87
88
Now you can use mobile's telnet interface to manage your virtual phone:
89
90
<pre>
91
$ telnet localhost 4247
92
$ ...
93
</pre>
94
95
h2. Demo
96
97
https://www.youtube.com/watch?v=Uxdaui8EkjY
98
99
h2. Project status
100
101 10 fixeria
Supported:
102
103
* Simulation and randomization of both RSSI and ToA
104
* Burst capture to file (see data_dump.py)
105
* Injection of bursts and commands
106
107 1 fixeria
Further plans:
108
109 2 fixeria
* Allow multiple BTS to work with multiple BB instances
110
* Distinguish debug messages (BTS / MS, ID)
Add picture from clipboard (Maximum size: 48.8 MB)