From 57497a6be94065f7dc12752ce160ded77b2c7d6d Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 28 Aug 2017 14:21:15 +0200 Subject: Add cipher cfg param for modem and bts This parameter is contains a list of supported encryption ciphers by the modem or bts setting it. It is so far not directly/automatically used inside osmo-gsm-tester code, but can be useful to create scenarios for tests that require specific ciphering modes. For instance, aoip_encryption suite contains tests that require a BTS and a modem that supports a5 0 and a5 1, otherwise tests will fail. Change-Id: Ic0e368843a6e58bd3eeef36d2c0a7501296f0f3e --- example/scenarios/cipher-a50.conf | 7 +++++++ example/scenarios/cipher-a51.conf | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 example/scenarios/cipher-a50.conf create mode 100644 example/scenarios/cipher-a51.conf (limited to 'example/scenarios') diff --git a/example/scenarios/cipher-a50.conf b/example/scenarios/cipher-a50.conf new file mode 100644 index 0000000..107172b --- /dev/null +++ b/example/scenarios/cipher-a50.conf @@ -0,0 +1,7 @@ +resources: + bts: + - ciphers: + - a5_0 + modem: + - ciphers: + - a5_0 diff --git a/example/scenarios/cipher-a51.conf b/example/scenarios/cipher-a51.conf new file mode 100644 index 0000000..8539867 --- /dev/null +++ b/example/scenarios/cipher-a51.conf @@ -0,0 +1,7 @@ +resources: + bts: + - ciphers: + - a5_1 + modem: + - ciphers: + - a5_1 -- cgit v1.2.3