gsm improvements
[lcr.git] / default / gsm.conf
1 # LCR GSM options
2 #################
3
4 # Enable debugging of OpenBSC library.
5 # Refer to OpenBSC project for debugging options.
6 # By default, debugging is turned off.
7 #debug DRLL:DCC:DMM:DRR:DRSL:DNM:DSMS:DMNCC:DMNSMS:DPAG:DMUX
8
9 # Two Loopback interfaces for audio transfer between OpenBSC and mISDN.
10 # The first interface must provide B-channelis for each call mobile call.
11 # The seond interface links them to LCR.
12 # Use 30 B-channels unless you need more due to many TRXs.
13 # -> Load with: "modprobe mISDN_l1loop pri=1 nchannel=30"
14 # By default "mISDN_l1loop.1" and "mISDN_l1loop.2" is used.
15 #interface-bsc mISDN_l1loop.1
16 #interface-lcr mISDN_l1loop.2
17
18 # GSM network names.
19 # This name is presented to the mobile station.
20 # By default 'LCR' is used.
21 #long-name Linux-Call-Router
22 #short-name LCR
23
24 # Give the GSM country code.
25 # The country code is different from the PSTN country code. E.g Germany uses
26 # 262 instead of 49. Use this for IMSI catching.
27 # This will override the default value of 1 = 'test country';
28 #mcc 001
29
30 # Give the GSM network code.
31 # The network code is different from the PSTN network codes. Change this if
32 # you run different test networks in the same locations.
33 # This will override the default value of 1 = 'test network';
34 #mnc 01
35
36 # Give the location area code.
37 # The location area code is not known to the author of LCR. Don't change it!
38 #lac 1
39
40 # Give database of Home Location Register (HLR)
41 # HLR stores all subscribers. It will be used to grant access to the network.
42 # It is an Sqlite3 database. Refer to OpenBSC project for handling.
43 # The database is located at /usr/local/lcr by default.
44 #hlr hlr.sqlite3
45
46 # Authorization of unknown subscribers.
47 # To allow all subscribers to access the network, use this option.
48 # By default, subscribers are only accepted if allowed in the HLR
49 allow-all
50
51 # To keep layer 2 connection to BS11 when quitting, use this option.
52 # It is only usefull for developing. TRX will stay on.
53 # Also changes in frequency, mcc, mnc, lac while keeping layer 2 will cause
54 # malefunction of BSC.
55 # Warning: Keeping layer 2 link may prevent emergency calls. (See below)
56 #keep-l2
57
58 # You must define a list of your BTS'.
59 # Usage: 'bts bs11 <card> <frequency> [<frequency 2>]
60 #  The keyword 'bts' is used to specify a BTS. Multiple BTS' may be defined.
61 #  The 'bs11' keyword specifies a BS11 BTS connected to an E1 card.
62 #  The frequency is given for the first TRX (tranceiver).
63 #  In case of a second tranceiver, give frequency 2.
64 bts bs11 9 123
65
66 # Shutdown on emergency calls:
67 # This option will prevent a shutdown if an emergency call is received. In
68 # case of an emergency, a mobile phone may log onto you GSM network and may
69 # use it to set up an emergency call.
70 # The received emergency call will have 'emergency' as dialed number. But this
71 # number can't be dialed on PSTN networks without chaning.
72 # If you disable shutdown, be sure to provide routing of emergency calls to
73 # emergency facility. If you can't do that, don't touch it!
74 #no-emergency-shutdown
75
76 # Write BTS-Link traffic to PCAP file.
77 #pcapfile pcap
78
79