Appendix A: OAM
- Run the OAM server
cd webconsole
go run server.go
- Access the OAM by
URL: http://localhost:5000
Username: admin
Password: free5gc
- Now you can see the information of currently registered UEs (e.g. Supi, connected state, etc.) in the core network at the tab “DASHBOARD” of free5GC webconsole
Note: You can add the subscribers here too
Appendix B: Orchestrator
Please refer to free5gmano
Appendix C: IPTV
Please refer to free5GC/IPTV
Appendix D: System Environment Cleaning
The below commands may be helpful for development purposes.
- Remove POSIX message queues
ls /dev/mqueue/
rm /dev/mqueue/*
- Remove gtp5g tunnels (using tools in libgtp5gnl)
cd ./src/upf/lib/libgtp5gnl/tools
./gtp5g-tunnel list pdr
./gtp5g-tunnel list far
- Remove gtp5g devices (using tools in libgtp5gnl)
cd ./src/upf/lib/libgtp5gnl/tools
sudo ./gtp5g-link del {Dev-Name}
Appendix E: Change Kernel Version
- Check the previous kernel version:
uname -r
- Search specific kernel version and install, take
5.0.0-23-generic
for example
sudo apt search 'linux-image-5.0.0-23-generic'
sudo apt install 'linux-image-5.0.0-23-generic'
sudo apt install 'linux-headers-5.0.0-23-generic'
- Update initramfs and grub
sudo update-initramfs -u -k all
sudo update-grub
- Reboot, enter grub and choose kernel version
5.0.0-23-generic
sudo reboot
Optional: Remove Kernel Image
sudo apt remove 'linux-image-5.0.0-23-generic'
sudo apt remove 'linux-headers-5.0.0-23-generic'
Appendix F: Program the SIM Card
Install packages:
sudo apt-get install pcscd pcsc-tools libccid python-dev swig python-setuptools python-pip libpcsclite-dev
sudo pip install pycrypto
Download PySIM
git clone git://git.osmocom.org/pysim.git
Change to pyscard folder and install
cd <pyscard-path>
sudo /usr/bin/python setup.py build_ext install
Verify your reader is ready
sudo pcsc_scan
Check whether your reader can read the SIM card
cd <pysim-path>
./pySim-read.py –p 0
Program your SIM card information
./pySim-prog.py -p 0 -x 208 -y 93 -t sysmoUSIM-SJS1 -i 208930000000003 --op=8e27b6af0e692e750f32667a3b14605d -k 8baf473f2f8fd09487cccbd7097c6862 -s 8988211000000088313 -a 23605945
You can get your SIM card from sysmocom. You also need a card reader to write your SIM card. You can get a card reader from here or use other similar devices.