There seems to be issues with the write handling of the osmo-stp and so far we did not enable vty tests here. Make it possible to enable the tests, fix the VTY strings, change string to OsmoSTP. Change-Id: I547fd4840d86ce16e8589fb63802dd7099781194changes/96/696/3
parent
b1d46b4488
commit
368e549a92
@ -0,0 +1,41 @@
|
||||
ss7
|
||||
udp src-port 4444
|
||||
m2ua src-port 5555
|
||||
linkset 0
|
||||
description My first linkset
|
||||
mtp3 dpc 1
|
||||
mtp3 opc 2
|
||||
mtp3 ni 3
|
||||
link 0
|
||||
description A m2ua link
|
||||
ss7-transport m2ua
|
||||
linkset 1
|
||||
description My m3ua linkset
|
||||
mtp3 dpc 1
|
||||
mtp3 opc 2
|
||||
mtp3 ni 3
|
||||
mtp3 spare 0
|
||||
link 0
|
||||
description A m3ua client
|
||||
ss7-transport m3ua-client
|
||||
msc 0
|
||||
mode server
|
||||
port 5000
|
||||
token atoken
|
||||
msc 1
|
||||
mode server
|
||||
port 5001
|
||||
token atoken
|
||||
timeout ping 20
|
||||
timeout pong 5
|
||||
timeout restart 3
|
||||
application 0
|
||||
description Relay TCP/IPA to M2UA linkset
|
||||
type relay
|
||||
route linkset 0 msc 0
|
||||
forward-only
|
||||
application 1
|
||||
description Relay TCP/IPA to M3UA linkset
|
||||
type relay
|
||||
route linkset 1 msc 1
|
||||
forward-only
|
@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
# (C) 2016 by Holger Hans Peter Freyther
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
app_configs = {
|
||||
"osmo-stp": ["doc/examples/osmo-stp.cfg"]
|
||||
}
|
||||
|
||||
apps = [(4242, "src/osmo-stp", "OsmoSTP", "osmo-stp"),
|
||||
]
|
||||
|
||||
vty_command = ["src/osmo-stp", "-c", "doc/examples/osmo-stp.cfg"]
|
||||
|
||||
vty_app = apps[0]
|
||||
|
Reference in new issue