Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 1 | .. |
| 2 | SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> |
| 3 | SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | Subscriber and Connectivity Management |
| 6 | ====================================== |
| 7 | |
| 8 | Subscriber management includes workflows associated with provisioning new subscribers, removing |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 9 | existing subscribers, and associating subscribers with slices. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 10 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 11 | .. note:: |
| 12 | This section refers to a fully installed ROC GUI, properly secured and with Enterprises, Connectivity Services |
| 13 | and Sites already configured by a ROC Administrator. The examples shown below are taken from an example |
| 14 | configuration shipped with the ROC - the "MEGA Patch" (see :ref:`posting-the-mega-patch`) |
| 15 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 16 | Provisioning a new Device |
| 17 | ------------------------- |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 18 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 19 | Before a Device can be granted connectivity service, it must first be provisioned. This step is normally |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 20 | performed by Aether Operations. |
| 21 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 22 | Each Device is assigned a PLMN and a set of security keys. Depending on the deployment scenario, these |
| 23 | keys might be shared by several Devices, or they might be unique to each Device. The allocation of PLMNs and |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 24 | keys is currently performed manually by the Aether Operations team. This subscriber-related |
Andy Bavier | 212f640 | 2021-09-30 17:27:34 -0700 | [diff] [blame] | 25 | detail is configured via the SIM Management application, ``simapp``. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 26 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 27 | ``simapp.yaml`` needs to be adjusted to include the new Device IMSIs to the subscriber list. For example:: |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 28 | |
| 29 | # simapp.yaml |
| 30 | # ... |
| 31 | simapp.yaml: |
| 32 | info: |
| 33 | version: 1.0.0 |
| 34 | description: SIMAPP initial local configuration |
| 35 | logger: |
| 36 | # network function |
| 37 | APP: |
| 38 | debugLevel: info |
| 39 | ReportCaller: false |
| 40 | configuration: |
| 41 | provision-network-slice: false |
| 42 | subscribers: |
| 43 | - ueId-start: 123456789123458 |
| 44 | ueId-end: 123456789123458 |
| 45 | plmnId: 20893 |
| 46 | opc: 8e27b6af0e692e750f32667a3b14605d |
| 47 | key: 8baf473f2f8fd09487cccbd7097c6862 |
| 48 | sequenceNumber: 16f3b3f70fc2 |
| 49 | - ueId-start: 123456789123460 |
| 50 | ueId-end: 123456789123465 |
| 51 | plmnId: 20893 |
| 52 | opc: 8e27b6af0e692e750f32667a3b14605d |
| 53 | key: 8baf473f2f8fd09487cccbd7097c6862 |
| 54 | sequenceNumber: 16f3b3f70fc2 |
| 55 | |
Andy Bavier | 212f640 | 2021-09-30 17:27:34 -0700 | [diff] [blame] | 56 | The simapp configurations for all deployments are stored in the ``aether-app-configs`` repository: |
| 57 | |
| 58 | * Production deployment: ``apps/sd-core-4g/overlays/prd-acc-gcp1/values.yaml`` |
| 59 | * Staging deployment: ``apps/sd-core-4g/overlays/stg-acc-aws/values.yaml`` |
| 60 | |
| 61 | Fleet will automatically deploy changes to these files once they are merged. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 62 | |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 63 | .. _configure_device_group: |
| 64 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 65 | Configure Connectivity Service for a new Device |
| 66 | ----------------------------------------------- |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 67 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 68 | To receive connectivity service, the following steps are necessary: |
| 69 | |
| 70 | 1. The Sim-Card for the Device must be created. |
| 71 | 2. The Device must be created and associated with the Sim-Card. |
| 72 | 3. The Device must be added to a Device-Group. |
| 73 | |
| 74 | Create the Sim-Card |
| 75 | """"""""""""""""""" |
| 76 | |
| 77 | .. note:: |
| 78 | If Simapp integration has been enabled on the site, then new Sim-Cards will automatically be |
| 79 | added to the Site as the Aether staff provisions the SIM Cards. In that case, the Sim-Card object |
| 80 | will already be present, and this section may be skipped. |
| 81 | |
| 82 | Start by bringing up the Sim-Card list: |
| 83 | |
| 84 | |SIMCARD-LIST| |
| 85 | |
| 86 | Click the add button to add a new Sim-Card: |
| 87 | |
| 88 | |SIMCARD-ADD| |
| 89 | |
| 90 | Select an Enterprise and Site where the Sim-Card will belong. |
| 91 | Give the Sim-Card a unique ID. You must also set the IMSI for the Sim-Card, which should have |
| 92 | been provided by Aether operations. All other fields, including the ICCID, are optional. |
| 93 | Update and Commit the changes when you are finished. |
| 94 | |
| 95 | Creating the Device |
| 96 | """"""""""""""""""" |
| 97 | |
| 98 | To create the Device, start by navigating to the Device list: |
| 99 | |
| 100 | |DEVICE-LIST| |
| 101 | |
| 102 | Click the add button to add a new Device: |
| 103 | |
| 104 | |DEVICE-ADD| |
| 105 | |
| 106 | Select an Enterprise and Site where the Device will belong. |
| 107 | Give the Device a unique ID and select a Sim-Card to associate with the Device. It |
| 108 | is allowed to create the Device with no Sim-Card, in case you want to associate the Sim-Card |
| 109 | at a later date. All other fields, including the IMEI, are optional. |
| 110 | Update and Commit the changes when you are finished. |
| 111 | |
| 112 | Adding the Device to the Device-Group |
| 113 | """"""""""""""""""""""""""""""""""""" |
| 114 | |
| 115 | An Enterprise is typically |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 116 | organized into one or more Sites, each Site which may contain one or more DeviceGroups. Navigate |
| 117 | to the appropriate DeviceGroup which is associated with the Site you wish to deploy on, and add |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 118 | the Device's IMSI to the DeviceGroup. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 119 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 120 | The Site details can be seen by navigating to the Site list view. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 121 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 122 | |SITE-LIST| |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 123 | |
| 124 | In the ROC GUI, navigate to the Device Groups list view, to see the list of |
| 125 | Device Groups and their association to Sites. |
| 126 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 127 | |DEVICEGROUP-LIST| |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 128 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 129 | In the Device-Group *New York POS* example above there are two devices listed, |
| 130 | *till-pos-1* and *till-pos-2*. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 131 | |
| 132 | .. note:: |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 133 | For 4G service, a Device may participate in at most one DeviceGroup, and that DeviceGroup may |
| 134 | participate in at most one Slice. For 5G service, a Device can participate in many DeviceGroups, and each |
| 135 | DeviceGroup may participate in many Slices. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 136 | |
| 137 | Editing |
| 138 | ******* |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 139 | Edit the DeviceGroup by clicking on the Edit icon, and in the List page, |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 140 | adjust an existing Device ID range or create a new range (by clicking on the `+` icon). |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 141 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 142 | |DEVICEGROUP-EDIT| |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 143 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 144 | The Device-Group page includes a list of each device that comprises the group. Each one |
| 145 | may be individually enabled or disabled. Enable or disable is intended to temporarily |
| 146 | limit connectivity; the device can also be permanently deleted. To add a device to the group, click the |
| 147 | plus symbol next to the device, and then select an available device. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 148 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 149 | .. note:: |
| 150 | While you are allowed to add a device to multiple device groups, this is not recommended. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 151 | |
| 152 | When the entries on the DeviceGroup edit page are valid the **Update** will become available |
| 153 | |
| 154 | * Click this to add the changes to the **Basket** of configuration changes |
| 155 | * Observe that the **Basket** icon (2nd icon from top right) displays the number of changes |
| 156 | |
| 157 | .. note:: |
| 158 | The changes are not committed to **aether-config** until the **Basket** is committed. |
| 159 | This allows several changes to be gathered together in one transaction and checked before committing. |
| 160 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 161 | Remove Connectivity Service from an existing Device |
| 162 | --------------------------------------------------- |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 163 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 164 | Using the ROC GUI, navigate to the DeviceGroup that contains the Device, |
| 165 | then remove that Device from the list. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 166 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 167 | * Once finished editing, proceed to the *Basket View*, inspect the changes and Commit. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 168 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 169 | |DEVICEGROUP-EDIT| |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 170 | |
| 171 | .. note:: |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 172 | The Device may continue to have connectivity until its next detach/attach cycle. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 173 | |
| 174 | Create a new DeviceGroup |
| 175 | ------------------------ |
| 176 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 177 | DeviceGroups allow Devices to be grouped and configured together. Each site comes preconfigured with |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 178 | a default DeviceGroup, but additional DeviceGroups may be created. For example, placing all IP |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 179 | Cameras in an "my-site-ip-cameras" DeviceGroup would allow you to group IP Cameras together. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 180 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 181 | To add a DeviceGroup, navigate to the list of DeviceGroups and click `Add` in the upper right. |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 182 | (This may be grayed out if you do not have appropriate permissions). |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 183 | |
| 184 | * Specify a unique **id** for the DeviceGroup |
| 185 | 40 characters max and only alphanumeric and `-`, `_` and `.` allowed |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 186 | * Choose an *Enterprise* and *Site* from the preconfigured list |
| 187 | It will not be possible to add Devices until the Site is chosen |
| 188 | * Devices can be added at this stage or later |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 189 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 190 | |DEVICEGROUP-ADD| |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 191 | |
| 192 | Delete a DeviceGroup |
| 193 | -------------------- |
| 194 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 195 | If a DeviceGroup is no longer needed, it can be deleted. Deleting a DeviceGroup will not cause |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 196 | the Devices participating in the group to automatically be moved elsewhere. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 197 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 198 | .. note:: |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 199 | If a Device Group is being used by an existing Slice, then it cannot be removed. |
| 200 | Delete the Slice first, and then the DeviceGroup. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 201 | |
| 202 | A DeviceGroup can be deleted from the DeviceGroup list view, by clicking the *trash can* icon |
| 203 | next to it. The deletion is added to the **Basket** directly. Navigate to the *Basket View* |
| 204 | to commit the change. |
| 205 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 206 | |DEVICEGROUP-LIST| |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 207 | |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 208 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 209 | Add a DeviceGroup to a Slice |
| 210 | ---------------------------- |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 211 | |
| 212 | In order to participate in the connectivity service, a DeviceGroup must be associated with |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 213 | a Slice. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 214 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 215 | Navigate to the *Slice* list view to see the list of Slice's and their associations to DeviceGroups. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 216 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 217 | |SLICE-LIST| |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 218 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 219 | To edit a *Slice* click on the *edit* button next to it in this list. |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 220 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 221 | This brings up the Slice edit page where (among many other things) zero, one or many |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 222 | DeviceGroups can be associated with it. |
| 223 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 224 | * Click the *trash can* symbol to remove a DeviceGroup from the Slice |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 225 | * Click the *+* icon to add a DeviceGroup |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 226 | * Click the *Enable* slider to Enable or Disable the DeviceGroup |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 227 | * This is a way of disabling or reenabling the DeviceGroup within a Slice without having to remove it |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 228 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 229 | |SLICE-EDIT| |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 230 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 231 | Remove a DeviceGroup from a Slice |
| 232 | --------------------------------- |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 233 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 234 | The procedure is covered in the above section. |
Scott Baker | e59540c | 2021-08-02 11:51:54 -0700 | [diff] [blame] | 235 | |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 236 | .. |monitor| image:: images/monitor-icon.png |
| 237 | :width: 28 |
| 238 | :alt: Monitor icon |
| 239 | |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 240 | .. |DEVICEGROUP-ADD| image:: images/aether-roc-gui-devicegroup-add.png |
| 241 | :width: 490 |
| 242 | :alt: Adding a new Device Group requires an *id* and choosing a Site |
| 243 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 244 | .. |DEVICEGROUP-LIST| image:: images/aether-roc-gui-devicegroups-list.png |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 245 | :width: 1000 |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 246 | :alt: Device Groups List View in Aether ROC GUI showing Site association and IMSI Range of all DeviceGroups |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 247 | |
| 248 | .. |DEVICEGROUP-EDIT| image:: images/aether-roc-gui-devicegroup-edit.png |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 249 | :width: 700 |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 250 | :alt: Device Groups Edit View in Aether ROC GUI showing IMSI Range |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 251 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 252 | .. |SLICE-LIST| image:: images/aether-roc-gui-slice-list.png |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 253 | :width: 920 |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 254 | :alt: Slice List View in Aether ROC GUI showing DeviceGroup association |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 255 | |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 256 | .. |SLICE-EDIT| image:: images/aether-roc-gui-slice-edit.png |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 257 | :width: 700 |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 258 | :alt: Slice Edit View in Aether ROC GUI showing DeviceGroup association editing |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 259 | |
| 260 | .. |BASKETVIEW-NEWRANGE| image:: images/aether-roc-gui-basket-view-new-range.png |
| 261 | :width: 635 |
| 262 | :alt: Basket View with some changes ready to be committed |
| 263 | |
| 264 | .. |BASKETVIEW-HISTORY| image:: images/aether-roc-gui-basket-view-history.png |
| 265 | :width: 800 |
| 266 | :alt: Basket View with history of last changes |
| 267 | |
| 268 | .. |SITE-LIST| image:: images/aether-roc-gui-sites-list.png |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 269 | :width: 1000 |
Sean Condon | 3727474 | 2022-01-26 09:52:45 +0000 | [diff] [blame] | 270 | :alt: Sites List View in Aether ROC GUI showing site details |
Scott Baker | 9c9a804 | 2022-03-03 10:28:17 -0800 | [diff] [blame] | 271 | |
| 272 | .. |SIMCARD-LIST| image:: images/aether-roc-gui-simcard-list.png |
| 273 | :width: 1000 |
| 274 | :alt: Sim-Card List View |
| 275 | |
| 276 | .. |SIMCARD-ADD| image:: images/aether-roc-gui-simcard-add.png |
| 277 | :width: 700 |
| 278 | :alt: Adding a new Sim-Card. |
| 279 | |
| 280 | .. |DEVICE-LIST| image:: images/aether-roc-gui-device-list.png |
| 281 | :width: 1000 |
| 282 | :alt: Sim-Card List View |
| 283 | |
| 284 | .. |DEVICE-ADD| image:: images/aether-roc-gui-device-add.png |
| 285 | :width: 700 |
| 286 | :alt: Adding a new Sim-Card. |