Ueransim: Penggunaan

From OnnoWiki
Revision as of 11:20, 21 December 2022 by Onnowpurbo (talk | contribs) (Created page with "Sumber: https://github.com/aligungr/UERANSIM/wiki/Usage Basic Usage After completing configurations and setups, now you can start using UERANSIM. Run the following command...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sumber: https://github.com/aligungr/UERANSIM/wiki/Usage

Basic Usage After completing configurations and setups, now you can start using UERANSIM.

Run the following command to start the gNB:

nr-gnb -c myconfig.yaml

Run the following command to start a UE:

nr-ue -c myconfig.yaml

You can also set the number of UEs by:

nr-ue -c myconfig.yaml -n 10

This way, 10 UEs will start and run in the process. IMSI number is incremented by one for each of the UEs (starting from the IMSI specified in the config file). You can also override IMSI parameter in the config file over the command line by:

nr-ue -c myconfig.yaml -i imsi-286010000000001

or

nr-ue -c myconfig.yaml -n 10 -i imsi-286010000000001

Usage of the Command Line Interface (CLI) We provide nr-cli tool for both gNB and UEs.

NOTE: UE and gNB have different CLI commands. For example in gNB you can check the AMF connection status, or in UE you can trigger de-registration. More details are explained in the present document.

Usage:

nr-cli <node-name>

Here you need to replace <node-name> with a UE or gNB name. For example:

nr-cli imsi-001010000000001

You can query the current UE and gNBs in the environment using:

$ nr-cli --dump
imsi-001010000000001
imsi-001010000000002
imsi-001010000000003

After running nr-cli <node-name> command, an interactive shell will be open if given node is present and running in the environment. You can now execute further commands for this node.

To see available commands, use commands.

For Example:

user@pc:~/UERANSIM/build$ ./nr-cli UERANSIM-gnb-001-01-1
--------------------------------------------------------------------------------------------
$ commands
amf-info | Show some status information about the given AMF
amf-list | List all AMFs associated with the gNB
info     | Show some information about the gNB
status   | Show some status information about the gNB
ue-count | Print the total number of UEs connected the this gNB
ue-list  | List all UEs associated with the gNB
--------------------------------------------------------------------------------------------

You can further investigate usage and help information for sub-commands.

For example:

$ amf-info --help
$ ue-list --version
etc.

You can also use -e/--exec option if you want to directly execute the command instead of using the interactive shell.

For example:

nr-cli imsi-001010000000001 --exec "status"
For more details, see nr-cli --help

Usage of the Data Plane UERANSIM provides a TUN interface in order to use UE's internet connectivity. With the version v2.2.1 all TUN configurations are automatically applied.

A TUN interface is setup for each PDU session. After successful establishment of a PDU session, the UE automatically performs the following operations:

A TUN interface is created. A routing table, an IP rule, and an IP route are configured. NOTE: Routing configurations may clash with your current settings. You can start the UE with nr-ue --no-route-config if you don't want the automatic routing configurations (item 2). However TUN interface is always created after a PDU session establishment (item 1).

NOTE: Using UE and Core Network on the same computer usually causes problems. Please use 2 different machines for UERANSIM and core network. (You can use virtual machines or non-virtual machines.)

Using the TUN Interface If you want to manually utilize the interface, just bind your TCP/IP socket to uesimtunX interface.

For example:

ping -I uesimtun0 google.com

or

sudo curl --interface uesimtun0 google.com

etc. However we also provide our experimental ./nr-binder tool to utilize UE's connection easily.

Using the TUN via ./nr-binder You can bind the uesimtunX interface to almost any application using ./nr-binder tool.

NOTE: Automatic routing configurations must be enabled for using ./nr-binder. i.e. don't start the UE with --no-routing-config if you want to use nr-binder feature.

NOTE: ./nr-binder is experimental and may not work for some applications.

Usage:

./nr-binder {PDU-SESSION-IP-ADDRESS} {COMMAND} {ARGS}

For example:

./nr-binder 10.45.0.2 curl google.com

In this way, curl command will use UE's internet connection with IP 10.45.0.2. (Here 10.45.0.2 is the IP address of the PDU session that you want to utilize. You may need to replace it with your own PDU session address.)

You can also use web browsers such as Firefox. For example:

./nr-binder 10.45.0.2 firefox

After running this command, all network traffic occurred in Firefox, will use UE's internet connectivity.

NOTE: Please kill all Firefox processes before running the command above.

Troubleshooting If you are not able to connect to the internet, make sure that the following conditions are satisfied:

UERANSIM and core network successfully configured. A PDU Session is successfully established. IP address given to nr-binder is exactly same with the IP address of the related IP PDU Session. NOTE: Routing configurations in UERANSIM are experimental and it's not a primary feature of the software. UERANSIM only guarantees to create a TUN interface, but IP routing configurations are not guaranteed to serve any purpose. You should directly bind your applications to the TUN interface in order to utilize the UE's internet connectivity, as described in this document.



Referensi