Difference between revisions of "OpenBTS: N210 GNURadio"

From OnnoWiki
Jump to navigation Jump to search
 
(31 intermediate revisions by the same user not shown)
Line 12: Line 12:
 
  python-wxgtk2.8 python-wxtools wx2.8-i18n libwxgtk2.8-dev libgtk2.0-dev \
 
  python-wxgtk2.8 python-wxtools wx2.8-i18n libwxgtk2.8-dev libgtk2.0-dev \
 
  autoconf libtool libosip2-dev libortp-dev \
 
  autoconf libtool libosip2-dev libortp-dev \
  libusb-1.0-0-dev g++ erlang bison flex
+
  libusb-1.0-0-dev g++ erlang bison flex \
 +
subversion autoconf libtool libosip2-dev libortp-dev g++ sqlite3 libusb-1.0.0-dev \
 +
libsqlite3-dev erlang libreadline6-dev libboost-all-dev swig libfftw3-dev libcppunit-dev \
 +
libaudio-dev libusb-dev make
  
Lakukan
+
Test Ethernet di laptop / PC pastikan kita menggunakan Gigabit Ethernet.
 +
Cara men-test dengan menggunakan ethtool
 +
 
 +
apt -y install ethtool
 +
ethtool enp3s0
  
ethtool eth0
+
Harus keluar kira-kira seperti di bawah ini
  
  Settings for eth0:  
+
  Settings for enp3s0:
  Supported ports: [ TP ]
+
  Supported ports: [ TP MII ]
 
  Supported link modes:  10baseT/Half 10baseT/Full  
 
  Supported link modes:  10baseT/Half 10baseT/Full  
 
                          100baseT/Half 100baseT/Full  
 
                          100baseT/Half 100baseT/Full  
                          1000baseT/Full  
+
                          1000baseT/Half 1000baseT/Full  
 
  Supported pause frame use: No
 
  Supported pause frame use: No
 
  Supports auto-negotiation: Yes
 
  Supports auto-negotiation: Yes
 +
Supported FEC modes: Not reported
 
  Advertised link modes:  10baseT/Half 10baseT/Full  
 
  Advertised link modes:  10baseT/Half 10baseT/Full  
 
                          100baseT/Half 100baseT/Full  
 
                          100baseT/Half 100baseT/Full  
                          1000baseT/Full  
+
                          1000baseT/Half 1000baseT/Full  
  Advertised pause frame use: No
+
  Advertised pause frame use: Symmetric Receive-only
 
  Advertised auto-negotiation: Yes
 
  Advertised auto-negotiation: Yes
  Speed: 1000Mb/s
+
Advertised FEC modes: Not reported
 +
Link partner advertised link modes:  10baseT/Half 10baseT/Full
 +
                                    100baseT/Half 100baseT/Full
 +
Link partner advertised pause frame use: Symmetric Receive-only
 +
Link partner advertised auto-negotiation: Yes
 +
Link partner advertised FEC modes: Not reported
 +
  Speed: 100Mb/s
 
  Duplex: Full
 
  Duplex: Full
  Port: Twisted Pair
+
  Port: MII
  PHYAD: 2
+
  PHYAD: 0
 
  Transceiver: internal
 
  Transceiver: internal
 
  Auto-negotiation: on
 
  Auto-negotiation: on
MDI-X: on
 
 
  Supports Wake-on: pumbg
 
  Supports Wake-on: pumbg
 
  Wake-on: g
 
  Wake-on: g
  Current message level: 0x00000007 (7)
+
  Current message level: 0x00000033 (51)
      drv probe link
+
      drv probe ifdown ifup
 
  Link detected: yes
 
  Link detected: yes
 +
 +
Pastikan ethernet mampu bekerja pada Gbps (1000baseT).
 +
 +
 +
Set IP address interface ethernet
 +
 +
ifconfig enp3s0 192.168.10.1
 +
 +
Cek sambungan ke N210.
 +
 +
ping 192.168.10.2
 +
 +
HARUS ADA Responds!!!
 +
 +
PING 192.168.10.2 (192.168.10.2) 56(84) bytes of data.
 +
64 bytes from 192.168.10.2: icmp_req=1 ttl=32 time=1.74 ms
 +
 +
Bagi anda yang menggunakan desktop Ubuntu sebaiknya di set juga dari Network Connection di Desktop agar menjadi IP address statik
  
  
 
==Install SDCC==
 
==Install SDCC==
  
cp sdcc-src-2.8.0.tar.bz2 /usr/local/src
+
Sebaiknya jangan mengcompile dari source code karena membuat pusing kepala.
cd /usr/local/src
+
Install sdcc sebaiknya langsung dari file .deb saja.
tar jxvf sdcc-src-2.8.0.tar.bz2
 
cd sdcc
 
./configure
 
make
 
make install
 
 
 
alternatif lain
 
  
 
  wget -c http://launchpadlibrarian.net/38703081/sdcc_2.9.0-5_amd64.deb
 
  wget -c http://launchpadlibrarian.net/38703081/sdcc_2.9.0-5_amd64.deb
 
  wget -c http://launchpadlibrarian.net/38689168/sdcc-libraries_2.9.0-5_all.deb
 
  wget -c http://launchpadlibrarian.net/38689168/sdcc-libraries_2.9.0-5_all.deb
  dpkg -i sdcc_2.9.0-5_amd64.deb sdcc-libraries_2.9.0-5_all.deb  
+
  dpkg -i sdcc_2.9.0-5_amd64.deb sdcc-libraries_2.9.0-5_all.deb
 
 
  
 
==Download Source Code UHD==
 
==Download Source Code UHD==
Line 78: Line 101:
 
  ldconfig
 
  ldconfig
  
 
+
==Download & Compile GNURadio==
 
 
===Download GNURadio===
 
  
 
  cd /usr/local/src
 
  cd /usr/local/src
Line 90: Line 111:
 
  cd gnuradio
 
  cd gnuradio
 
  patch -p0 < ../usrp52mhz.patch
 
  patch -p0 < ../usrp52mhz.patch
  ./configure --enable-gr-uhd --enable-usrp2 --enable-usrp
+
  ./configure --enable-gr-uhd --disable-usrp2 --disable-usrp
  
 
===Perbaiki error: ‘intptr_t’===
 
===Perbaiki error: ‘intptr_t’===
Line 102: Line 123:
 
===Compile GNURadio===
 
===Compile GNURadio===
  
 +
cd /usr/local/src/gnuradio
 
  make
 
  make
 
  make install
 
  make install
Line 107: Line 129:
  
 
==Install UHD USRP ke udev==
 
==Install UHD USRP ke udev==
 +
 +
Lakukan
  
 
  cd /usr/local/share/uhd/utils
 
  cd /usr/local/share/uhd/utils
Line 114: Line 138:
 
==Install Image 003.005.000==
 
==Install Image 003.005.000==
  
Download UHD image
+
Download Image UHD 003.005.000
  
  cd ~
+
  sudo /usr/local/lib/uhd/utils/uhd_images_downloader.py
wget http://files.ettus.com/binaries/master_images/archive/uhd-images_003.005.000-release.tar.gz
 
  
Install
+
Images successfully installed to: /usr/local/share/uhd/images
  
rm -Rf /usr/share/uhd/images/*
+
Burn ke N210, pastikan kita terhubung ke N210 & N210 dalam keadaan operasinal. Lakukan,
rm -Rf /usr/local/share/uhd/images/*
 
cd ~
 
tar zxvf uhd-images_003.005.000-release.tar.gz
 
cp -Rf uhd-images_003.005.000-release/share/uhd/images/ /usr/local/share/uhd/
 
  
Dalam /usr/local/share/uhd/images/ , file
+
/usr/local/bin/usrp_n2xx_simple_net_burner --addr="192.168.10.2"
  
* usrp_n210_fw.bin
+
Hasilnya kira-kira
* usrp_n210_r2_fpga.bin
+
 
* usrp_n210_r3_fpga.bin
+
linux; GNU C++ version 4.7.3; Boost_104900; UHD_003.005.003-112-gea418a85
* usrp_n210_r4_fpga.bin
+
 +
Searching for USRP N2XX with IP address 192.168.10.2.
 +
Found n210_r4.
 +
 +
Searching for specified images.
 +
 +
Will burn the following images:
 +
  * Firmware: /usr/local/share/uhd/images/usrp_n210_fw.bin
 +
  * FPGA:    /usr/local/share/uhd/images/usrp_n210_r4_fpga.bin
 +
 +
Querying n210_r4 for flash information.
 +
  * Flash size:  4194304
 +
  * Sector size: 65536
 +
 +
Erasing FPGA image.
 +
  * Successfully erased 1572864 bytes at 1572864.
 +
Writing FPGA image.
 +
  * Successfully wrote 1311644 bytes.
 +
Verifying FPGA image.
 +
  * Successful.
 +
 +
Erasing firmware image.
 +
  * Successfully erased 31744 bytes at 3145728.
 +
Writing firmware image.
 +
  * Successfully wrote 16383 bytes.
 +
Verifying firmware image.
 +
  * Successful.
 +
 +
Image burning successful. Reset USRP (Y/n)? Y
 +
Resetting USRP.
 +
 
 +
==Test==
 +
 
 +
===Find Device===
 +
 
 +
Lakukan
 +
 
 +
uhd_find_devices
 +
 
 +
Hasilnya
 +
 
 +
linux; GNU C++ version 4.7.3; Boost_104900; UHD_003.005.003-112-gea418a85
 +
 +
--------------------------------------------------
 +
-- UHD Device 0
 +
--------------------------------------------------
 +
Device Address:
 +
    type: usrp2
 +
    addr: 192.168.10.2
 +
    name:
 +
    serial: F306BB
 +
 
 +
===Test GPSDO===
 +
 
 +
Test GPSDO
 +
 
 +
cd /usr/local/src/uhd.git/host/examples
 +
wget https://sites.google.com/site/byungchulweb/gnufile/gps_test.cpp
 +
 
 +
Masukan
 +
 
 +
vi /usr/local/src/uhd.git/host/examples/CMakeLists.txt
 +
 
 +
masukan
 +
 
 +
gps_test.cpp
 +
 
 +
Compile
 +
 
 +
cd ..
 +
cd build
 +
cmake ../
 +
make
 +
make test
 +
sudo make install
 +
sudo ldconfig
 +
 
 +
Test
 +
 
 +
cd /usr/local/src/uhd.git/host/build/examples
 +
sudo ./gps_test
 +
 
 +
Hasilnya
 +
 
 +
..
 +
..
 +
-- Setting references to the internal GPSDO
 +
-- Initializing time to the internal GPSDO
 +
Using Device: Single USRP:
 +
  Device: USRP2 / N-Series Device
 +
  Mboard 0: N210r4
 +
  RX Channel: 0
 +
    RX DSP: 0
 +
    RX Dboard: A
 +
    RX Subdev: WBXv3 RX+GDB
 +
  TX Channel: 0
 +
    TX DSP: 0
 +
    TX Dboard: A
 +
    TX Subdev: WBXv3 TX+GDB
 +
 +
GPS epoch time: 1136081736 seconds
 +
GPS lock status: unlocked
 +
  PS_GPGGA: $GPGGA,021536.00,0000.0000,N,00000.0000,E,0,99,1.0,0.0,M,0.0,M,,*5F
 +
  PS_GPRMC: $GPRMC,021536.00,V,0000.0000,N,00000.0000,E,0.0,0.0,010106,,*21
 +
 
 +
===Test uhd usrp probe===
 +
 
 +
cd /usr/local/bin
 +
./uhd_usrp_probe
 +
 
 +
 
 +
Hasilnya
 +
 
 +
..
 +
..
 +
-- Detecting internal GPSDO.... Found a Jackson Labs GPS
 +
-- found
 +
-- Setting references to the internal GPSDO
 +
-- Initializing time to the internal GPSDO
 +
  _____________________________________________________
 +
  /
 +
|      Device: USRP2 / N-Series Device
 +
|    _____________________________________________________
 +
|    /
 +
|  |      Mboard: N210r4
 +
|  |  hardware: 2577
 +
|  |  mac-addr: 00:80:2f:0a:d0:9c
 +
|  |  ip-addr: 192.168.10.2
 +
|  |  subnet: 255.255.255.255
 +
|  |  gateway: 255.255.255.255
 +
|  |  gpsdo: none
 +
|  |  serial: F306BB
 +
|  |  FW Version: 12.3
 +
|  |  FPGA Version: 10.0
 +
|  | 
 +
|  |  Time sources: none, external, _external_, mimo, gpsdo
 +
|  |  Clock sources: internal, external, mimo, gpsdo
 +
|  |  Sensors: gps_gpgga, gps_gprmc, gps_time, gps_locked, gps_servo, mimo_locked, ref_locked
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      RX DSP: 0
 +
|  |  |  Freq range: -50.000 to 50.000 Mhz
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      RX DSP: 1
 +
|  |  |  Freq range: -50.000 to 50.000 Mhz
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      RX Dboard: A
 +
|  |  |  ID: WBX v3, WBX v3 + Simple GDB (0x0057)
 +
|  |  |  Serial: F35DB9
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      RX Frontend: 0
 +
|  |  |  |  Name: WBXv3 RX+GDB
 +
|  |  |  |  Antennas: TX/RX, RX2, CAL
 +
|  |  |  |  Sensors: lo_locked
 +
|  |  |  |  Freq range: 68.750 to 2200.000 Mhz
 +
|  |  |  |  Gain range PGA0: 0.0 to 31.5 step 0.5 dB
 +
|  |  |  |  Connection Type: IQ
 +
|  |  |  |  Uses LO offset: No
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      RX Codec: A
 +
|  |  |  |  Name: ads62p44
 +
|  |  |  |  Gain range digital: 0.0 to 6.0 step 0.5 dB
 +
|  |  |  |  Gain range fine: 0.0 to 0.5 step 0.1 dB
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      TX DSP: 0
 +
|  |  |  Freq range: -250.000 to 250.000 Mhz
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      TX Dboard: A
 +
|  |  |  ID: WBX v3 (0x0056)
 +
|  |  |  Serial: F35DB9
 +
|  |  |  ID: WBX + Simple GDB, WBX v3 + Simple GDB, WBX v4 + Simple GDB (0x004f)
 +
|  |  |  Serial: 0
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      TX Frontend: 0
 +
|  |  |  |  Name: WBXv3 TX+GDB
 +
|  |  |  |  Antennas: TX/RX, CAL
 +
|  |  |  |  Sensors: lo_locked
 +
|  |  |  |  Freq range: 68.750 to 2200.000 Mhz
 +
|  |  |  |  Gain range PGA0: 0.0 to 31.0 step 1.0 dB
 +
|  |  |  |  Connection Type: IQ
 +
|  |  |  |  Uses LO offset: No
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      TX Codec: A
 +
|  |  |  |  Name: ad9777
 +
|  |  |  |  Gain Elements: None
  
digunakan untuk USRP N210
 
  
  
  
==Test==
 
  
 
===Test clock 52MHz===
 
===Test clock 52MHz===
Line 147: Line 356:
 
Hasilnya kira-kira
 
Hasilnya kira-kira
  
 
+
..
 +
..
 +
-- Detecting internal GPSDO.... Found a Jackson Labs GPS
 +
-- found
 +
-- Setting references to the internal GPSDO
 +
-- Initializing time to the internal GPSDO
 +
  _____________________________________________________
 +
  /
 +
|      Device: USRP2 / N-Series Device
 +
|    _____________________________________________________
 +
|    /
 +
|  |      Mboard: N210r4
 +
|  |  hardware: 2577
 +
|  |  mac-addr: 00:80:2f:0a:d0:9c
 +
|  |  ip-addr: 192.168.10.2
 +
|  |  subnet: 255.255.255.255
 +
|  |  gateway: 255.255.255.255
 +
|  |  gpsdo: none
 +
|  |  serial: F306BB
 +
|  |  FW Version: 12.3
 +
|  |  FPGA Version: 10.0
 +
|  | 
 +
|  |  Time sources: none, external, _external_, mimo, gpsdo
 +
|  |  Clock sources: internal, external, mimo, gpsdo
 +
|  |  Sensors: gps_gpgga, gps_gprmc, gps_time, gps_locked, gps_servo, mimo_locked, ref_locked
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      RX DSP: 0
 +
|  |  |  Freq range: -50.000 to 50.000 Mhz
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      RX DSP: 1
 +
|  |  |  Freq range: -50.000 to 50.000 Mhz
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      RX Dboard: A
 +
|  |  |  ID: WBX v3, WBX v3 + Simple GDB (0x0057)
 +
|  |  |  Serial: F35DB9
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      RX Frontend: 0
 +
|  |  |  |  Name: WBXv3 RX+GDB
 +
|  |  |  |  Antennas: TX/RX, RX2, CAL
 +
|  |  |  |  Sensors: lo_locked
 +
|  |  |  |  Freq range: 68.750 to 2200.000 Mhz
 +
|  |  |  |  Gain range PGA0: 0.0 to 31.5 step 0.5 dB
 +
|  |  |  |  Connection Type: IQ
 +
|  |  |  |  Uses LO offset: No
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      RX Codec: A
 +
|  |  |  |  Name: ads62p44
 +
|  |  |  |  Gain range digital: 0.0 to 6.0 step 0.5 dB
 +
|  |  |  |  Gain range fine: 0.0 to 0.5 step 0.1 dB
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      TX DSP: 0
 +
|  |  |  Freq range: -250.000 to 250.000 Mhz
 +
|  |    _____________________________________________________
 +
|  |    /
 +
|  |  |      TX Dboard: A
 +
|  |  |  ID: WBX v3 (0x0056)
 +
|  |  |  Serial: F35DB9
 +
|  |  |  ID: WBX + Simple GDB, WBX v3 + Simple GDB, WBX v4 + Simple GDB (0x004f)
 +
|  |  |  Serial: 0
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      TX Frontend: 0
 +
|  |  |  |  Name: WBXv3 TX+GDB
 +
|  |  |  |  Antennas: TX/RX, CAL
 +
|  |  |  |  Sensors: lo_locked
 +
|  |  |  |  Freq range: 68.750 to 2200.000 Mhz
 +
|  |  |  |  Gain range PGA0: 0.0 to 31.0 step 1.0 dB
 +
|  |  |  |  Connection Type: IQ
 +
|  |  |  |  Uses LO offset: No
 +
|  |  |    _____________________________________________________
 +
|  |  |    /
 +
|  |  |  |      TX Codec: A
 +
|  |  |  |  Name: ad9777
 +
|  |  |  |  Gain Elements: None
  
 
===Test Benchmark===
 
===Test Benchmark===
  
 
  cd /usr/local/src/uhd.git/host/build/examples
 
  cd /usr/local/src/uhd.git/host/build/examples
  ./benchmark_rate --rx_rate 1000000 --tx_rate 1000000
+
  ./benchmark_rate --rx_rate 10000000 --tx_rate 10000000
  
 
Hasilnya kira-kira
 
Hasilnya kira-kira
 +
 +
..
 +
..
 +
-- Detecting internal GPSDO.... Found a Jackson Labs GPS
 +
-- found
 +
-- Setting references to the internal GPSDO
 +
-- Initializing time to the internal GPSDO
 +
 +
UHD Warning:
 +
    get_time: ValueError: get_nmea(): no GPRMC message found
 +
Using Device: Single USRP:
 +
  Device: USRP2 / N-Series Device
 +
  Mboard 0: N210r4
 +
  RX Channel: 0
 +
    RX DSP: 0
 +
    RX Dboard: A
 +
    RX Subdev: WBXv3 RX+GDB
 +
  TX Channel: 0
 +
    TX DSP: 0
 +
    TX Dboard: A
 +
    TX Subdev: WBXv3 TX+GDB
 +
 +
Testing receive rate 10.000000 Msps on 1 channels
 +
Testing transmit rate 10.000000 Msps on 1 channels
 +
 +
Benchmark rate summary:
 +
  Num received samples:    100107777
 +
  Num dropped samples:    0
 +
  Num overflows detected:  0
 +
  Num transmitted samples: 100229019
 +
  Num sequence errors:    0
 +
  Num underflows detected: 0
 +
 +
Done!
  
 
==Referensi==
 
==Referensi==
Line 175: Line 497:
 
* [[USRP: Kalibrasi ClockTamer]]
 
* [[USRP: Kalibrasi ClockTamer]]
 
* [[USRP: ClockTamer Control Protocol]]
 
* [[USRP: ClockTamer Control Protocol]]
 +
* [[USRP: ClockTamer Flashing]]
 
* [[USRP: Instalasi Board]]
 
* [[USRP: Instalasi Board]]
 
* [[OpenBTS: GIT Source Code]]
 
* [[OpenBTS: GIT Source Code]]
Line 180: Line 503:
 
* [[OpenBTS: Tethr untuk Bencana Alam]]
 
* [[OpenBTS: Tethr untuk Bencana Alam]]
 
* [[USRP: Tip Pemesanan]]
 
* [[USRP: Tip Pemesanan]]
 +
 +
===Script===
 +
 +
* [[OpenBTS: Script Membuat GNURadio 3.4.2 di Ubuntu 13.04]]
 +
* [[OpenBTS: Script Membuat OpenBTS dan yate di Ubuntu 13.04]]
 +
* [[OpenBTS: Script Membuat OpenBTS 2.8.0 di RangeNetwork Dev Kit]]
 +
* [[OpenBTS: Script Membuat OpenBTS di RangeNetwork Dev Kit]]
  
 
===OpenBTS 2.6===
 
===OpenBTS 2.6===
Line 238: Line 568:
 
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz di Ubuntu 12.10]] '''RECOMMENDED'''
 
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz di Ubuntu 12.10]] '''RECOMMENDED'''
 
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz di Ubuntu 13.04]] '''RECOMMENDED'''
 
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz di Ubuntu 13.04]] '''RECOMMENDED'''
 +
* [[OpenBTS: 2.8 dari SVN 2.8.0 Install Clock 52MHz di Ubuntu 13.04]] '''RECOMMENDED'''
 
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz dengan UHD tanpa GNURadio]] ''NOT RECOMMENDED''
 
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz dengan UHD tanpa GNURadio]] ''NOT RECOMMENDED''
 
* [[OpenBTS: 2.8 Edit User di sqlite3.db]] '''RECOMMEND'''
 
* [[OpenBTS: 2.8 Edit User di sqlite3.db]] '''RECOMMEND'''
Line 247: Line 578:
 
* [[OpenBTS: 2.8 Menjalankan]] '''RECOMMENDED'''
 
* [[OpenBTS: 2.8 Menjalankan]] '''RECOMMENDED'''
 
* [[OpenBTS: 2.8 Konfigurasi]]
 
* [[OpenBTS: 2.8 Konfigurasi]]
 +
* [[OpenBTS: 2.8 Konfigurasi Cognitive Radio Elsabagh]]
 
* [[OpenBTS: 2.8 Konfigurasi Subscriber Registery]]
 
* [[OpenBTS: 2.8 Konfigurasi Subscriber Registery]]
 
* [[OpenBTS: Database SQLite]]
 
* [[OpenBTS: Database SQLite]]
 +
* [[OpenBTS: Set SQLite Subscriber Registry secara manual]]
 +
* [[OpenBTS: Set SQLite parameter smqueue]]
 +
* [[OpenBTS: FreeSWITCH]]
  
 
===Multi OpenBTS 2.8===
 
===Multi OpenBTS 2.8===
Line 254: Line 589:
 
* [[OpenBTS: Pola Multi OpenBTS]] '''RECOMMENDED'''
 
* [[OpenBTS: Pola Multi OpenBTS]] '''RECOMMENDED'''
 
* [[Multi OpenBTS: Catatan Konfigurasi]] '''RECOMMENDED'''
 
* [[Multi OpenBTS: Catatan Konfigurasi]] '''RECOMMENDED'''
 +
* [[Multi OpenBTS: Catatan BSIC=NCC+BCC]]
 +
* [[Multi OpenBTS: Catatan Frekuensi Planning di GSM]]
 +
* [[Multi OpenBTS: Catatan BTS Color Code BCC di GSM]]
 +
* [[Multi OpenBTS: Catatan Network Color Code NCC di GSM]]
 +
* [[Multi OpenBTS: Catatan BCCH]]
 +
* [[Multi OpenBTS: Catatan Public Land Mobile Network PLMN]]
 +
 +
===OpenBTS 3.1.x===
 +
 +
* [[OpenBTS: Install UHD untuk USRP1]]
 +
* [[OpenBTS: UHD Identifikasi Device]]
 +
* [[OpenBTS: OpenBTS 3.1.3 Compile]] '''Tidak bisa untuk USRP1'''
 +
* [[OpenBTS: Yate Compile]]
  
 
===Ettus E110===
 
===Ettus E110===
Line 262: Line 610:
 
* [[OpenBTS: E110 Mengubah Master Clock]]
 
* [[OpenBTS: E110 Mengubah Master Clock]]
 
* [[OpenBTS: E110 Kalibrasi Clock]]
 
* [[OpenBTS: E110 Kalibrasi Clock]]
 +
* [[OpenBTS: E110 Konfigurasi Jaringan]]
 
* [[OpenBTS: E110 Bekerja dengan opkg]]
 
* [[OpenBTS: E110 Bekerja dengan opkg]]
 +
* [[OpenBTS: E110 Instalasi iptables]]
 
* [[OpenBTS: E110 GNURadio]]
 
* [[OpenBTS: E110 GNURadio]]
* [[OpenBTS: E110 Compile UHD]] '''*RECOMMENDED*'''
+
* [[OpenBTS: E110 Compile UHD]] ''Not Recommended''
* [[OpenBTS: E110 UHD burn EEPROM RFX Board]] '''*RECOMMENDED*'''
+
* [[OpenBTS: E110 Compile UHD dari Release Bukan git]] ''Not Recommended''
* [[OpenBTS: E110 Install UHD Image]] '''*RECOMMENDED*'''
+
* [[OpenBTS: E110 UHD burn EEPROM RFX Board]] ''Not Recommended''
 +
* [[OpenBTS: E110 Install UHD Image]] ''Not Recommended''
 
* [[OpenBTS: E110 Instalasi OpenBTS]]
 
* [[OpenBTS: E110 Instalasi OpenBTS]]
 
* [[OpenBTS: E110 Instalasi OpenBTS 2.6]] ''NOT RECOMMENDED''
 
* [[OpenBTS: E110 Instalasi OpenBTS 2.6]] ''NOT RECOMMENDED''
 
* [[OpenBTS: E110 Instalasi OpenBTS 2.8 untuk MultiBTS]] '''*RECOMMENDED*'''
 
* [[OpenBTS: E110 Instalasi OpenBTS 2.8 untuk MultiBTS]] '''*RECOMMENDED*'''
 +
* [[OpenBTS: E110 Yate Softswitch]]
  
 
===Ettus N210===
 
===Ettus N210===
  
 +
* [[OpenBTS: N210 Instalasi GPSDO Kit]]
 
* [[OpenBTS: N210 GNURadio]]
 
* [[OpenBTS: N210 GNURadio]]
 +
* [[OpenBTS: N210 GNURadio 3.7.0]]
 
* [[OpenBTS: N210 Instalasi OpenBTS]]
 
* [[OpenBTS: N210 Instalasi OpenBTS]]
 
* [[OpenBTS: N210 Instalasi Yate]]
 
* [[OpenBTS: N210 Instalasi Yate]]
 
* [[OpenBTS: N210 Yate Config Test]]
 
* [[OpenBTS: N210 Yate Config Test]]
 
* [[OpenBTS: N210 Burn Firmware]]
 
* [[OpenBTS: N210 Burn Firmware]]
 +
 +
===RangeNetworks===
 +
 +
* [[OpenBTS: RangeNetwork Foto]]
 +
* [[OpenBTS: RangeNetwork menggunakan USB recovery image]]
 +
* [[OpenBTS: RangeNetwork Default Setting]]
 +
* [[OpenBTS: RangeNetwork Instalasi UHD]]
 +
* [[OpenBTS: RangeNetwork Compile GNURadio UHD]]
 +
* [[OpenBTS: RangeNetwork Compile]]
 +
* [[OpenBTS: RangeNetwork Compile OpenBTS 2.8.0]]
 +
* [[OpenBTS: RangeNetwork Compile OpenBTS 3.1.3]]
 +
* [[OpenBTS: RangeNetwork Yate Compile]] '''*RECOMMENDED*'''
 +
* [[OpenBTS: RangeNetwork Web Interface]]
 +
* [[OpenBTS: RangeNetwork Trunk ke Asterisk Lain]]
 +
* [[OpenBTS: RangeNetwork Audit]]
 +
* [[VoIP: Trunk]]
  
 
===GPRS===
 
===GPRS===
  
 
* [[OpenBTS: GPRS]]
 
* [[OpenBTS: GPRS]]
 +
* [[OpenBTS: GPRS Konfigurasi]]
 +
* [[OpenBTS: GPRS untuk dibelakang Router dengan NAT]]
 +
 +
===Briker OpenBTS===
 +
 +
* [[OpenBTS: Briker]]
 +
 +
===FreeSWITCH OpenBTS===
 +
 +
* [[OpenBTS: FreeSWITCH]]
  
 
===Power Amplifier===
 
===Power Amplifier===
Line 321: Line 701:
 
* [[OpenBTS: Permohonan Kanal dan DID untuk OpenBTS]]
 
* [[OpenBTS: Permohonan Kanal dan DID untuk OpenBTS]]
 
* [[OpenBTS: 2013/02/19 - OpenBTS TelkomSel Mengudara di Muscat Oman]]
 
* [[OpenBTS: 2013/02/19 - OpenBTS TelkomSel Mengudara di Muscat Oman]]
 +
* [[OpenBTS: Beroperasi di Papua]]
  
 
===Dokumentasi Video===
 
===Dokumentasi Video===
Line 331: Line 712:
 
* http://youtu.be/6LCuoeI57ak (5/6)
 
* http://youtu.be/6LCuoeI57ak (5/6)
 
* http://youtu.be/-dEqcHoIlYk (6/6)
 
* http://youtu.be/-dEqcHoIlYk (6/6)
 +
* http://www.youtube.com/watch?v=Ff_rw4kAOZg&feature=share
 +
 +
===Perjuangan OpenBTS===
 +
 +
* http://www.technologyreview.com/news/522371/how-remote-places-can-get-cellular-coverage-by-doing-it-themselves/?utm_campaign=socialsync&utm_medium=social-post&utm_source=twitter
 +
 +
  
 
[[Category: Wireless]]
 
[[Category: Wireless]]
 
[[Category: Selular]]
 
[[Category: Selular]]

Latest revision as of 14:11, 14 January 2020

Persiapan

sudo apt-get -y install libboost-all-dev libusb-1.0-0-dev python-cheetah doxygen python-docutils \
git python cmake ethtool libfontconfig1-dev libxrender-dev libpulse-dev \
gcc-4.7 g++ automake libtool python-dev libfftw3-dev \
libcppunit-dev libboost-all-dev libusb-dev fort77 \
libsdl1.2-dev python-wxgtk2.8 subversion git-core guile-1.8-dev \
libqt4-dev python-numpy ccache python-opengl libgsl0-dev \
python-cheetah python-lxml doxygen qt4-dev-tools \
libqwt5-qt4-dev libqwtplot3d-qt4-dev pyqt4-dev-tools \
libpcre3 libpcre3-dbg libpcre3-dev libpcrecpp0 \
python-wxgtk2.8 python-wxtools wx2.8-i18n libwxgtk2.8-dev libgtk2.0-dev \
autoconf libtool libosip2-dev libortp-dev \
libusb-1.0-0-dev g++ erlang bison flex \
subversion autoconf libtool libosip2-dev libortp-dev g++ sqlite3 libusb-1.0.0-dev \
libsqlite3-dev erlang libreadline6-dev libboost-all-dev swig libfftw3-dev libcppunit-dev \
libaudio-dev libusb-dev make

Test Ethernet di laptop / PC pastikan kita menggunakan Gigabit Ethernet. Cara men-test dengan menggunakan ethtool

apt -y install ethtool
ethtool enp3s0

Harus keluar kira-kira seperti di bawah ini

Settings for enp3s0:
	Supported ports: [ TP MII ]
	Supported link modes:   10baseT/Half 10baseT/Full 
	                        100baseT/Half 100baseT/Full 
	                        1000baseT/Half 1000baseT/Full 
	Supported pause frame use: No
	Supports auto-negotiation: Yes
	Supported FEC modes: Not reported
	Advertised link modes:  10baseT/Half 10baseT/Full 
	                        100baseT/Half 100baseT/Full 
	                        1000baseT/Half 1000baseT/Full 
	Advertised pause frame use: Symmetric Receive-only
	Advertised auto-negotiation: Yes
	Advertised FEC modes: Not reported
	Link partner advertised link modes:  10baseT/Half 10baseT/Full 
	                                     100baseT/Half 100baseT/Full 
	Link partner advertised pause frame use: Symmetric Receive-only
	Link partner advertised auto-negotiation: Yes
	Link partner advertised FEC modes: Not reported
	Speed: 100Mb/s
	Duplex: Full
	Port: MII
	PHYAD: 0
	Transceiver: internal
	Auto-negotiation: on
	Supports Wake-on: pumbg
	Wake-on: g
	Current message level: 0x00000033 (51)
	 		       drv probe ifdown ifup
	Link detected: yes

Pastikan ethernet mampu bekerja pada Gbps (1000baseT).


Set IP address interface ethernet

ifconfig enp3s0 192.168.10.1

Cek sambungan ke N210.

ping 192.168.10.2

HARUS ADA Responds!!!

PING 192.168.10.2 (192.168.10.2) 56(84) bytes of data.
64 bytes from 192.168.10.2: icmp_req=1 ttl=32 time=1.74 ms

Bagi anda yang menggunakan desktop Ubuntu sebaiknya di set juga dari Network Connection di Desktop agar menjadi IP address statik


Install SDCC

Sebaiknya jangan mengcompile dari source code karena membuat pusing kepala. Install sdcc sebaiknya langsung dari file .deb saja.

wget -c http://launchpadlibrarian.net/38703081/sdcc_2.9.0-5_amd64.deb
wget -c http://launchpadlibrarian.net/38689168/sdcc-libraries_2.9.0-5_all.deb
dpkg -i sdcc_2.9.0-5_amd64.deb sdcc-libraries_2.9.0-5_all.deb

Download Source Code UHD

echo "/usr/local/lib" >> /etc/ld.so.conf
cd /usr/local/src
git clone git://ettus.sourcerepo.com/ettus/uhd.git uhd.git

Compile UHD

cd /usr/local/src/uhd.git/host/
mkdir build
cd /usr/local/src/uhd.git/host/build
cmake -DENABLE_LIBUHD=ON -DENABLE_EXAMPLES=ON -DENABLE_UTILS=ON -DENABLE_TESTS=ON ../
make
make test
make install
ldconfig

Download & Compile GNURadio

cd /usr/local/src
wget -c http://voiprakyat.or.id/pub/openbts/usrp52mhz.patch
wget -c http://gnuradio.org/redmine/attachments/download/279/gnuradio-3.4.2.tar.gz
cd /usr/local/src
tar -zxf gnuradio-3.4.2.tar.gz
cd gnuradio
patch -p0 < ../usrp52mhz.patch
./configure --enable-gr-uhd --disable-usrp2 --disable-usrp

Perbaiki error: ‘intptr_t’

vi /usr/local/src/gnuradio/gnuradio-core/src/lib/filter/qa_gri_mmse_fir_interpolator_cc.cc  

tambahkan

#include <unistd.h>

Compile GNURadio

cd /usr/local/src/gnuradio
make
make install
ldconfig

Install UHD USRP ke udev

Lakukan

cd /usr/local/share/uhd/utils
sudo cp uhd-usrp.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules

Install Image 003.005.000

Download Image UHD 003.005.000

sudo /usr/local/lib/uhd/utils/uhd_images_downloader.py
Images successfully installed to: /usr/local/share/uhd/images

Burn ke N210, pastikan kita terhubung ke N210 & N210 dalam keadaan operasinal. Lakukan,

/usr/local/bin/usrp_n2xx_simple_net_burner --addr="192.168.10.2"

Hasilnya kira-kira

linux; GNU C++ version 4.7.3; Boost_104900; UHD_003.005.003-112-gea418a85

Searching for USRP N2XX with IP address 192.168.10.2.
Found n210_r4.

Searching for specified images.

Will burn the following images:
 * Firmware: /usr/local/share/uhd/images/usrp_n210_fw.bin
 * FPGA:     /usr/local/share/uhd/images/usrp_n210_r4_fpga.bin

Querying n210_r4 for flash information.
 * Flash size:  4194304
 * Sector size: 65536

Erasing FPGA image.
 * Successfully erased 1572864 bytes at 1572864.
Writing FPGA image.
 * Successfully wrote 1311644 bytes.
Verifying FPGA image.
 * Successful.

Erasing firmware image.
 * Successfully erased 31744 bytes at 3145728.
Writing firmware image.
 * Successfully wrote 16383 bytes.
Verifying firmware image.
 * Successful.

Image burning successful. Reset USRP (Y/n)? Y
Resetting USRP.

Test

Find Device

Lakukan

uhd_find_devices 

Hasilnya

linux; GNU C++ version 4.7.3; Boost_104900; UHD_003.005.003-112-gea418a85

--------------------------------------------------
-- UHD Device 0
--------------------------------------------------
Device Address:
    type: usrp2
    addr: 192.168.10.2
    name: 
    serial: F306BB

Test GPSDO

Test GPSDO

cd /usr/local/src/uhd.git/host/examples
wget https://sites.google.com/site/byungchulweb/gnufile/gps_test.cpp

Masukan

vi /usr/local/src/uhd.git/host/examples/CMakeLists.txt 

masukan

gps_test.cpp

Compile

cd ..
cd build
cmake ../
make
make test
sudo make install
sudo ldconfig

Test

cd /usr/local/src/uhd.git/host/build/examples
sudo ./gps_test

Hasilnya

..
..
-- Setting references to the internal GPSDO
-- Initializing time to the internal GPSDO
Using Device: Single USRP:
  Device: USRP2 / N-Series Device
  Mboard 0: N210r4
  RX Channel: 0
    RX DSP: 0
    RX Dboard: A
    RX Subdev: WBXv3 RX+GDB
  TX Channel: 0
    TX DSP: 0
    TX Dboard: A
    TX Subdev: WBXv3 TX+GDB

GPS epoch time: 1136081736 seconds
GPS lock status: unlocked
 PS_GPGGA: $GPGGA,021536.00,0000.0000,N,00000.0000,E,0,99,1.0,0.0,M,0.0,M,,*5F
 PS_GPRMC: $GPRMC,021536.00,V,0000.0000,N,00000.0000,E,0.0,0.0,010106,,*21

Test uhd usrp probe

cd /usr/local/bin
./uhd_usrp_probe


Hasilnya

..
..
-- Detecting internal GPSDO.... Found a Jackson Labs GPS
-- found
-- Setting references to the internal GPSDO
-- Initializing time to the internal GPSDO
  _____________________________________________________
 /
|       Device: USRP2 / N-Series Device
|     _____________________________________________________
|    /
|   |       Mboard: N210r4
|   |   hardware: 2577
|   |   mac-addr: 00:80:2f:0a:d0:9c
|   |   ip-addr: 192.168.10.2
|   |   subnet: 255.255.255.255
|   |   gateway: 255.255.255.255
|   |   gpsdo: none
|   |   serial: F306BB
|   |   FW Version: 12.3
|   |   FPGA Version: 10.0
|   |   
|   |   Time sources: none, external, _external_, mimo, gpsdo
|   |   Clock sources: internal, external, mimo, gpsdo
|   |   Sensors: gps_gpgga, gps_gprmc, gps_time, gps_locked, gps_servo, mimo_locked, ref_locked
|   |     _____________________________________________________
|   |    /
|   |   |       RX DSP: 0
|   |   |   Freq range: -50.000 to 50.000 Mhz
|   |     _____________________________________________________
|   |    /
|   |   |       RX DSP: 1
|   |   |   Freq range: -50.000 to 50.000 Mhz
|   |     _____________________________________________________
|   |    /
|   |   |       RX Dboard: A
|   |   |   ID: WBX v3, WBX v3 + Simple GDB (0x0057)
|   |   |   Serial: F35DB9
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       RX Frontend: 0
|   |   |   |   Name: WBXv3 RX+GDB
|   |   |   |   Antennas: TX/RX, RX2, CAL
|   |   |   |   Sensors: lo_locked
|   |   |   |   Freq range: 68.750 to 2200.000 Mhz
|   |   |   |   Gain range PGA0: 0.0 to 31.5 step 0.5 dB
|   |   |   |   Connection Type: IQ
|   |   |   |   Uses LO offset: No
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       RX Codec: A
|   |   |   |   Name: ads62p44
|   |   |   |   Gain range digital: 0.0 to 6.0 step 0.5 dB
|   |   |   |   Gain range fine: 0.0 to 0.5 step 0.1 dB
|   |     _____________________________________________________
|   |    /
|   |   |       TX DSP: 0
|   |   |   Freq range: -250.000 to 250.000 Mhz
|   |     _____________________________________________________
|   |    /
|   |   |       TX Dboard: A
|   |   |   ID: WBX v3 (0x0056)
|   |   |   Serial: F35DB9
|   |   |   ID: WBX + Simple GDB, WBX v3 + Simple GDB, WBX v4 + Simple GDB (0x004f)
|   |   |   Serial: 0
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       TX Frontend: 0
|   |   |   |   Name: WBXv3 TX+GDB
|   |   |   |   Antennas: TX/RX, CAL
|   |   |   |   Sensors: lo_locked
|   |   |   |   Freq range: 68.750 to 2200.000 Mhz
|   |   |   |   Gain range PGA0: 0.0 to 31.0 step 1.0 dB
|   |   |   |   Connection Type: IQ
|   |   |   |   Uses LO offset: No
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       TX Codec: A
|   |   |   |   Name: ad9777
|   |   |   |   Gain Elements: None 



Test clock 52MHz

cd /usr/local/bin
./uhd_usrp_probe --args="master_clock_rate=52e6"

Hasilnya kira-kira

..
..
-- Detecting internal GPSDO.... Found a Jackson Labs GPS
-- found
-- Setting references to the internal GPSDO
-- Initializing time to the internal GPSDO
  _____________________________________________________
 /
|       Device: USRP2 / N-Series Device
|     _____________________________________________________
|    /
|   |       Mboard: N210r4
|   |   hardware: 2577
|   |   mac-addr: 00:80:2f:0a:d0:9c
|   |   ip-addr: 192.168.10.2
|   |   subnet: 255.255.255.255
|   |   gateway: 255.255.255.255
|   |   gpsdo: none
|   |   serial: F306BB
|   |   FW Version: 12.3
|   |   FPGA Version: 10.0
|   |   
|   |   Time sources: none, external, _external_, mimo, gpsdo
|   |   Clock sources: internal, external, mimo, gpsdo
|   |   Sensors: gps_gpgga, gps_gprmc, gps_time, gps_locked, gps_servo, mimo_locked, ref_locked
|   |     _____________________________________________________
|   |    /
|   |   |       RX DSP: 0
|   |   |   Freq range: -50.000 to 50.000 Mhz
|   |     _____________________________________________________
|   |    /
|   |   |       RX DSP: 1
|   |   |   Freq range: -50.000 to 50.000 Mhz
|   |     _____________________________________________________
|   |    /
|   |   |       RX Dboard: A
|   |   |   ID: WBX v3, WBX v3 + Simple GDB (0x0057)
|   |   |   Serial: F35DB9
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       RX Frontend: 0
|   |   |   |   Name: WBXv3 RX+GDB
|   |   |   |   Antennas: TX/RX, RX2, CAL
|   |   |   |   Sensors: lo_locked
|   |   |   |   Freq range: 68.750 to 2200.000 Mhz
|   |   |   |   Gain range PGA0: 0.0 to 31.5 step 0.5 dB
|   |   |   |   Connection Type: IQ
|   |   |   |   Uses LO offset: No
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       RX Codec: A
|   |   |   |   Name: ads62p44
|   |   |   |   Gain range digital: 0.0 to 6.0 step 0.5 dB
|   |   |   |   Gain range fine: 0.0 to 0.5 step 0.1 dB
|   |     _____________________________________________________
|   |    /
|   |   |       TX DSP: 0
|   |   |   Freq range: -250.000 to 250.000 Mhz
|   |     _____________________________________________________
|   |    /
|   |   |       TX Dboard: A
|   |   |   ID: WBX v3 (0x0056)
|   |   |   Serial: F35DB9
|   |   |   ID: WBX + Simple GDB, WBX v3 + Simple GDB, WBX v4 + Simple GDB (0x004f)
|   |   |   Serial: 0
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       TX Frontend: 0
|   |   |   |   Name: WBXv3 TX+GDB
|   |   |   |   Antennas: TX/RX, CAL
|   |   |   |   Sensors: lo_locked
|   |   |   |   Freq range: 68.750 to 2200.000 Mhz
|   |   |   |   Gain range PGA0: 0.0 to 31.0 step 1.0 dB
|   |   |   |   Connection Type: IQ
|   |   |   |   Uses LO offset: No
|   |   |     _____________________________________________________
|   |   |    /
|   |   |   |       TX Codec: A
|   |   |   |   Name: ad9777
|   |   |   |   Gain Elements: None

Test Benchmark

cd /usr/local/src/uhd.git/host/build/examples
./benchmark_rate --rx_rate 10000000 --tx_rate 10000000

Hasilnya kira-kira

..
..
-- Detecting internal GPSDO.... Found a Jackson Labs GPS
-- found
-- Setting references to the internal GPSDO
-- Initializing time to the internal GPSDO

UHD Warning:
    get_time: ValueError: get_nmea(): no GPRMC message found
Using Device: Single USRP:
  Device: USRP2 / N-Series Device
  Mboard 0: N210r4
  RX Channel: 0
    RX DSP: 0
    RX Dboard: A
    RX Subdev: WBXv3 RX+GDB
  TX Channel: 0
    TX DSP: 0
    TX Dboard: A
    TX Subdev: WBXv3 TX+GDB

Testing receive rate 10.000000 Msps on 1 channels
Testing transmit rate 10.000000 Msps on 1 channels

Benchmark rate summary:
  Num received samples:    100107777
  Num dropped samples:     0
  Num overflows detected:  0
  Num transmitted samples: 100229019
  Num sequence errors:     0
  Num underflows detected: 0 

Done!

Referensi

Pranala Menarik

Persiapan

Script

OpenBTS 2.6

OpenBTS 2.8

Multi OpenBTS 2.8

OpenBTS 3.1.x

Ettus E110

Ettus N210

RangeNetworks

GPRS

Briker OpenBTS

FreeSWITCH OpenBTS

Power Amplifier

Lain Lain

Catatan Legal dan Pendukung

Catatan Sejarah

Dokumentasi Video

Perjuangan OpenBTS