blob: 2f6e830a5cebc47db03c9230473e9506a4db8c70 [file] [log] [blame]
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +01001!
Pau Espin Pedrol0d455042018-08-27 17:07:41 +02002! OsmoTRX example configuration
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +01003!
4log stderr
5 logging filter all 1
6 logging color 1
7 logging print category 1
8 logging timestamp 1
Pau Espin Pedrol0d455042018-08-27 17:07:41 +02009 logging print file basename
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +010010 logging print extended-timestamp 1
11 logging level all info
12!
13line vty
Pau Espin Pedrol0d455042018-08-27 17:07:41 +020014 bind ${osmo_trx.trx_ip}
Pau Espin Pedroledcc8d22018-03-04 19:58:23 +010015ctrl
Pau Espin Pedrol0d455042018-08-27 17:07:41 +020016 bind ${osmo_trx.trx_ip}
17trx
18 bind-ip ${osmo_trx.trx_ip}
19 remote-ip ${osmo_trx.bts_ip}
20 base-port 5700
21 egprs disable
22 tx-sps 4
23 rx-sps 4
24 clock-ref ${osmo_trx.clock_reference}
25 rt-prio 18
26%for chan in osmo_trx.channels:
27 chan ${loop.index}
28% if chan.get('tx_path', False):
29 tx-path ${chan.tx_path}
30% endif
31% if chan.get('rx_path', False):
32 rx-path ${chan.rx_path}
33 %endif
34%endfor