Difference between revisions of "OpenBTS: RangeNetwork Compile"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 91: | Line 91: | ||
sudo su | sudo su | ||
sqlite3 /var/lib/asterisk/sqlite3dir/sqlite3.db | sqlite3 /var/lib/asterisk/sqlite3dir/sqlite3.db | ||
+ | |||
+ | DELETE from DIALDATA_TABLE where ID = 1; | ||
+ | DELETE from DIALDATA_TABLE where ID = 2; | ||
+ | DELETE from DIALDATA_TABLE where ID = 3; | ||
+ | DELETE from DIALDATA_TABLE where ID = 4; | ||
+ | DELETE from DIALDATA_TABLE where ID = 5; | ||
+ | DELETE from DIALDATA_TABLE where ID = 6; | ||
+ | |||
+ | DELETE from SIP_BUDDIES where ID = 1; | ||
+ | DELETE from SIP_BUDDIES where ID = 2; | ||
+ | DELETE from SIP_BUDDIES where ID = 3; | ||
+ | DELETE from SIP_BUDDIES where ID = 4; | ||
+ | DELETE from SIP_BUDDIES where ID = 5; | ||
+ | DELETE from SIP_BUDDIES where ID = 6; | ||
+ | |||
+ | INSERT INTO dialdata_table (exten, dial) VALUES ('2001', 'IMSI001010000000001'); | ||
+ | insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI001010000000001','IMSI001010000000001','2001','127.0.0.1','friend','phones','dynamic'); | ||
+ | |||
+ | INSERT INTO dialdata_table (exten, dial) VALUES ('2002', 'IMSI001010000000002'); | ||
+ | insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI001010000000002','IMSI001010000000002','2002','127.0.0.1','friend','phones','dynamic'); | ||
+ | |||
+ | INSERT INTO dialdata_table (exten, dial) VALUES ('2003', 'IMSI510110052460084'); | ||
+ | insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI510110052460084','IMSI510110052460084','2003','127.0.0.1','friend','phones','dynamic'); | ||
+ | |||
+ | INSERT INTO dialdata_table (exten, dial) VALUES ('2004', 'IMSI510112410440152'); | ||
+ | insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI510112410440152','IMSI510112410440152','2004','127.0.0.1','friend','phones','dynamic'); | ||
==Referensi== | ==Referensi== | ||
* http://wush.net/trac/rangepublic/wiki/BuildInstallRun | * http://wush.net/trac/rangepublic/wiki/BuildInstallRun |
Revision as of 08:18, 14 January 2014
Update
ROOT_OPENBTS berada di /home/openbts/software/public
cd /home/openbts/software svn co http://wush.net/svn/range/software/public public
Install liba53
cd /home/openbts/software/public cd a53/trunk sudo make install
Compile OpenBTS di RangeNetworks Development Kit==
Stop OpenBTS
cd /home/openbts killBTS
Building OpenBTS
Pada Range Networks RAD1 tidak membutuhkan external dependency & cara compile sangat sederhana:
cd /home/openbts/software/public/openbts/trunk autoreconf -i ./configure make
Buat link
cd /home/openbts/software/public/openbts/trunk cd apps make ln -s ../TransceiverRAD1/transceiver . ln -s ../TransceiverRAD1/ezusb.ihx . ln -s ../TransceiverRAD1/fpga.rbf .
cd /home/openbts/software/public/openbts/trunk/TransceiverRAD1 cp transceiver /OpenBTS/ cp ezusb.ihx /OpenBTS/ cp fpga.rbf /OpenBTS/
cd /home/openbts/software/public/openbts/trunk/apps cp OpenBTS /OpenBTS/ cp OpenBTSDo /OpenBTS/ cp OpenBTSCLI /OpenBTS/ cp runloop.OpenBTS.sh /OpenBTS/
Inisialisasi /etc/OpenBTS/OpenBTS.db
sudo mkdir /etc/OpenBTS sudo sqlite3 -init ./apps/OpenBTS.example.sql /etc/OpenBTS/OpenBTS.db ".quit"
Build & Install Subscriber Registry dan Sipauthserve
sudo mkdir -p /var/lib/asterisk/sqlite3dir
cd /home/openbts/software/public/subscriberRegistry/trunk make cd /home/openbts/software/public/subscriberRegistry/trunk cp comp128 /usr/local/bin/ cp comp128 /OpenBTS/ cp sipauthserve /OpenBTS/ cp runloop.sipauthserve.sh /OpenBTS/
cd /home/openbts/software/public/subscriberRegistry/trunk sudo sqlite3 -init subscriberRegistry.example.sql /etc/OpenBTS/sipauthserve.db ".quit"
Build & Install Smqueue
cd /home/openbts/software/public/smqueue/trunk autoreconf -i ./configure make
cd /home/openbts/software/public/smqueue/trunk sudo sqlite3 -init smqueue/smqueue.example.sql /etc/OpenBTS/smqueue.db ".quit"
cd /home/openbts/software/public/smqueue/trunk/smqueue cp runloop.smqueue.sh /OpenBTS/ cp smqueue /OpenBTS/
Inisialisasi SubscriberRegistry
sudo su sqlite3 /var/lib/asterisk/sqlite3dir/sqlite3.db
DELETE from DIALDATA_TABLE where ID = 1; DELETE from DIALDATA_TABLE where ID = 2; DELETE from DIALDATA_TABLE where ID = 3; DELETE from DIALDATA_TABLE where ID = 4; DELETE from DIALDATA_TABLE where ID = 5; DELETE from DIALDATA_TABLE where ID = 6; DELETE from SIP_BUDDIES where ID = 1; DELETE from SIP_BUDDIES where ID = 2; DELETE from SIP_BUDDIES where ID = 3; DELETE from SIP_BUDDIES where ID = 4; DELETE from SIP_BUDDIES where ID = 5; DELETE from SIP_BUDDIES where ID = 6; INSERT INTO dialdata_table (exten, dial) VALUES ('2001', 'IMSI001010000000001'); insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI001010000000001','IMSI001010000000001','2001','127.0.0.1','friend','phones','dynamic'); INSERT INTO dialdata_table (exten, dial) VALUES ('2002', 'IMSI001010000000002'); insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI001010000000002','IMSI001010000000002','2002','127.0.0.1','friend','phones','dynamic'); INSERT INTO dialdata_table (exten, dial) VALUES ('2003', 'IMSI510110052460084'); insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI510110052460084','IMSI510110052460084','2003','127.0.0.1','friend','phones','dynamic'); INSERT INTO dialdata_table (exten, dial) VALUES ('2004', 'IMSI510112410440152'); insert into sip_buddies (name,username,callerid,ipaddr,type,context,host) values ('IMSI510112410440152','IMSI510112410440152','2004','127.0.0.1','friend','phones','dynamic');