blob: 6b1609ae5c4bab1ec20ae2a4a0bd9edac02a4e44 [file] [log] [blame]
Max7f3d8ea2016-05-04 14:52:15 +02001[[control]]
2== Control interface
3
4The actual protocol is described in <<common-control-if>>, the variables
5common to all programs using it are described in <<ctrl_common_vars>>. Here we
6describe variables specific to OsmoBSC. The commands starting with prefix
Maxcef1d722017-11-02 15:09:53 +01007"bts.N." are specific to a certain BTS so N have to be replaced with BTS
8number when issuing command e. g. "bts.1.channel-load". Similarly the
Max7f3d8ea2016-05-04 14:52:15 +02009TRX-specific commands are additionally prefixed with TRX number e. g.
Maxcef1d722017-11-02 15:09:53 +010010"bts.1.trx.2.arfcn".
Max7f3d8ea2016-05-04 14:52:15 +020011
12.Variables available over control interface
13[options="header",width="100%",cols="20%,5%,5%,50%,20%"]
14|===
15|Name|Access|Trap|Value|Comment
16|msc_connection_status|RO|Yes|"connected", "disconnected"|Indicate the status of connection to MSC.
17|bts_connection_status|RO|Yes|"connected", "disconnected"|Indicate the status of connection to BTS.
18|location|RW|Yes|"<unixtime>,(invalid\|fix2d\|fix3d),<lat>,<lon>,<height>"|Set/Get location data.
19|timezone|RW|No|"<hours>,<mins>,<dst>", "off"|-19 \<= hours \<= 19, mins in {0, 15, 30, 45}, and 0 \<= dst \<= 2
20|apply-configuration|WO|No|"restart"|Restart all BTSes.
21|mnc|RW|No|"<mnc>"|Set/Get MNC (value between (0, 999)).
22|mcc|RW|No|"<mcc>"|Set/Get MCC (value between (1, 999)).
23|short-name|RW|No|"<name>"|Set/Get network's short name.
24|long-name|RW|No|"<name>"|Set/Get network's long name.
25|mcc-mnc-apply|WO|No|"<mcc>,<mnc>"|Apply new MCC/MNC values if different from currently used one.
26|notification|WO|Yes|Arbitrary value| See <<notif>> for details.
27|inform-msc-v1|WO|Yes|Arbitrary value| See <<infomsc>> for details.
Max7f3d8ea2016-05-04 14:52:15 +020028|rf_locked|RW|No|"0","1"|See <<rfl>> for details.
29|number-of-bts|RO|No|"<num>"|Get number of configured BTS.
Maxcef1d722017-11-02 15:09:53 +010030|bts.N.location-area-code|RW|No|"<lac>"|Set/Get LAC (value between (0, 65535)).
31|bts.N.cell-identity|RW|No|"<id>"|Set/Get Cell Identity (value between (0, 65535)).
32|bts.N.apply-configuration|WO|No|Ignored|Restart BTS via OML.
33|bts.N.send-new-system-informations|WO|No|Ignored|Regenerate System Information messages for given BTS.
34|bts.N.channel-load|RO|No|"<name>,<used>,<total>"|See <<chanlo>> for details.
35|bts.N.oml-connection-state|RO|No|"connected", "disconnected", "degraded"|Indicate the status of OML connection of BTS.
36|bts.N.oml-uptime|RO|No|<uptime>|Return OML link uptime in seconds.
37|bts.N.gprs-mode|RW|No|"<mode>"|See <<gprsm>> for details.
38|bts.N.rf_state|RO|No|"<oper>,<admin>,<pol>"|See <<rfs>> for details.
39|bts.N.trx.M.arfcn|RW|No|"<arfcn>"|Set/Get ARFCN (value between (0, 1023)).
40|bts.N.trx.M.max-power-reduction|RW|No|"<mpr>"|See <<mpr>> for details.
Max7f3d8ea2016-05-04 14:52:15 +020041|===
42
43[[notif]]
44=== notification
45
46Setting this variable initiate TRAP "notification" to all the clients connected
47to control interface with the value supplied in SET operation. This is not
48intended to be used outside of local systems.
49
50[[infomsc]]
51=== inform-msc-v1
52
53Setting this variable initiate TRAP "inform-msc-v1" to all connected MSCs
54control interfaces with the value supplied in SET operation.
55
Max7f3d8ea2016-05-04 14:52:15 +020056[[chanlo]]
57=== channel-load
58
59Obtain channel load for given BTS. Returns concatenated set of triplets
60("<name>,<used>,<total>") for all channel types configured on the BTS. The
61"<name>" is the channel type. The "<used>" is the number of channels of that
62type currently in use. The "<total>" is the number of channels of that type
63configured on the BTS.
64
65[[gprsm]]
66=== gprs-mode
67
68Set/Get the GPRS mode of the BTS. One of the following is
69accepted/returned: "none", "gprs", "egprs".
70
71[[rfs]]
72=== rf_state
73
74Following triplet is returned: "<oper>,<admin>,<pol>". The "<oper>" might be
75"operational" or "inoperational" representing different operational states. The
76"<admin>" might be "locked" or "unlocked" representing administrative status.
77The "<pol>" might be "off", "on", "grace" or "unknown" representing different
78RF policies.
79
80[[rfl]]
81=== rf_locked
82
83Set/Get RF locked status. The GET operation will return either "0" or "1"
84depending on the RF lock status. The SET operation will set RF lock status if
85RF Ctrl is enabled in the BSC Configuration.
86
87[[mpr]]
88=== max-power-reduction
89
90Set/Get the value of maximum power reduction. Even values between 0 and 22 are
91accepted.
92
93FIXME: add variables defined in src/ctrl/control_if.c?