aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 933abd3175ee07ecee21ad4348d538e24c87e7b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# chan_openbsc

Pre-historic Channel driver for the [OpenBSC](https://osmocom.org/projects/openbsc) project

**THIS CODE IS LONG OBSOLETE AND FOR HISTORIC REFERENCE ONLY**

Please use [osmo-sip-connector](https://osmocom.org/projects/osmo-sip-conector/wiki) instead.


Building
--------

This module is made for the asterisk 1.6.2 branch.

To build it, you'll need the asterisk sources (configured, so it's best
if it's the sources you installed from) and the OpenBSC source.

The default makefile assumes that the asterisk sources are in ../asterisk
and the OpenBSC sources are in ../openbsc . If it's not the case, you
can override those locations with the ASTSRC & OPENBSCSRC variables
respectively.

You first need to compile OpenBSC itself, but since in asterisk it will
be in a dynamic module you need to make sure to (re-)build it with :

$ make CFLAGS=-fPIC

Once that's done, you can just type make in the ast_chan_openbsc directory
and it should build without problems.

If you have build problems, please fix and submit patch :)


Using
-----

Using it is pretty straightforward:

* Make sure OpenBSC works standalone

  Using bsc_hack, you should test that OpenBSC itself works, that your
  openbsc.cfg is properly setup and that your subscribers are in the
  HLR sqlite3 database.

* Configure the channel driver

  Just place an 'openbsc.conf' in your asterisk configuration directory,
  using the . The two main required parameters are the location of the
  OpenBSC .cfg file and of the HLR database.

* Install the channel driver module

  You need to copy the chan_openbsc.so in the asterisk module directory,
  usually /usr/lib/asterisk/modules/ . In theory asterisk auto-loads modules
  but if you have a custom configuration, you may need to make sure it's
  loaded in modules.conf of asterisk.

* Start asterisk

  "Soon" after asterisk is started, the nanoBTS should connect and start
  broadcasting the network.

* To place a call

  You need a target extensions in your extensions.conf , something like

  exten => _2XXX,1,Dial(OpenBSC/${EXTEN:1}, 20, rt)

  The part after the "OpenBSC/" is the extension as registred in the
  OpenBSC HLR database.


Limitations
-----------

Wow, there is so many, here's a few ones:

 - ip.access nanoBTS only
 - Can't reload the module, have to restart asterisk.