9.[Trying some advanced stuff](#9-trying-some-advanced-stuff)
* In this demo the image tags and commits which were used are listed below, follow the [Building images](./BUILD_IMAGES.md) to build images with below tags.
* In this demo the image tags and commits which were used are listed below, follow the [Building images](./BUILD_IMAGES.md) to build images with below tags.
...
@@ -285,8 +286,94 @@ iperf Done.
...
@@ -285,8 +286,94 @@ iperf Done.
* For detailed analysis of messages, please refer previous tutorial of [testing with dsTester](./docs/DEPLOY_SA5G_WITH_DS_TESTER.md).
* For detailed analysis of messages, please refer previous tutorial of [testing with dsTester](./docs/DEPLOY_SA5G_WITH_DS_TESTER.md).
## 9. Trying Some Advanced Stuff ##
## 9. Undeploy ##
Here we try some scaling test with ueransim. There are additional IMSIs added into database (208950000000031-208950000000131).
Now we register 100 UEs using ueransim.
#### Note: We have to update `NUMBER_OF_UE` parameter in docker-compose of ueransim.
```bash
NUMBER_OF_UE=100
```
* Launch ueransim docker service
```bash
oai-cn5g-fed/docker-compose$ docker-compose -f docker-compose-ueransim-vpp.yaml up -d
Creating ueransim ... done
```
Wait a bit <br/>
Now we can verify that all UEs are successfully registered from AMF or SMF logs.
PING 12.2.1.101 (12.2.1.101) 56(84) bytes of data.
64 bytes from 12.2.1.101: icmp_seq=1 ttl=63 time=0.896 ms
64 bytes from 12.2.1.101: icmp_seq=2 ttl=63 time=1.53 ms
--- 12.2.1.101 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 0.896/1.216/1.537/0.322 ms
$ docker exec oai-ext-dn ping -c 2 12.2.1.88
PING 12.2.1.88 (12.2.1.88) 56(84) bytes of data.
64 bytes from 12.2.1.88: icmp_seq=1 ttl=63 time=0.977 ms
64 bytes from 12.2.1.88: icmp_seq=2 ttl=63 time=0.687 ms
--- 12.2.1.88 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 0.687/0.832/0.977/0.145 ms
```
* DIY: You can further investigate usage and help information for sub-commands with the help of UE console.([Refer official page](https://github.com/aligungr/UERANSIM/wiki/Usage))