laforge has submitted this change. ( https://gerrit.osmocom.org/c/erlang/osmo-s1gw/+/41278?usp=email )
Change subject: doc/osmo-s1gw-cli.md: document {enb,erab}_delete ......................................................................
doc/osmo-s1gw-cli.md: document {enb,erab}_delete
Change-Id: Iec93f90be4c3989fcb98341581d36f4650028f37 Related: 998a7e0f ("[REST] Implement {Enb,Erab}Delete") --- M doc/osmo-s1gw-cli.md 1 file changed, 36 insertions(+), 0 deletions(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/doc/osmo-s1gw-cli.md b/doc/osmo-s1gw-cli.md index e160ffa..4a0bd22 100644 --- a/doc/osmo-s1gw-cli.md +++ b/doc/osmo-s1gw-cli.md @@ -254,6 +254,26 @@ To enable full traceback, run the following command: 'set debug true' ```
+### `enb_delete` + +Force disconnect an eNB. + +``` +Usage: enb_delete [-h] (-H HANDLE | -P PID | -G GENBID | --enb-sctp-aid AID | --mme-sctp-aid AID) + +Force disconnect an eNB + +optional arguments: + -h, --help show this help message and exit + +eNB ID: + -H, --handle HANDLE eNB handle (example: 0) + -P, --pid PID eNB process ID (example: 0.33.1) + -G, --genbid GENBID Global-eNB-ID (example: 262-42-1337) + --enb-sctp-aid AID eNB association identifier (example: 42) + --mme-sctp-aid AID MME association identifier (example: 42) +``` + ### `enb_erab_list`
Get E-RAB list for a specific eNB. @@ -349,3 +369,19 @@ | A2U F-TEID | 0x02020001@127.0.2.2 | | U2A F-TEID | 0x00020001@127.0.0.2 | ``` + +### `erab_delete` + +Terminate an E-RAB FSM process. + +``` +Usage: erab_delete -P PID [-h] + +Terminate an E-RAB FSM process + +required arguments: + -P, --pid PID E-RAB process ID (example: 0.33.1) + +optional arguments: + -h, --help show this help message and exit +```