Changes between Version 8 and Version 9 of Tutorials/g0WmLTE/Tutorial5
- Timestamp:
- Oct 22, 2015, 9:14:59 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/g0WmLTE/Tutorial5
v8 v9 5 5 This tutorial also assumes basic familiarity with [http://en.wikipedia.org/wiki/LTE_%28telecommunication%29 LTE standard]. It uses [http://www.openairinterface.org/ OpenAirInterface] open source software implementation of LTE basestation (eNodeB or eNB) and modem (user equipment or UE) developed at [http://www.eurecom.fr/en Eurecom]. The tutorial given here is based on the [https://twiki.eurecom.fr/twiki/bin/view/OpenAirInterface/HowToConnectOAIENBWithOAIUEWithoutS1Interface] tutorial. 6 6 7 The image used for this experiment is 'oai- git-master.ndz'. Image uses Ubunutu 14.04 and has low-latency 3.13 kernel install and UHD drivers needed for B210/X310 USRPs (UHD 3.8.2)) as well as the !OpenAirInteface source code installed in /root/openairinterface5g/. More details on various build options are available on [https://twiki.eurecom.fr/twiki/bin/view/OpenAirInterface/AutoBuild OpenAirInterface build page].7 The image used for this experiment is 'oai-nos1.ndz'. The image uses Ubuntu 14.04 and has low-latency 3.13 kernel install and UHD drivers needed for B210/X310 USRPs (UHD 3.8.2)) as well as the !OpenAirInteface source code installed in /root/openairinterface5g/. More details on various build options are available on [https://twiki.eurecom.fr/twiki/bin/view/OpenAirInterface/AutoBuild OpenAirInterface build page]. 8 8 9 9 In this tutorial we will use nodes equipped with USRP B210 and have the basestation on node1-1 and modem on node1-2 on sandbox 1. … … 32 32 sh /root/openairinterface5g/targets/bin/init_nas_nos1 eNB 33 33 34 /root/openairinterface5g/targets/bin/oailtenoviz -d -O /root/ conf/enb.band5.tm1.usrpb210.conf 2>&1 | tee ENB.log34 /root/openairinterface5g/targets/bin/oailtenoviz -d -O /root/enb.band3.tm1.usrpb210.conf 2>&1 | tee ENB.log 35 35 }}} 36 36 … … 38 38 39 39 {{{ 40 /root/openairinterface5g/targets/bin/lte-softmodem-nos1.Rel10 -d -O /root/ conf/enb.band5.tm1.usrpb210.conf 2>&1 | tee ENB.log40 /root/openairinterface5g/targets/bin/lte-softmodem-nos1.Rel10 -d -O /root/enb.band3.tm1.usrpb210.conf 2>&1 | tee ENB.log 41 41 }}} 42 42 … … 44 44 45 45 {{{ 46 /root/openairinterface5g/targets/bin/lte-softmodem-nos1.Rel10 -U -C 879000000 -r25 --ue-scan-carrier --ue-txgain 100 --ue-rxgain 110 -A 22>&1 | tee UE.log46 /root/openairinterface5g/targets/bin/lte-softmodem-nos1.Rel10 -U -C1865000000 -r25 --ue-scan-carrier --ue-txgain 100 --ue-rxgain 110 -A 0 2>&1 | tee UE.log 47 47 }}} 48 48 49 The connection should now be established. As a simple test, you should be able to ping the eNB node from the UE node by running 49 The connection should now be established. As a simple test, you should be able to ping the eNB node from the UE node by running the following command in a separate terminal window: 50 50 51 51 {{{ 52 52 ping 10.0.1.1 53 53 }}} 54 55 If the eNB was run using the graphical analyzer, after the connection is established and the pinging starts, the analyzer should look similar to the one shown on the picture below. 56 57 [[Image(analyzer.png, width=500)]]