Difference between revisions of "OpenBTS: Yate Softswitch"
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(38 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Yate]] adalah sebuah mesin untuk routing message yang sangat flexible. [[Yate]] di rancang untuk dapat di jalankan mulai dari switch [[SIP]] yang sangat besar hingga [[SIP]] client yang di jalankan di pesawa telepon. Proses instalasi Yate akan di jelaskan di sini. | [[Yate]] adalah sebuah mesin untuk routing message yang sangat flexible. [[Yate]] di rancang untuk dapat di jalankan mulai dari switch [[SIP]] yang sangat besar hingga [[SIP]] client yang di jalankan di pesawa telepon. Proses instalasi Yate akan di jelaskan di sini. | ||
− | == | + | ==Siapkan Pendukung== |
− | + | * Pastikan ada sambungan ke [[Internet]], banyak aplikasi yang harus di download via [[Internet]] | |
+ | * Instal aplikasi pendukung | ||
sudo apt-get install build-essential autoconf cvs sox pkg-config git-core subversion \ | sudo apt-get install build-essential autoconf cvs sox pkg-config git-core subversion \ | ||
− | libgsm1-dev libgsm1 php5-cli | + | libgsm1-dev libgsm1 php5-cli python-setuptools |
==Download Yate== | ==Download Yate== | ||
Line 12: | Line 13: | ||
Source Code Yate dapat di ambil dari | Source Code Yate dapat di ambil dari | ||
− | + | * http://yate.null.ro/pmwiki/index.php?n=Main.Download | |
− | + | * http://yate.null.ro/tarballs/yate4/yate-4.3.0-1.tar.gz | |
==Compile Yate== | ==Compile Yate== | ||
− | Untuk interoperability dengan [[OpenBTS]], kita perlu menginstalasi libgsm1-dev SEBELUM menginstall Yate. Compile Yate | + | Untuk interoperability dengan [[OpenBTS]], kita perlu menginstalasi libgsm1-dev SEBELUM menginstall Yate. Compile Yate melalui perintah |
− | cp yate-4. | + | cp yate-4.3.0-1.tar.gz /usr/local/src/ |
cd /usr/local/src/ | cd /usr/local/src/ | ||
− | tar zxvf yate-4. | + | tar zxvf yate-4.3.0-1.tar.gz |
cd /usr/local/src/yate | cd /usr/local/src/yate | ||
./configure | ./configure | ||
Line 27: | Line 28: | ||
make install | make install | ||
− | + | ==Cek Instalasi== | |
− | ls /usr/local/ | + | Pastikan bahwa codec gsm telah berhasil di instalasi dengan baik dengan lihat adanya file "modules/gsmcodec.yate" |
− | ls /usr/local/ | + | |
+ | ls /usr/local/src/yate/modules/ | ||
+ | ls /usr/local/src/yate/modules/gsmcodec.* | ||
harusnya ada | harusnya ada | ||
− | /usr/local/ | + | /usr/local/src/yate/modules/gsmcodec.cpp |
− | + | /usr/local/src/yate/modules/gsmcodec.yate | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | Pastikan bahwa yate telah di instalasi dengan baik di lokasi default dengan melihat adanya file /usr/local/share/yate/scripts | |
− | / | + | ls /usr/local/share/yate/scripts |
==Library Lain== | ==Library Lain== | ||
Line 59: | Line 55: | ||
Proses instalasi yang perlu dilakukan adalah, | Proses instalasi yang perlu dilakukan adalah, | ||
− | cd /usr/src | + | cd /usr/local/src |
git clone git://github.com/pmarti/python-messaging | git clone git://github.com/pmarti/python-messaging | ||
git clone git://github.com/kheimerl/libvbts | git clone git://github.com/kheimerl/libvbts | ||
− | cd /usr/src/python-messaging/ | + | cd /usr/local/src/python-messaging/ |
sudo python setup.py install | sudo python setup.py install | ||
− | cd /usr/src/libvbts/ | + | cd /usr/local/src/libvbts/ |
sudo python setup_yate.py install | sudo python setup_yate.py install | ||
− | |||
− | |||
==Yate Configuration== | ==Yate Configuration== | ||
Line 77: | Line 71: | ||
ysipchan mengkonfigurasi sip module. Kita perlu memberitahukan yate untuk membuat SIP MESSAGE event. | ysipchan mengkonfigurasi sip module. Kita perlu memberitahukan yate untuk membuat SIP MESSAGE event. | ||
− | vi /etc/yate/ysipchan.conf | + | vi /usr/local/etc/yate/ysipchan.conf |
Di bagian [general], tambahkan : | Di bagian [general], tambahkan : | ||
Line 94: | Line 88: | ||
regexroute.conf control routing dari paket tertentu. Kita menggunakan regexroute.conf untuk mematikan authorization of messages. | regexroute.conf control routing dari paket tertentu. Kita menggunakan regexroute.conf untuk mematikan authorization of messages. | ||
− | vi /etc/yate/regexroute.conf | + | vi /usr/local/etc/yate/regexroute.conf |
+ | |||
+ | '''*JANGAN*''' | ||
− | + | Pastikan di bagian akhir dari blok [default] tidak ada | |
.*=return true | .*=return true | ||
Line 104: | Line 100: | ||
extmodule.conf mengontrol external modul yate. libvbts mengimplementasi beberapa hal yang dibutuhkan untuk operasi OpenBTS. Kita perlu mengaktif module tersebut, dengan mengedit | extmodule.conf mengontrol external modul yate. libvbts mengimplementasi beberapa hal yang dibutuhkan untuk operasi OpenBTS. Kita perlu mengaktif module tersebut, dengan mengedit | ||
− | vi /etc/yate/extmodule.conf | + | vi /usr/local/etc/yate/extmodule.conf |
Pada block [scripts] isi: | Pada block [scripts] isi: | ||
[scripts] | [scripts] | ||
+ | |||
VBTS_Call_Route.py=10 | VBTS_Call_Route.py=10 | ||
− | VBTS_Call_Originate.py=10 | + | ; VBTS_Call_Originate.py=10 |
− | VBTS_Call_Provisioning.py=10 | + | ; VBTS_Call_Provisioning.py=10 |
VBTS_Route_Local.py=10 | VBTS_Route_Local.py=10 | ||
− | VBTS_Route_Provisioning.py= | + | VBTS_Route_Provisioning.py=5 |
VBTS_SMS_Echo.py=10|vbts_tp_dest_address|^100$ | VBTS_SMS_Echo.py=10|vbts_tp_dest_address|^100$ | ||
− | VBTS_SMS_Provisioning.py= | + | VBTS_SMS_Provisioning.py=5 |
VBTS_SMS_Route.py=50 | VBTS_SMS_Route.py=50 | ||
− | VBTS_SMS_Send.py=50 | + | ; VBTS_SMS_Send.py=50 |
Variabel ini menset prioritas penanganan message dan / atau regex yang menyebabkan bagaimana cara message di tangani. | Variabel ini menset prioritas penanganan message dan / atau regex yang menyebabkan bagaimana cara message di tangani. | ||
Line 134: | Line 131: | ||
Masukan untuk Yate | Masukan untuk Yate | ||
− | config SIP.Proxy.SMS {YATE_IPADDRESS}:{YATE_PORT} | + | config SIP.Proxy.SMS {YATE_IPADDRESS}:{YATE_PORT} #probably localhost:5060 |
+ | config SIP.Proxy.Speech {YATE_IPADDRESS}:{YATE_PORT} | ||
+ | |||
+ | atau | ||
+ | |||
+ | config SIP.Proxy.SMS localhost:5060 | ||
+ | config SIP.Proxy.Speech localhost:5060 | ||
− | |||
config save | config save | ||
Line 151: | Line 153: | ||
− | ===Run=== | + | ===Run & Kill=== |
Menjalankan yate menggunakan perintah | Menjalankan yate menggunakan perintah | ||
− | /etc/ | + | cd /usr/local/src/yate |
− | / | + | ./run -t -l /var/log/yate -vvvv -c /usr/local/etc/yate -m /usr/local/lib/yate -e /usr/local/share/yate -d |
+ | |||
+ | Mematikan yate | ||
+ | |||
+ | killall yate | ||
+ | |||
+ | |||
+ | |||
+ | ===Melihat Log=== | ||
+ | |||
+ | Melihat log penting sekali untuk melihat masalah dalam konfigurasi, log yang penting | ||
+ | |||
+ | * /tmp/VBTS.log | ||
+ | * /var/log/yate | ||
+ | |||
+ | |||
===Calling=== | ===Calling=== | ||
Line 175: | Line 192: | ||
99991008 info | 99991008 info | ||
− | |||
− | |||
− | |||
− | |||
− | |||
Line 242: | Line 254: | ||
* [[OpenBTS]] | * [[OpenBTS]] | ||
+ | * [[OpenBTS: Arsitektur secara umum]] | ||
+ | |||
+ | ===Persiapan=== | ||
+ | |||
+ | * [[USRP: High Precision Clock]] | ||
+ | * [[USRP: Menyambungkan ClockTamer ke USRP1]] | ||
+ | * [[USRP: Kalibrasi ClockTamer]] | ||
+ | * [[USRP: ClockTamer Control Protocol]] | ||
+ | * [[USRP: ClockTamer Flashing]] | ||
+ | * [[USRP: Instalasi Board]] | ||
+ | * [[OpenBTS: GIT Source Code]] | ||
+ | * [[USRP: Rangkaian Board USRP]] | ||
+ | * [[OpenBTS: Tethr untuk Bencana Alam]] | ||
+ | * [[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=== | ||
+ | |||
+ | * [[GNURadio]] | ||
+ | * [[GNURadio: Ubuntu Install]] | ||
+ | * [[GNURadio: Menggunakan UHD]] | ||
+ | * [[GNURadio: Ubuntu Install GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu Install GNURadio 3.4.2 Clock 52MHz]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 13.04 Install GNURadio 3.4.2 Clock 52MHz]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Contoh Aplikasi]] | ||
+ | * [[GNURadio: Spectrum Analizer GSM]] | ||
+ | * [[GNURadio: Mengubah board RFX1800 menjadi RFX900]] | ||
+ | * [[GNURadio: Programming Untuk Pemula]] | ||
+ | * [[OpenBTS: Ubuntu Install]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Ubuntu Install OpenBTS 2.6 Clock 52MHz]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Ubuntu 13.04 Install OpenBTS 2.6 Clock 52MHz]] ''NOT RECOMMENDED'' | ||
+ | * [[OpenBTS: Konfigurasi]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Kalibrasi]] | ||
+ | * [[OpenBTS: Konfigurasi Asterisk untuk OpenBTS]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Menjalankan smqueue]] | ||
+ | * [[OpenBTS: Mengoperasikan BTS]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Tampilan di Nokia saat pakai OpenBTS]] | ||
+ | * [[OpenBTS: Operasi 1800 MHz]] | ||
+ | * [[OpenBTS: Beberapa Tips]] | ||
+ | * [[OpenBTS: USRP2]] | ||
+ | * [[OpenBTS: Amplifier]] | ||
+ | * [[OpenBTS: SMS]] | ||
+ | * [[AirProbe]] | ||
+ | |||
+ | ===OpenBTS 2.8=== | ||
+ | |||
+ | * [[GNURadio: Ubuntu 11.10 Install]] ''NOT RECOMMENED'' | ||
+ | * [[GNURadio: Ubuntu 11.10 instalasi menggunakan Repo]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Download GNURadio]] | ||
+ | * [[GNURadio: Install UHD]] | ||
+ | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.3.0]] | ||
+ | * [[GNURadio: Ubuntu 12.10 Instal GNURadio 3.3.0]] | ||
+ | * [[GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.1]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 12.04 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 12.04.1 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.2]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 13.04 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.0]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.3.2]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.6.0]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 11.10 Install dari GIT GNURadio]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 11.10 cek USRP Daughter Board]] | ||
+ | * [[GNURadio: UHD]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: UHD Image]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: UHD burn EEPROM RFX Board di USRP1]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: UHD Identifikasi Device]] | ||
+ | * [[OpenBTS: Ubuntu 11.10 Install]] | ||
+ | * [[OpenBTS: dari GIT ttsou]] | ||
+ | * [[OpenBTS: 2.8 dari SVN Install]] | ||
+ | * [[OpenBTS: 2.8 dari SVN Install Clock 52MHz]] '''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 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 Edit User di sqlite3.db]] '''RECOMMEND''' | ||
+ | * [[OpenBTS: Yate Softswitch]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Yate Softswitch install Ubuntu 12.10]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Yate Softswitch install Ubuntu 13.04]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Yate Config Test]] | ||
+ | * [[OpenBTS: 2.8 Instalasi Real Time Asterisk]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: 2.8 Menjalankan]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: 2.8 Konfigurasi]] | ||
+ | * [[OpenBTS: 2.8 Konfigurasi Cognitive Radio Elsabagh]] | ||
+ | * [[OpenBTS: 2.8 Konfigurasi Subscriber Registery]] | ||
+ | * [[OpenBTS: Database SQLite]] | ||
+ | * [[OpenBTS: Set SQLite Subscriber Registry secara manual]] | ||
+ | * [[OpenBTS: FreeSWITCH]] | ||
+ | |||
+ | ===Multi OpenBTS 2.8=== | ||
+ | |||
+ | * [[OpenBTS: Pola Multi OpenBTS]] '''RECOMMENDED''' | ||
+ | * [[Multi OpenBTS: Catatan Konfigurasi]] '''RECOMMENDED''' | ||
+ | |||
+ | ===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=== | ||
+ | |||
+ | * [[OpenBTS: E110 Cara Login]] | ||
+ | * [[OpenBTS: E110 Install Image di MicroSD]] '''*RECOMMENDED*''' | ||
+ | * [[OpenBTS: E110 Cek Daughter Board]] | ||
+ | * [[OpenBTS: E110 Mengubah Master Clock]] | ||
+ | * [[OpenBTS: E110 Kalibrasi Clock]] | ||
+ | * [[OpenBTS: E110 Konfigurasi Jaringan]] | ||
+ | * [[OpenBTS: E110 Bekerja dengan opkg]] | ||
+ | * [[OpenBTS: E110 Instalasi iptables]] | ||
+ | * [[OpenBTS: E110 GNURadio]] | ||
+ | * [[OpenBTS: E110 Compile UHD]] ''Not Recommended'' | ||
+ | * [[OpenBTS: E110 Compile UHD dari Release Bukan git]] ''Not 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 2.6]] ''NOT RECOMMENDED'' | ||
+ | * [[OpenBTS: E110 Instalasi OpenBTS 2.8 untuk MultiBTS]] '''*RECOMMENDED*''' | ||
+ | * [[OpenBTS: E110 Yate Softswitch]] | ||
+ | |||
+ | ===Ettus N210=== | ||
+ | |||
+ | * [[OpenBTS: N210 Instalasi GPSDO Kit]] | ||
+ | * [[OpenBTS: N210 GNURadio]] | ||
+ | * [[OpenBTS: N210 GNURadio 3.7.0]] | ||
+ | * [[OpenBTS: N210 Instalasi OpenBTS]] | ||
+ | * [[OpenBTS: N210 Instalasi Yate]] | ||
+ | * [[OpenBTS: N210 Yate Config Test]] | ||
+ | * [[OpenBTS: N210 Burn Firmware]] | ||
+ | |||
+ | ===RangeNetworks=== | ||
+ | |||
+ | * [[OpenBTS: RangeNetwork Default Setting]] | ||
+ | * [[OpenBTS: RangeNetwork Compile GNURadio UHD]] | ||
+ | * [[OpenBTS: RangeNetwork Compile]] | ||
+ | * [[OpenBTS: RangeNetwork Compile OpenBTS 3.1.3]] '''*RECOMMENDED*''' | ||
+ | * [[OpenBTS: RangeNetwork Yate Compile]] '''*RECOMMENDED*''' | ||
+ | * [[OpenBTS: RangeNetwork Web Interface]] | ||
+ | * [[OpenBTS: RangeNetwork Trunk ke Asterisk Lain]] | ||
+ | * [[VoIP: Trunk]] | ||
+ | |||
+ | |||
+ | ===GPRS=== | ||
+ | |||
+ | * [[OpenBTS: GPRS]] | ||
+ | * [[OpenBTS: GPRS Konfigurasi]] | ||
+ | * [[OpenBTS: GPRS untuk dibelakang Router dengan NAT]] | ||
+ | |||
+ | ===Briker OpenBTS=== | ||
+ | |||
+ | * [[OpenBTS: Briker]] | ||
+ | |||
+ | ===FreeSWITCH OpenBTS=== | ||
+ | |||
+ | * [[OpenBTS: FreeSWITCH]] | ||
+ | |||
+ | ===Power Amplifier=== | ||
+ | |||
+ | * [[Driver 900MHz]] | ||
+ | * [[Power Amplifier 900MHz]] | ||
+ | * [[Duplexer]] | ||
+ | * [[OpenBTS: Menaikan Jangkauan OpenBTS]] | ||
+ | |||
+ | ===Lain Lain=== | ||
+ | |||
+ | * [[OpenBTS: Materi Magang di ICTWATCH]] | ||
+ | * [[OpenBTS: Seminar Outline]] | ||
+ | * [[OpenBTS: Workshop Outline]] | ||
+ | * [[Membuat Base Station GSM Open Source]] | ||
+ | * [[Teknologi Selular]] | ||
+ | * [[GSM: Daftar Channel Frekuensi]] | ||
+ | * [[Wireless Internet]] | ||
+ | * [[OpenBSC]] | ||
+ | * [[AirProbe]] | ||
+ | * [[Base station subsystem]] | ||
+ | * [[GSM]] | ||
+ | * [[Asterisk]] | ||
+ | * [[Mobile phone]] | ||
+ | |||
+ | ===Catatan Legal dan Pendukung=== | ||
+ | |||
+ | * [[Siapa Bilang OpenBTS Ilegal?]] | ||
+ | * [[OpenBTS: Catatan MNC dan MCC Indonesia]] | ||
+ | * [[OpenBTS: Catatan MNC dan MCC COOL]] | ||
+ | * [[OpenBTS : Alokasi Frekuensi Operator GSM Indonesia]] | ||
+ | * [[GSM: Daftar Channel Frekuensi]] | ||
+ | |||
+ | ===Catatan Sejarah=== | ||
+ | |||
+ | * [[2011/04/30 - Workshop OpenBTS Pertama di Indonesia dilakukan di Univ Gajah Putih Takengon Aceh Tengah]] | ||
+ | * [[OpenBTS: Daftar Workshop atau Seminar yang pernah dilakukan]] | ||
+ | * [[OpenBTS: Daftar Artikel di Media]] | ||
+ | * [[OpenBTS: Permohonan Kanal dan DID untuk OpenBTS]] | ||
+ | * [[OpenBTS: 2013/02/19 - OpenBTS TelkomSel Mengudara di Muscat Oman]] | ||
+ | * [[OpenBTS: Beroperasi di Papua]] | ||
+ | |||
+ | ===Dokumentasi Video=== | ||
+ | |||
+ | * http://www.metrotvnews.com/read/newsprograms/2012/10/14/14624/212/Teknologi-BTS | ||
+ | * http://youtu.be/8ogOcUSpINU (1/6) | ||
+ | * http://youtu.be/F5d7HGuhppk (2/6) | ||
+ | * http://youtu.be/90Jgq6bOgrQ (3/6) | ||
+ | * http://youtu.be/cNkx_qNqdfc (4/6) | ||
+ | * http://youtu.be/6LCuoeI57ak (5/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: Selular]] | ||
+ | |||
+ | ==Pranala Menarik== | ||
+ | |||
+ | * [[OpenBTS]] | ||
+ | * [[OpenBTS: Arsitektur secara umum]] | ||
===Persiapan=== | ===Persiapan=== | ||
Line 253: | Line 492: | ||
* [[USRP: Rangkaian Board USRP]] | * [[USRP: Rangkaian Board USRP]] | ||
* [[OpenBTS: Tethr untuk Bencana Alam]] | * [[OpenBTS: Tethr untuk Bencana Alam]] | ||
+ | * [[USRP: Tip Pemesanan]] | ||
===OpenBTS 2.6=== | ===OpenBTS 2.6=== | ||
Line 261: | Line 501: | ||
* [[GNURadio: Ubuntu Install GNURadio 3.4.2]] '''RECOMMENDED''' | * [[GNURadio: Ubuntu Install GNURadio 3.4.2]] '''RECOMMENDED''' | ||
* [[GNURadio: Ubuntu Install GNURadio 3.4.2 Clock 52MHz]] '''RECOMMENDED''' | * [[GNURadio: Ubuntu Install GNURadio 3.4.2 Clock 52MHz]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 13.04 Install GNURadio 3.4.2 Clock 52MHz]] ''NOT RECOMMENDED'' | ||
* [[GNURadio: Contoh Aplikasi]] | * [[GNURadio: Contoh Aplikasi]] | ||
* [[GNURadio: Spectrum Analizer GSM]] | * [[GNURadio: Spectrum Analizer GSM]] | ||
Line 267: | Line 508: | ||
* [[OpenBTS: Ubuntu Install]] '''RECOMMENDED''' | * [[OpenBTS: Ubuntu Install]] '''RECOMMENDED''' | ||
* [[OpenBTS: Ubuntu Install OpenBTS 2.6 Clock 52MHz]] '''RECOMMENDED''' | * [[OpenBTS: Ubuntu Install OpenBTS 2.6 Clock 52MHz]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Ubuntu 13.04 Install OpenBTS 2.6 Clock 52MHz]] ''NOT RECOMMENDED'' | ||
* [[OpenBTS: Konfigurasi]] '''RECOMMENDED''' | * [[OpenBTS: Konfigurasi]] '''RECOMMENDED''' | ||
* [[OpenBTS: Kalibrasi]] | * [[OpenBTS: Kalibrasi]] | ||
Line 287: | Line 529: | ||
* [[GNURadio: Install UHD]] | * [[GNURadio: Install UHD]] | ||
* [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.3.0]] | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.3.0]] | ||
+ | * [[GNURadio: Ubuntu 12.10 Instal GNURadio 3.3.0]] | ||
+ | * [[GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.1]] ''NOT RECOMMENDED'' | ||
* [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
* [[GNURadio: Ubuntu 12.04 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | * [[GNURadio: Ubuntu 12.04 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 12.04.1 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
+ | * [[GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.2]] ''NOT RECOMMENDED'' | ||
+ | * [[GNURadio: Ubuntu 13.04 Instal GNURadio 3.4.2]] '''RECOMMENDED''' | ||
* [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.0]] ''NOT RECOMMENDED'' | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.0]] ''NOT RECOMMENDED'' | ||
* [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.3.2]] ''NOT RECOMMENDED'' | * [[GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.3.2]] ''NOT RECOMMENDED'' | ||
Line 294: | Line 541: | ||
* [[GNURadio: Ubuntu 11.10 Install dari GIT GNURadio]] ''NOT RECOMMENDED'' | * [[GNURadio: Ubuntu 11.10 Install dari GIT GNURadio]] ''NOT RECOMMENDED'' | ||
* [[GNURadio: Ubuntu 11.10 cek USRP Daughter Board]] | * [[GNURadio: Ubuntu 11.10 cek USRP Daughter Board]] | ||
− | * [[GNURadio: UHD]] | + | * [[GNURadio: UHD]] ''NOT RECOMMENDED'' |
− | * [[GNURadio: UHD Image]] | + | * [[GNURadio: UHD Image]] ''NOT RECOMMENDED'' |
+ | * [[GNURadio: UHD burn EEPROM RFX Board di USRP1]] ''NOT RECOMMENDED'' | ||
* [[GNURadio: UHD Identifikasi Device]] | * [[GNURadio: UHD Identifikasi Device]] | ||
* [[OpenBTS: Ubuntu 11.10 Install]] | * [[OpenBTS: Ubuntu 11.10 Install]] | ||
Line 301: | Line 549: | ||
* [[OpenBTS: 2.8 dari SVN Install]] | * [[OpenBTS: 2.8 dari SVN Install]] | ||
* [[OpenBTS: 2.8 dari SVN Install Clock 52MHz]] '''RECOMMENDED''' | * [[OpenBTS: 2.8 dari SVN Install Clock 52MHz]] '''RECOMMENDED''' | ||
− | * [[OpenBTS: Yate Softswitch]] | + | * [[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 dengan UHD tanpa GNURadio]] ''NOT RECOMMENDED'' | ||
+ | * [[OpenBTS: 2.8 Edit User di sqlite3.db]] '''RECOMMEND''' | ||
+ | * [[OpenBTS: Yate Softswitch]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Yate Softswitch install Ubuntu 12.10]] '''RECOMMENDED''' | ||
+ | * [[OpenBTS: Yate Softswitch install Ubuntu 13.04]] '''RECOMMENDED''' | ||
* [[OpenBTS: Yate Config Test]] | * [[OpenBTS: Yate Config Test]] | ||
* [[OpenBTS: 2.8 Instalasi Real Time Asterisk]] '''RECOMMENDED''' | * [[OpenBTS: 2.8 Instalasi Real Time Asterisk]] '''RECOMMENDED''' | ||
* [[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]] | ||
Line 311: | Line 566: | ||
===Multi OpenBTS 2.8=== | ===Multi OpenBTS 2.8=== | ||
− | * [[OpenBTS: Pola Multi OpenBTS]] | + | * [[OpenBTS: Pola Multi OpenBTS]] '''RECOMMENDED''' |
+ | * [[Multi OpenBTS: Catatan Konfigurasi]] '''RECOMMENDED''' | ||
===Ettus E110=== | ===Ettus E110=== | ||
* [[OpenBTS: E110 Cara Login]] | * [[OpenBTS: E110 Cara Login]] | ||
− | * [[OpenBTS: E110 Install Image di MicroSD]] | + | * [[OpenBTS: E110 Install Image di MicroSD]] '''*RECOMMENDED*''' |
* [[OpenBTS: E110 Cek Daughter Board]] | * [[OpenBTS: E110 Cek Daughter Board]] | ||
* [[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 Install UHD Image]] | + | * [[OpenBTS: E110 Compile UHD]] ''Not Recommended'' |
+ | * [[OpenBTS: E110 Compile UHD dari Release Bukan git]] ''Not 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 Yate Softswitch]] | ||
+ | |||
+ | ===Ettus N210=== | ||
+ | |||
+ | * [[OpenBTS: N210 Instalasi GPSDO Kit]] | ||
+ | * [[OpenBTS: N210 GNURadio]] | ||
+ | * [[OpenBTS: N210 GNURadio 3.7.0]] | ||
+ | * [[OpenBTS: N210 Instalasi OpenBTS]] | ||
+ | * [[OpenBTS: N210 Instalasi Yate]] | ||
+ | * [[OpenBTS: N210 Yate Config Test]] | ||
+ | * [[OpenBTS: N210 Burn Firmware]] | ||
+ | |||
+ | ===GPRS=== | ||
+ | |||
+ | * [[OpenBTS: GPRS]] | ||
+ | * [[OpenBTS: GPRS Konfigurasi]] | ||
+ | |||
+ | ===Briker OpenBTS=== | ||
+ | |||
+ | * [[OpenBTS: Briker]] | ||
+ | |||
+ | ===FreeSWITCH OpenBTS=== | ||
+ | |||
+ | * [[OpenBTS: FreeSWITCH]] | ||
===Power Amplifier=== | ===Power Amplifier=== | ||
Line 331: | Line 617: | ||
* [[Power Amplifier 900MHz]] | * [[Power Amplifier 900MHz]] | ||
* [[Duplexer]] | * [[Duplexer]] | ||
+ | * [[OpenBTS: Menaikan Jangkauan OpenBTS]] | ||
===Lain Lain=== | ===Lain Lain=== | ||
Line 361: | Line 648: | ||
* [[OpenBTS: Daftar Workshop atau Seminar yang pernah dilakukan]] | * [[OpenBTS: Daftar Workshop atau Seminar yang pernah dilakukan]] | ||
* [[OpenBTS: Daftar Artikel di Media]] | * [[OpenBTS: Daftar Artikel di Media]] | ||
+ | * [[OpenBTS: Permohonan Kanal dan DID untuk OpenBTS]] | ||
+ | * [[OpenBTS: 2013/02/19 - OpenBTS TelkomSel Mengudara di Muscat Oman]] | ||
===Dokumentasi Video=== | ===Dokumentasi Video=== | ||
+ | * http://www.metrotvnews.com/read/newsprograms/2012/10/14/14624/212/Teknologi-BTS | ||
* http://youtu.be/8ogOcUSpINU (1/6) | * http://youtu.be/8ogOcUSpINU (1/6) | ||
* http://youtu.be/F5d7HGuhppk (2/6) | * http://youtu.be/F5d7HGuhppk (2/6) | ||
Line 370: | Line 660: | ||
* http://youtu.be/6LCuoeI57ak (5/6) | * http://youtu.be/6LCuoeI57ak (5/6) | ||
* http://youtu.be/-dEqcHoIlYk (6/6) | * http://youtu.be/-dEqcHoIlYk (6/6) | ||
+ | |||
+ | [[Category: Wireless]] | ||
+ | [[Category: Selular]] | ||
+ | |||
+ | * 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 08:56, 16 February 2014
Yate adalah sebuah mesin untuk routing message yang sangat flexible. Yate di rancang untuk dapat di jalankan mulai dari switch SIP yang sangat besar hingga SIP client yang di jalankan di pesawa telepon. Proses instalasi Yate akan di jelaskan di sini.
Siapkan Pendukung
- Pastikan ada sambungan ke Internet, banyak aplikasi yang harus di download via Internet
- Instal aplikasi pendukung
sudo apt-get install build-essential autoconf cvs sox pkg-config git-core subversion \ libgsm1-dev libgsm1 php5-cli python-setuptools
Download Yate
Source Code Yate dapat di ambil dari
- http://yate.null.ro/pmwiki/index.php?n=Main.Download
- http://yate.null.ro/tarballs/yate4/yate-4.3.0-1.tar.gz
Compile Yate
Untuk interoperability dengan OpenBTS, kita perlu menginstalasi libgsm1-dev SEBELUM menginstall Yate. Compile Yate melalui perintah
cp yate-4.3.0-1.tar.gz /usr/local/src/ cd /usr/local/src/ tar zxvf yate-4.3.0-1.tar.gz cd /usr/local/src/yate ./configure make make install
Cek Instalasi
Pastikan bahwa codec gsm telah berhasil di instalasi dengan baik dengan lihat adanya file "modules/gsmcodec.yate"
ls /usr/local/src/yate/modules/ ls /usr/local/src/yate/modules/gsmcodec.*
harusnya ada
/usr/local/src/yate/modules/gsmcodec.cpp /usr/local/src/yate/modules/gsmcodec.yate
Pastikan bahwa yate telah di instalasi dengan baik di lokasi default dengan melihat adanya file /usr/local/share/yate/scripts
ls /usr/local/share/yate/scripts
Library Lain
Pastikan anda mempunyai sambungan ke Internet yang baik.
Kita memerlukan dua library untuk melakukan routing di yate, yaitu:
- Python Messaging https://github.com/pmarti/python-messaging
- libvbts https://github.com/kheimerl/libvbts
Proses instalasi yang perlu dilakukan adalah,
cd /usr/local/src git clone git://github.com/pmarti/python-messaging git clone git://github.com/kheimerl/libvbts cd /usr/local/src/python-messaging/ sudo python setup.py install cd /usr/local/src/libvbts/ sudo python setup_yate.py install
Yate Configuration
Ada beberapa file yang perlu di ubah untuk mengkonfigurasi yate dengan OpenBTS. File ini berlokasi di /usr/local/etc/yate/
ysipchan.conf
ysipchan mengkonfigurasi sip module. Kita perlu memberitahukan yate untuk membuat SIP MESSAGE event.
vi /usr/local/etc/yate/ysipchan.conf
Di bagian [general], tambahkan : OpenBTS: Yate Softswitch
[general] maxpkt=4096 generate=yes
dan, di blok [methods], tambahkan :
[methods] message=yes
regexroute.conf
regexroute.conf control routing dari paket tertentu. Kita menggunakan regexroute.conf untuk mematikan authorization of messages.
vi /usr/local/etc/yate/regexroute.conf
*JANGAN*
Pastikan di bagian akhir dari blok [default] tidak ada
.*=return true
extmodule.conf
extmodule.conf mengontrol external modul yate. libvbts mengimplementasi beberapa hal yang dibutuhkan untuk operasi OpenBTS. Kita perlu mengaktif module tersebut, dengan mengedit
vi /usr/local/etc/yate/extmodule.conf
Pada block [scripts] isi:
[scripts]
VBTS_Call_Route.py=10 ; VBTS_Call_Originate.py=10 ; VBTS_Call_Provisioning.py=10 VBTS_Route_Local.py=10 VBTS_Route_Provisioning.py=5 VBTS_SMS_Echo.py=10|vbts_tp_dest_address|^100$ VBTS_SMS_Provisioning.py=5 VBTS_SMS_Route.py=50 ; VBTS_SMS_Send.py=50
Variabel ini menset prioritas penanganan message dan / atau regex yang menyebabkan bagaimana cara message di tangani.
OpenBTS configuration
Hanya perlu satu perubahan parameter untuk operasi dengan openbts: kita perlu mengarahkan OpenBTS di yate agar dapat menangani messages, ini dilakukan di OpenBTS command line:
cd /usr/local/src/openbts-2.8.0/openbts/trunk/apps ./OpenBTSCLI
OpenBTS original / yang normal
SIP.Proxy.SMS 127.0.0.1:5063
Masukan untuk Yate
config SIP.Proxy.SMS {YATE_IPADDRESS}:{YATE_PORT} #probably localhost:5060 config SIP.Proxy.Speech {YATE_IPADDRESS}:{YATE_PORT}
atau
config SIP.Proxy.SMS localhost:5060 config SIP.Proxy.Speech localhost:5060
config save
yate monitor port berikut
TCP 1720: untuk H323 UDP 4569: untuk IAX2 UDP 5060 TCP 5038: Telnet admin app
Yate Use
Dengan perubahan tersebut, yate akan secara automatis akan me-route voice / sms message. Lihat catatan yate berikut ini:
Run & Kill
Menjalankan yate menggunakan perintah
cd /usr/local/src/yate ./run -t -l /var/log/yate -vvvv -c /usr/local/etc/yate -m /usr/local/lib/yate -e /usr/local/share/yate -d
Mematikan yate
killall yate
Melihat Log
Melihat log penting sekali untuk melihat masalah dalam konfigurasi, log yang penting
- /tmp/VBTS.log
- /var/log/yate
Calling
OpenBTS call melalui Yate menjadi sangat sederhana.
Yate (default) tidak memerlukan authentikasi / registrasi untuk menerima call. File configurasi default dapat menangani incoming call. Dial ke 99991002 dari handset harunya memberikan "busy tone" dari Yate. Jika ini terjadi, maka konfigurasi anda berhasil!
Daftar nomor untuk testing
99991001 dial 99991002 busy 99991003 ring 99991004 specdial 99991005 congestion 99991006 outoforder 99991007 milliwatt 99991008 info
Messaging
Yate (default) tidak merouting SIP MESSAGE.
Modifikasi ysipchan.conf untuk menerima to SIP MESSAGE. Tambahkan kalimat berikut di bagian [methods]:
message=true
RManager
RManager adalah CLI engine Yate. Ini memungkinkan Yate untuk di control melalui telnet yang sederhana. RManager dapat di akses menggunakan perintah telnet berikut (asumsi kita beroperasi di localhost):
telnet localhost 5038
Perintah dalam RManager
Available commands: quit echo [on|off] help [command] auth password status [overview] [modulename] uptime machine [on|off] output [on|off] color [on|off] debug [module] [level|on|off] drop {chan|*|all} [reason] call chan target control chan [operation] [param=val] [param=...] reload [plugin] restart [now] stop [exitcode] alias [name [command...]] module {{load|reload} modulefile|unload modulename|list} events [clear] [type] logview status jabber [stream_name|{c2s|s2s} [remote_jid]] jabber drop {stream_name|{c2s|s2s|*|all} [remote_jid]} jabber create remote_domain [local_domain] [parameter=value...] jabber debug stream_name [debug_level|on|off] callgen {start|stop|drop|pause|resume|single|info|reset|load|save|set paramname[=value]} filetransfer {{send|receive} filename [callto:]target [[paramname=value]...]} accounts [reload|{login|logout|...} [account]] users {add user [parameter=value...]|delete user|update user [parameter=value...]} sigdump component [filename] cache {load|flush} cache_name [[param=value]...]
Referensi
- http://wush.net/trac/rangepublic/wiki/yateConfig
- http://yate.null.ro/pmwiki/index.php?n=Main.News
- http://yate.null.ro/pmwiki/index.php?n=Main.Download
- http://yate.null.ro/tarballs/yate4/yate-4.1.0-1.tar.gz
- https://github.com/kheimerl/libvbts
- https://github.com/pmarti/python-messaging
Pranala Menarik
Persiapan
- USRP: High Precision Clock
- USRP: Menyambungkan ClockTamer ke USRP1
- USRP: Kalibrasi ClockTamer
- USRP: ClockTamer Control Protocol
- USRP: ClockTamer Flashing
- USRP: Instalasi Board
- OpenBTS: GIT Source Code
- USRP: Rangkaian Board USRP
- OpenBTS: Tethr untuk Bencana Alam
- 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
- GNURadio
- GNURadio: Ubuntu Install
- GNURadio: Menggunakan UHD
- GNURadio: Ubuntu Install GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu Install GNURadio 3.4.2 Clock 52MHz RECOMMENDED
- GNURadio: Ubuntu 13.04 Install GNURadio 3.4.2 Clock 52MHz NOT RECOMMENDED
- GNURadio: Contoh Aplikasi
- GNURadio: Spectrum Analizer GSM
- GNURadio: Mengubah board RFX1800 menjadi RFX900
- GNURadio: Programming Untuk Pemula
- OpenBTS: Ubuntu Install RECOMMENDED
- OpenBTS: Ubuntu Install OpenBTS 2.6 Clock 52MHz RECOMMENDED
- OpenBTS: Ubuntu 13.04 Install OpenBTS 2.6 Clock 52MHz NOT RECOMMENDED
- OpenBTS: Konfigurasi RECOMMENDED
- OpenBTS: Kalibrasi
- OpenBTS: Konfigurasi Asterisk untuk OpenBTS RECOMMENDED
- OpenBTS: Menjalankan smqueue
- OpenBTS: Mengoperasikan BTS RECOMMENDED
- OpenBTS: Tampilan di Nokia saat pakai OpenBTS
- OpenBTS: Operasi 1800 MHz
- OpenBTS: Beberapa Tips
- OpenBTS: USRP2
- OpenBTS: Amplifier
- OpenBTS: SMS
- AirProbe
OpenBTS 2.8
- GNURadio: Ubuntu 11.10 Install NOT RECOMMENED
- GNURadio: Ubuntu 11.10 instalasi menggunakan Repo NOT RECOMMENDED
- GNURadio: Download GNURadio
- GNURadio: Install UHD
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.3.0
- GNURadio: Ubuntu 12.10 Instal GNURadio 3.3.0
- GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.1 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 12.04 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 12.04.1 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.2 NOT RECOMMENDED
- GNURadio: Ubuntu 13.04 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.0 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.3.2 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.6.0 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Install dari GIT GNURadio NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 cek USRP Daughter Board
- GNURadio: UHD NOT RECOMMENDED
- GNURadio: UHD Image NOT RECOMMENDED
- GNURadio: UHD burn EEPROM RFX Board di USRP1 NOT RECOMMENDED
- GNURadio: UHD Identifikasi Device
- OpenBTS: Ubuntu 11.10 Install
- OpenBTS: dari GIT ttsou
- OpenBTS: 2.8 dari SVN Install
- OpenBTS: 2.8 dari SVN Install Clock 52MHz 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 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 Edit User di sqlite3.db RECOMMEND
- OpenBTS: Yate Softswitch RECOMMENDED
- OpenBTS: Yate Softswitch install Ubuntu 12.10 RECOMMENDED
- OpenBTS: Yate Softswitch install Ubuntu 13.04 RECOMMENDED
- OpenBTS: Yate Config Test
- OpenBTS: 2.8 Instalasi Real Time Asterisk RECOMMENDED
- OpenBTS: 2.8 Menjalankan RECOMMENDED
- OpenBTS: 2.8 Konfigurasi
- OpenBTS: 2.8 Konfigurasi Cognitive Radio Elsabagh
- OpenBTS: 2.8 Konfigurasi Subscriber Registery
- OpenBTS: Database SQLite
- OpenBTS: Set SQLite Subscriber Registry secara manual
- OpenBTS: FreeSWITCH
Multi OpenBTS 2.8
- OpenBTS: Pola Multi OpenBTS RECOMMENDED
- Multi OpenBTS: Catatan Konfigurasi RECOMMENDED
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
- OpenBTS: E110 Cara Login
- OpenBTS: E110 Install Image di MicroSD *RECOMMENDED*
- OpenBTS: E110 Cek Daughter Board
- OpenBTS: E110 Mengubah Master Clock
- OpenBTS: E110 Kalibrasi Clock
- OpenBTS: E110 Konfigurasi Jaringan
- OpenBTS: E110 Bekerja dengan opkg
- OpenBTS: E110 Instalasi iptables
- OpenBTS: E110 GNURadio
- OpenBTS: E110 Compile UHD Not Recommended
- OpenBTS: E110 Compile UHD dari Release Bukan git Not 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 2.6 NOT RECOMMENDED
- OpenBTS: E110 Instalasi OpenBTS 2.8 untuk MultiBTS *RECOMMENDED*
- OpenBTS: E110 Yate Softswitch
Ettus N210
- OpenBTS: N210 Instalasi GPSDO Kit
- OpenBTS: N210 GNURadio
- OpenBTS: N210 GNURadio 3.7.0
- OpenBTS: N210 Instalasi OpenBTS
- OpenBTS: N210 Instalasi Yate
- OpenBTS: N210 Yate Config Test
- OpenBTS: N210 Burn Firmware
RangeNetworks
- OpenBTS: RangeNetwork Default Setting
- OpenBTS: RangeNetwork Compile GNURadio UHD
- OpenBTS: RangeNetwork Compile
- OpenBTS: RangeNetwork Compile OpenBTS 3.1.3 *RECOMMENDED*
- OpenBTS: RangeNetwork Yate Compile *RECOMMENDED*
- OpenBTS: RangeNetwork Web Interface
- OpenBTS: RangeNetwork Trunk ke Asterisk Lain
- VoIP: Trunk
GPRS
Briker OpenBTS
FreeSWITCH OpenBTS
Power Amplifier
Lain Lain
- OpenBTS: Materi Magang di ICTWATCH
- OpenBTS: Seminar Outline
- OpenBTS: Workshop Outline
- Membuat Base Station GSM Open Source
- Teknologi Selular
- GSM: Daftar Channel Frekuensi
- Wireless Internet
- OpenBSC
- AirProbe
- Base station subsystem
- GSM
- Asterisk
- Mobile phone
Catatan Legal dan Pendukung
- Siapa Bilang OpenBTS Ilegal?
- OpenBTS: Catatan MNC dan MCC Indonesia
- OpenBTS: Catatan MNC dan MCC COOL
- OpenBTS : Alokasi Frekuensi Operator GSM Indonesia
- GSM: Daftar Channel Frekuensi
Catatan Sejarah
- 2011/04/30 - Workshop OpenBTS Pertama di Indonesia dilakukan di Univ Gajah Putih Takengon Aceh Tengah
- OpenBTS: Daftar Workshop atau Seminar yang pernah dilakukan
- OpenBTS: Daftar Artikel di Media
- OpenBTS: Permohonan Kanal dan DID untuk OpenBTS
- OpenBTS: 2013/02/19 - OpenBTS TelkomSel Mengudara di Muscat Oman
- OpenBTS: Beroperasi di Papua
Dokumentasi Video
- http://www.metrotvnews.com/read/newsprograms/2012/10/14/14624/212/Teknologi-BTS
- http://youtu.be/8ogOcUSpINU (1/6)
- http://youtu.be/F5d7HGuhppk (2/6)
- http://youtu.be/90Jgq6bOgrQ (3/6)
- http://youtu.be/cNkx_qNqdfc (4/6)
- http://youtu.be/6LCuoeI57ak (5/6)
- http://youtu.be/-dEqcHoIlYk (6/6)
- http://www.youtube.com/watch?v=Ff_rw4kAOZg&feature=share
Perjuangan OpenBTS
Pranala Menarik
Persiapan
- USRP: High Precision Clock
- USRP: Menyambungkan ClockTamer ke USRP1
- USRP: Kalibrasi ClockTamer
- USRP: ClockTamer Control Protocol
- USRP: Instalasi Board
- OpenBTS: GIT Source Code
- USRP: Rangkaian Board USRP
- OpenBTS: Tethr untuk Bencana Alam
- USRP: Tip Pemesanan
OpenBTS 2.6
- GNURadio
- GNURadio: Ubuntu Install
- GNURadio: Menggunakan UHD
- GNURadio: Ubuntu Install GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu Install GNURadio 3.4.2 Clock 52MHz RECOMMENDED
- GNURadio: Ubuntu 13.04 Install GNURadio 3.4.2 Clock 52MHz NOT RECOMMENDED
- GNURadio: Contoh Aplikasi
- GNURadio: Spectrum Analizer GSM
- GNURadio: Mengubah board RFX1800 menjadi RFX900
- GNURadio: Programming Untuk Pemula
- OpenBTS: Ubuntu Install RECOMMENDED
- OpenBTS: Ubuntu Install OpenBTS 2.6 Clock 52MHz RECOMMENDED
- OpenBTS: Ubuntu 13.04 Install OpenBTS 2.6 Clock 52MHz NOT RECOMMENDED
- OpenBTS: Konfigurasi RECOMMENDED
- OpenBTS: Kalibrasi
- OpenBTS: Konfigurasi Asterisk untuk OpenBTS RECOMMENDED
- OpenBTS: Menjalankan smqueue
- OpenBTS: Mengoperasikan BTS RECOMMENDED
- OpenBTS: Tampilan di Nokia saat pakai OpenBTS
- OpenBTS: Operasi 1800 MHz
- OpenBTS: Beberapa Tips
- OpenBTS: USRP2
- OpenBTS: Amplifier
- OpenBTS: SMS
- AirProbe
OpenBTS 2.8
- GNURadio: Ubuntu 11.10 Install NOT RECOMMENED
- GNURadio: Ubuntu 11.10 instalasi menggunakan Repo NOT RECOMMENDED
- GNURadio: Download GNURadio
- GNURadio: Install UHD
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.3.0
- GNURadio: Ubuntu 12.10 Instal GNURadio 3.3.0
- GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.1 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 12.04 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 12.04.1 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 12.10 Instal GNURadio 3.4.2 NOT RECOMMENDED
- GNURadio: Ubuntu 13.04 Instal GNURadio 3.4.2 RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.0 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.5.3.2 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Instal GNURadio 3.6.0 NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 Install dari GIT GNURadio NOT RECOMMENDED
- GNURadio: Ubuntu 11.10 cek USRP Daughter Board
- GNURadio: UHD NOT RECOMMENDED
- GNURadio: UHD Image NOT RECOMMENDED
- GNURadio: UHD burn EEPROM RFX Board di USRP1 NOT RECOMMENDED
- GNURadio: UHD Identifikasi Device
- OpenBTS: Ubuntu 11.10 Install
- OpenBTS: dari GIT ttsou
- OpenBTS: 2.8 dari SVN Install
- OpenBTS: 2.8 dari SVN Install Clock 52MHz 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 dengan UHD tanpa GNURadio NOT RECOMMENDED
- OpenBTS: 2.8 Edit User di sqlite3.db RECOMMEND
- OpenBTS: Yate Softswitch RECOMMENDED
- OpenBTS: Yate Softswitch install Ubuntu 12.10 RECOMMENDED
- OpenBTS: Yate Softswitch install Ubuntu 13.04 RECOMMENDED
- OpenBTS: Yate Config Test
- OpenBTS: 2.8 Instalasi Real Time Asterisk RECOMMENDED
- OpenBTS: 2.8 Menjalankan RECOMMENDED
- OpenBTS: 2.8 Konfigurasi
- OpenBTS: 2.8 Konfigurasi Cognitive Radio Elsabagh
- OpenBTS: 2.8 Konfigurasi Subscriber Registery
- OpenBTS: Database SQLite
Multi OpenBTS 2.8
- OpenBTS: Pola Multi OpenBTS RECOMMENDED
- Multi OpenBTS: Catatan Konfigurasi RECOMMENDED
Ettus E110
- OpenBTS: E110 Cara Login
- OpenBTS: E110 Install Image di MicroSD *RECOMMENDED*
- OpenBTS: E110 Cek Daughter Board
- OpenBTS: E110 Mengubah Master Clock
- OpenBTS: E110 Kalibrasi Clock
- OpenBTS: E110 Konfigurasi Jaringan
- OpenBTS: E110 Bekerja dengan opkg
- OpenBTS: E110 Instalasi iptables
- OpenBTS: E110 GNURadio
- OpenBTS: E110 Compile UHD Not Recommended
- OpenBTS: E110 Compile UHD dari Release Bukan git Not 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 2.6 NOT RECOMMENDED
- OpenBTS: E110 Instalasi OpenBTS 2.8 untuk MultiBTS *RECOMMENDED*
- OpenBTS: E110 Yate Softswitch
Ettus N210
- OpenBTS: N210 Instalasi GPSDO Kit
- OpenBTS: N210 GNURadio
- OpenBTS: N210 GNURadio 3.7.0
- OpenBTS: N210 Instalasi OpenBTS
- OpenBTS: N210 Instalasi Yate
- OpenBTS: N210 Yate Config Test
- OpenBTS: N210 Burn Firmware
GPRS
Briker OpenBTS
FreeSWITCH OpenBTS
Power Amplifier
Lain Lain
- OpenBTS: Materi Magang di ICTWATCH
- OpenBTS: Seminar Outline
- OpenBTS: Workshop Outline
- Membuat Base Station GSM Open Source
- Teknologi Selular
- GSM: Daftar Channel Frekuensi
- Wireless Internet
- OpenBSC
- AirProbe
- Base station subsystem
- GSM
- Asterisk
- Mobile phone
Catatan Legal dan Pendukung
- Siapa Bilang OpenBTS Ilegal?
- OpenBTS: Catatan MNC dan MCC Indonesia
- OpenBTS: Catatan MNC dan MCC COOL
- OpenBTS : Alokasi Frekuensi Operator GSM Indonesia
- GSM: Daftar Channel Frekuensi
Catatan Sejarah
- 2011/04/30 - Workshop OpenBTS Pertama di Indonesia dilakukan di Univ Gajah Putih Takengon Aceh Tengah
- OpenBTS: Daftar Workshop atau Seminar yang pernah dilakukan
- OpenBTS: Daftar Artikel di Media
- OpenBTS: Permohonan Kanal dan DID untuk OpenBTS
- OpenBTS: 2013/02/19 - OpenBTS TelkomSel Mengudara di Muscat Oman