small fix

edoardoColi
EdoardoColi 9 months ago
parent e69ff576de
commit d247997f0e

@ -158,18 +158,20 @@ The 5G architecture is designed to be more flexible, scalableand adaptable to th
**Acronymes list:** **Acronymes list:**
- *User Equipement* UE - *User Equipement* UE
- *Evolved Packet Core* EPC
- *Control Plane* CP - *Control Plane* CP
- *User Plane* - *User Plane* UP
- *Packet Data Network*
- *PDN Gateway* PGW
- *Home Subscriber Server*
- *evolved NodeB* eNB - *evolved NodeB* eNB
- *Evolved Packet System* - *User Plane Function* UPF
- *Radio Access Network* - *Access and Mobility Function* AMF
- *Packet Delivery Network* - *Session Management Function* SMF
- *qqqqq* UPF - *Policy Control Function* PCF
- *qqqqq* - *Home Subscriber Server* HSS
- *Radio Access Network* RAN
- *Packet Data Network* PDN
- *PDN Gateway* PGW
- *Evolved Packet System* EPS
- *Packet Delivery Network* PDN
- *Evolved Packet Core* EPC
There are many open-source implementation of 5G both for RAN and Core. There are many open-source implementation of 5G both for RAN and Core.
For the Radio Access Network we are going to use [UERANSIM](https://github.com/aligungr/UERANSIM). For the Radio Access Network we are going to use [UERANSIM](https://github.com/aligungr/UERANSIM).
@ -223,7 +225,7 @@ In the directory we will find [*example1.py*](https://github.com/RiccardoFedrizz
**! ! !** To enter the containers must be executed `sudo python3 example2.py` and in another terminal `sudo ./enter_container.sh ue`**! ! !** **! ! !** To enter the containers must be executed `sudo python3 example2.py` and in another terminal `sudo ./enter_container.sh ue`**! ! !**
## Why sandbox? ## Why sandbox?
Using Docker as a sandbox offers a powerful solution for isolating and testing applications and services in a controlled environment. Docker containers provide a lightweight, reproducible way to create sandboxes for development, testing, or experimentation. By encapsulating an application and its dependencies within a container, developers can ensure consistency across different environments, making it easier to troubleshoot issues and prevent conflicts. Docker's sandboxing capabilities also enhance security by isolating processes and resources, reducing the risk of unintended interactions or vulnerabilities. Whether for development, QA, or exploring new software, Docker's sandboxing approach simplifies the management of isolated environments, fostering agility and reliability in software development workflows. Using Docker, or a Virtual Machine, as a sandbox offers a powerful solution for isolating and testing applications and services in a controlled environment. Docker containers provide a lightweight, reproducible way to create sandboxes for development, testing, or experimentation. By encapsulating an application and its dependencies within a container, developers can ensure consistency across different environments, making it easier to troubleshoot issues and prevent conflicts. Docker's sandboxing capabilities also enhance security by isolating processes and resources, reducing the risk of unintended interactions or vulnerabilities. Whether for development, QA, or exploring new software, Docker's sandboxing approach simplifies the management of isolated environments, fostering agility and reliability in software development workflows.
``` ```
docker run -it --rm ubuntu /bin/sh docker run -it --rm ubuntu /bin/sh
docker system prune --all --volumes --force #Remove unused data docker system prune --all --volumes --force #Remove unused data

Loading…
Cancel
Save