From 9722b0fa613e520995258a36e601d3a8ce844c81 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 10 Mar 2022 13:23:17 +0100 Subject: [PATCH] README: add Manual Testing With osmo-dev Describe the manual testing that can be done with osmo-dev with the changes up to I78ef36c72ff9a7b801e922eccc89dc44fbba7f23. Related: SYS#5560 Change-Id: I3c3369b6d1a50ec3af19ee826cf2f94530d5d7fd --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 8ed9954..ca367a2 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,29 @@ Please observe the [Osmocom Mailing List Rules](https://osmocom.org/projects/cellular-infrastructure/wiki/Mailing_List_Rules) when posting. +Manual Testing With osmo-dev +---------- + +With [osmo-dev](https://git.osmocom.org/osmo-dev/) it is possible to +build all Osmocom components for a full test network with OsmoBSCNAT, +and run the network on your PC. Set up the make directory as described +in osmo-dev's README, then build components with: + +``` +$ make cn-bsc-nat +``` + +Set up a network as described in osmo-dev's net/README, then put the +following in your configuration to let it run osmo-bsc-nat with one +virtual BSC, BTS and MS (can be used next to a real BSC/BTS/MS): + +``` +BSC_COUNT=2 +BTS1_RUN_IN_OSMO_DEV=1 +STP_RAN_IP="127.0.0.2" +MS_RUN_IN_OSMO_DEV=1 +``` + Contributing ------------