aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo_gsm_tester/templates/osmo-trx.cfg.tmpl
blob: ede19021b0b1f34389d700ef1871717b41fb8edc (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
!
! OsmoTRX example configuration
!
log stderr
  logging filter all 1
  logging color 1
  logging print category 1
  logging timestamp 1
  logging print file basename
  logging print extended-timestamp 1
  logging level set-all info
!
line vty
 bind ${osmo_trx.trx_ip}
ctrl
 bind ${osmo_trx.trx_ip}
trx
 bind-ip ${osmo_trx.trx_ip}
 remote-ip ${osmo_trx.bts_ip}
 base-port 5700
 egprs ${osmo_trx.egprs}
%if osmo_trx.get('multi_arfcn', False):
 multi-arfcn enable
%else:
 multi-arfcn disable
%endif
 tx-sps 4
 rx-sps 4
 clock-ref ${osmo_trx.clock_reference}
 rt-prio 18
%for chan in osmo_trx.channels:
 chan ${loop.index}
% if chan.get('tx_path', False):
  tx-path ${chan.tx_path}
% endif
% if chan.get('rx_path', False):
  rx-path ${chan.rx_path}
 %endif
%endfor