-
-
Notifications
You must be signed in to change notification settings - Fork 198
Using Debug Recorders
Jason McHuff edited this page May 30, 2021
·
4 revisions
trunk-recorder has the ability to send raw output over the network (or the same computer t-r is running on) to GNU Radio and possibly Wireshark.
To connect trunk-recorder to GNU Radio over the Internet (steps 2-5 can be skipped if trunk-recorder and desktop computers are on same network; instead set the address in step 1 and "debugRecorderAddress"
in config.json to the address of the trunk-recorder machine):
- open udp-debug.grc in GNU Radio, double-click the 'Id: address' variable box and set the value to `"127.0.0.1", then run the graph by clicking on the black triangle on the toolbar.
- in config.json set
"debugRecorder": true
in the main config - create a reverse SSH tunnel (but TCP) by logging into server using
ssh -R 127.0.0.1:1234:127.0.0.1:1234 user@server
- create a TCP (back) to UDP bridge on local Desktop machine with
nc -v -l -k -p 1234 | nc -v -u 127.0.0.1 1234
- create a UDP to TCP bridge on the server with
nc -v -u -l -k -p 1234 | nc -v 127.0.0.1 1234 &
(or omit the&
and log in to another shell) - run
recorder
Example:
- What is Trunk-Recorder?
- Roadmap (TBD)
- Enhancements
- FAQ's
- Global FAQ's
- HackRF FAQ's
- RTLSDR FAQ's