mirror of
https://github.com/Gradiant/5g-images.git
synced 2025-10-23 08:12:12 +00:00
upgrade ueransim 3.1.6.
This commit is contained in:
33
docs/open5gs-and-srs-enb-usrp/README.md
Normal file
33
docs/open5gs-and-srs-enb-usrp/README.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# open5gs and srsLTE
|
||||
|
||||
5G end to end communication demo with open5gs and srsLTE.
|
||||
|
||||
# Deployment EPC and register subscribers
|
||||
|
||||
deploy the EPC core (open5gs) with:
|
||||
|
||||
```
|
||||
docker-compose -f epc.yaml up -d
|
||||
```
|
||||
|
||||
Register subscriber in ngc with `/register_subscriber.sh`.
|
||||
|
||||
|
||||
# Download uhd_images
|
||||
|
||||
|
||||
python3 uhd_image_downloader.py -i ./uhd_images
|
||||
|
||||
# Deployment RAN (enodeB)
|
||||
|
||||
Deploy with
|
||||
|
||||
```
|
||||
docker-compose -f srs-enb.yaml up -d
|
||||
```
|
||||
|
||||
Undeploy with:
|
||||
|
||||
```
|
||||
docker-compose -f srs-enb.yaml down
|
||||
```
|
303
docs/open5gs-and-srs-enb-usrp/enb.conf
Normal file
303
docs/open5gs-and-srs-enb-usrp/enb.conf
Normal file
@@ -0,0 +1,303 @@
|
||||
#####################################################################
|
||||
# srsENB configuration file
|
||||
#####################################################################
|
||||
|
||||
#####################################################################
|
||||
# eNB configuration
|
||||
#
|
||||
# enb_id: 20-bit eNB identifier.
|
||||
# mcc: Mobile Country Code
|
||||
# mnc: Mobile Network Code
|
||||
# mme_addr: IP address of MME for S1 connnection
|
||||
# gtp_bind_addr: Local IP address to bind for GTP connection
|
||||
# s1c_bind_addr: Local IP address to bind for S1AP connection
|
||||
# n_prb: Number of Physical Resource Blocks (6,15,25,50,75,100)
|
||||
# tm: Transmission mode 1-4 (TM1 default)
|
||||
# nof_ports: Number of Tx ports (1 port default, set to 2 for TM2/3/4)
|
||||
#
|
||||
#####################################################################
|
||||
|
||||
[enb]
|
||||
enb_id = ${ENB_ID}
|
||||
mcc = ${MCC}
|
||||
mnc = ${MNC}
|
||||
mme_addr = ${MME_ADDR}
|
||||
gtp_bind_addr = ${GTP_BIND_ADDR}
|
||||
s1c_bind_addr = ${S1C_BIND_ADDR}
|
||||
n_prb = 50
|
||||
#tm = 4
|
||||
#nof_ports = 2
|
||||
|
||||
|
||||
#####################################################################
|
||||
# eNB configuration files
|
||||
#
|
||||
# sib_config: SIB1, SIB2 and SIB3 configuration file
|
||||
# note: when enabling mbms, use the sib.conf.mbsfn configuration file which includes SIB13
|
||||
# rr_config: Radio Resources configuration file
|
||||
# drb_config: DRB configuration file
|
||||
#####################################################################
|
||||
[enb_files]
|
||||
sib_config = sib.conf
|
||||
rr_config = rr.conf
|
||||
drb_config = drb.conf
|
||||
|
||||
#####################################################################
|
||||
# RF configuration
|
||||
#
|
||||
# dl_earfcn: EARFCN code for DL (only valid if a single cell is configured in rr.conf)
|
||||
# tx_gain: Transmit gain (dB).
|
||||
# rx_gain: Optional receive gain (dB). If disabled, AGC if enabled
|
||||
#
|
||||
# Optional parameters:
|
||||
# dl_freq: Override DL frequency corresponding to dl_earfcn
|
||||
# ul_freq: Override UL frequency corresponding to dl_earfcn (must be set if dl_freq is set)
|
||||
# device_name: Device driver family. Supported options: "auto" (uses first found), "UHD" or "bladeRF"
|
||||
# device_args: Arguments for the device driver. Options are "auto" or any string.
|
||||
# Default for UHD: "recv_frame_size=9232,send_frame_size=9232"
|
||||
# Default for bladeRF: ""
|
||||
# time_adv_nsamples: Transmission time advance (in number of samples) to compensate for RF delay
|
||||
# from antenna to timestamp insertion.
|
||||
# Default "auto". B210 USRP: 100 samples, bladeRF: 27.
|
||||
#####################################################################
|
||||
[rf]
|
||||
#dl_earfcn = 3400
|
||||
tx_gain = 80
|
||||
rx_gain = 40
|
||||
|
||||
device_name = UHD
|
||||
|
||||
# For best performance in 2x2 MIMO and >= 15 MHz use the following device_args settings:
|
||||
# USRP B210: num_recv_frames=64,num_send_frames=64
|
||||
|
||||
# For best performance when BW<5 MHz (25 PRB), use the following device_args settings:
|
||||
# USRP B210: send_frame_size=512,recv_frame_size=512
|
||||
|
||||
device_args = recv_frame_size=512,send_frame_size=512
|
||||
|
||||
#device_args = recv_frame_size=9232,send_frame_size=9232
|
||||
|
||||
#time_adv_nsamples = auto
|
||||
|
||||
# Example for ZMQ-based operation with TCP transport for I/Q samples
|
||||
#device_name = zmq
|
||||
#device_args = fail_on_disconnect=true,tx_port=tcp://*:2000,rx_port=tcp://localhost:2001,id=enb,base_srate=23.04e6
|
||||
|
||||
#####################################################################
|
||||
# Packet capture configuration
|
||||
#
|
||||
# MAC Packets are captured to file in the compact format decoded by
|
||||
# the Wireshark mac-lte-framed dissector and with DLT 147.
|
||||
# To use the dissector, edit the preferences for DLT_USER to
|
||||
# add an entry with DLT=147, Payload Protocol=mac-lte-framed.
|
||||
# For more information see: https://wiki.wireshark.org/MAC-LTE
|
||||
#
|
||||
# Please note that this setting will by default only capture MAC
|
||||
# frames on dedicated channels, and not SIB. You have to build with
|
||||
# WRITE_SIB_PCAP enabled in srsenb/src/stack/mac/mac.cc if you want
|
||||
# SIB to be part of the MAC pcap file.
|
||||
#
|
||||
# S1AP Packets are captured to file in the compact format decoded by
|
||||
# the Wireshark s1ap dissector and with DLT 150.
|
||||
# To use the dissector, edit the preferences for DLT_USER to
|
||||
# add an entry with DLT=150, Payload Protocol=s1ap.
|
||||
#
|
||||
# mac_enable: Enable MAC layer packet captures (true/false)
|
||||
# mac_filename: File path to use for packet captures
|
||||
# s1ap_enable: Enable or disable the PCAP.
|
||||
# s1ap_filename: File name where to save the PCAP.
|
||||
#
|
||||
#####################################################################
|
||||
[pcap]
|
||||
enable = false
|
||||
filename = /tmp/enb.pcap
|
||||
s1ap_enable = false
|
||||
s1ap_filename = /tmp/enb_s1ap.pcap
|
||||
|
||||
#####################################################################
|
||||
# Log configuration
|
||||
#
|
||||
# Log levels can be set for individual layers. "all_level" sets log
|
||||
# level for all layers unless otherwise configured.
|
||||
# Format: e.g. phy_level = info
|
||||
#
|
||||
# In the same way, packet hex dumps can be limited for each level.
|
||||
# "all_hex_limit" sets the hex limit for all layers unless otherwise
|
||||
# configured.
|
||||
# Format: e.g. phy_hex_limit = 32
|
||||
#
|
||||
# Logging layers: rf, phy, phy_lib, mac, rlc, pdcp, rrc, gtpu, s1ap, stack, all
|
||||
# Logging levels: debug, info, warning, error, none
|
||||
#
|
||||
# filename: File path to use for log output. Can be set to stdout
|
||||
# to print logs to standard output
|
||||
# file_max_size: Maximum file size (in kilobytes). When passed, multiple files are created.
|
||||
# If set to negative, a single log file will be created.
|
||||
#####################################################################
|
||||
[log]
|
||||
all_level = warning
|
||||
all_hex_limit = 32
|
||||
filename = stdout
|
||||
file_max_size = -1
|
||||
|
||||
[gui]
|
||||
enable = false
|
||||
|
||||
#####################################################################
|
||||
# Scheduler configuration options
|
||||
#
|
||||
# max_aggr_level: Optional maximum aggregation level index (l=log2(L) can be 0, 1, 2 or 3)
|
||||
# pdsch_mcs: Optional fixed PDSCH MCS (ignores reported CQIs if specified)
|
||||
# pdsch_max_mcs: Optional PDSCH MCS limit
|
||||
# pusch_mcs: Optional fixed PUSCH MCS (ignores reported CQIs if specified)
|
||||
# pusch_max_mcs: Optional PUSCH MCS limit
|
||||
# min_nof_ctrl_symbols: Minimum number of control symbols
|
||||
# max_nof_ctrl_symbols: Maximum number of control symbols
|
||||
#
|
||||
#####################################################################
|
||||
[scheduler]
|
||||
#max_aggr_level = -1
|
||||
#pdsch_mcs = -1
|
||||
#pdsch_max_mcs = -1
|
||||
#pusch_mcs = -1
|
||||
pusch_max_mcs = 16
|
||||
#min_nof_ctrl_symbols = 1
|
||||
#max_nof_ctrl_symbols = 3
|
||||
|
||||
#####################################################################
|
||||
# eMBMS configuration options
|
||||
#
|
||||
# enable: Enable MBMS transmission in the eNB
|
||||
# m1u_multiaddr: Multicast addres the M1-U socket will register to
|
||||
# m1u_if_addr: Address of the inteferface the M1-U interface will listen for multicast packets.
|
||||
#
|
||||
#####################################################################
|
||||
[embms]
|
||||
#enable = false
|
||||
#m1u_multiaddr = 239.255.0.1
|
||||
#m1u_if_addr = 127.0.1.201
|
||||
|
||||
|
||||
|
||||
#####################################################################
|
||||
# Channel emulator options:
|
||||
# enable: Enable/Disable internal Downlink/Uplink channel emulator
|
||||
#
|
||||
# -- AWGN Generator
|
||||
# awgn.enable: Enable/disable AWGN generator
|
||||
# awgn.n0: Noise power in dBfs
|
||||
#
|
||||
# -- Fading emulator
|
||||
# fading.enable: Enable/disable fading simulator
|
||||
# fading.model: Fading model + maximum doppler (E.g. none, epa5, eva70, etu300, etc)
|
||||
#
|
||||
# -- Delay Emulator delay(t) = delay_min + (delay_max - delay_min) * (1 + sin(2pi*t/period)) / 2
|
||||
# Maximum speed [m/s]: (delay_max - delay_min) * pi * 300 / period
|
||||
# delay.enable: Enable/disable delay simulator
|
||||
# delay.period_s: Delay period in seconds.
|
||||
# delay.init_time_s: Delay initial time in seconds.
|
||||
# delay.maximum_us: Maximum delay in microseconds
|
||||
# delay.minumum_us: Minimum delay in microseconds
|
||||
#
|
||||
# -- Radio-Link Failure (RLF) Emulator
|
||||
# rlf.enable: Enable/disable RLF simulator
|
||||
# rlf.t_on_ms: Time for On state of the channel (ms)
|
||||
# rlf.t_off_ms: Time for Off state of the channel (ms)
|
||||
#
|
||||
# -- High Speed Train Doppler model simulator
|
||||
# hst.enable: Enable/Disable HST simulator
|
||||
# hst.period_s: HST simulation period in seconds
|
||||
# hst.fd_hz: Doppler frequency in Hz
|
||||
# hst.init_time_s: Initial time in seconds
|
||||
#####################################################################
|
||||
[channel.dl]
|
||||
#enable = false
|
||||
|
||||
[channel.dl.awgn]
|
||||
#enable = false
|
||||
#n0 = -30
|
||||
|
||||
[channel.dl.fading]
|
||||
#enable = false
|
||||
#model = none
|
||||
|
||||
[channel.dl.delay]
|
||||
#enable = false
|
||||
#period_s = 3600
|
||||
#init_time_s = 0
|
||||
#maximum_us = 100
|
||||
#minimum_us = 10
|
||||
|
||||
[channel.dl.rlf]
|
||||
#enable = false
|
||||
#t_on_ms = 10000
|
||||
#t_off_ms = 2000
|
||||
|
||||
[channel.dl.hst]
|
||||
#enable = false
|
||||
#period_s = 7.2
|
||||
#fd_hz = 750.0
|
||||
#init_time_s = 0.0
|
||||
|
||||
[channel.ul]
|
||||
#enable = false
|
||||
|
||||
[channel.ul.awgn]
|
||||
#enable = false
|
||||
#n0 = -30
|
||||
|
||||
[channel.ul.fading]
|
||||
#enable = false
|
||||
#model = none
|
||||
|
||||
[channel.ul.delay]
|
||||
#enable = false
|
||||
#period_s = 3600
|
||||
#init_time_s = 0
|
||||
#maximum_us = 100
|
||||
#minimum_us = 10
|
||||
|
||||
[channel.ul.rlf]
|
||||
#enable = false
|
||||
#t_on_ms = 10000
|
||||
#t_off_ms = 2000
|
||||
|
||||
[channel.ul.hst]
|
||||
#enable = false
|
||||
#period_s = 7.2
|
||||
#fd_hz = -750.0
|
||||
#init_time_s = 0.0
|
||||
|
||||
|
||||
#####################################################################
|
||||
# Expert configuration options
|
||||
#
|
||||
# pusch_max_its: Maximum number of turbo decoder iterations (Default 4)
|
||||
# pusch_8bit_decoder: Use 8-bit for LLR representation and turbo decoder trellis computation (Experimental)
|
||||
# nof_phy_threads: Selects the number of PHY threads (maximum 4, minimum 1, default 2)
|
||||
# metrics_period_secs: Sets the period at which metrics are requested from the eNB.
|
||||
# metrics_csv_enable: Write eNB metrics to CSV file.
|
||||
# metrics_csv_filename: File path to use for CSV metrics.
|
||||
# pregenerate_signals: Pregenerate uplink signals after attach. Improves CPU performance.
|
||||
# tx_amplitude: Transmit amplitude factor (set 0-1 to reduce PAPR)
|
||||
# link_failure_nof_err: Number of PUSCH failures after which a radio-link failure is triggered.
|
||||
# a link failure is when SNR<0 and CRC=KO
|
||||
# max_prach_offset_us: Maximum allowed RACH offset (in us)
|
||||
# eea_pref_list: Ordered preference list for the selection of encryption algorithm (EEA) (default: EEA0, EEA2, EEA1).
|
||||
# eia_pref_list: Ordered preference list for the selection of integrity algorithm (EIA) (default: EIA2, EIA1, EIA0).
|
||||
#
|
||||
#####################################################################
|
||||
[expert]
|
||||
#pusch_max_its = 8 # These are half iterations
|
||||
#pusch_8bit_decoder = false
|
||||
#nof_phy_threads = 3
|
||||
#metrics_period_secs = 1
|
||||
#metrics_csv_enable = false
|
||||
#metrics_csv_filename = /tmp/enb_metrics.csv
|
||||
#pregenerate_signals = false
|
||||
#tx_amplitude = 0.6
|
||||
#link_failure_nof_err = 50
|
||||
#rrc_inactivity_timer = 60000
|
||||
#max_prach_offset_us = 30
|
||||
#eea_pref_list = EEA0, EEA2, EEA1
|
||||
#eia_pref_list = EIA2, EIA1, EIA0
|
59
docs/open5gs-and-srs-enb-usrp/epc.yaml
Normal file
59
docs/open5gs-and-srs-enb-usrp/epc.yaml
Normal file
@@ -0,0 +1,59 @@
|
||||
version: '3'
|
||||
services:
|
||||
mongo:
|
||||
image: mongo
|
||||
environment:
|
||||
MONGO_INITDB_DATABASE: open5gs
|
||||
webui:
|
||||
image: openverso/open5gs-webui:2.2.3
|
||||
restart: on-failure
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
ports:
|
||||
- 3000:3000
|
||||
nrf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-nrfd
|
||||
restart : on-failure
|
||||
smf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-smfd
|
||||
restart : on-failure
|
||||
mme:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-mmed
|
||||
restart: on-failure
|
||||
ports:
|
||||
- 36412:36412
|
||||
sgwc:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-sgwcd
|
||||
restart : on-failure
|
||||
sgwu:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-sgwud
|
||||
restart : on-failure
|
||||
upf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: ["open5gs-upfd"]
|
||||
volumes:
|
||||
- $PWD/upf.yaml:/opt/open5gs/etc/open5gs/upf.yaml
|
||||
cap_add:
|
||||
- all
|
||||
privileged: true
|
||||
restart: on-failure
|
||||
ports:
|
||||
- 2152:2152
|
||||
pcrf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: ["open5gs-pcrfd"]
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
hss:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-hssd
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
|
15
docs/open5gs-and-srs-enb-usrp/register_subscriber.sh
Executable file
15
docs/open5gs-and-srs-enb-usrp/register_subscriber.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
CONTAINER_NAME=open5gs-and-srs-enb-usrp_mongo_1
|
||||
|
||||
#IMSI_LIST="001010000000001 "
|
||||
#KI=465B5CE8B199B49FAA5F0A2EE238A6BC
|
||||
#OPC=E8ED289DEBA952E4283B54E88E6183CA
|
||||
|
||||
IMSI_LIST="901700000039226 "
|
||||
KI=491BB1C6E1179AED538028AE7AD525B3
|
||||
OPC=3B7FB099B3A6D16873B33F023B1679E9
|
||||
|
||||
for IMSI in $IMSI_LIST; do
|
||||
docker exec $CONTAINER_NAME mongo --eval "db.subscribers.update({\"imsi\" : \"$IMSI\"}, { \$setOnInsert: {\"imsi\" : \"$IMSI\",\"subscribed_rau_tau_timer\": NumberInt(12),\"network_access_mode\": NumberInt(2),\"subscriber_status\": NumberInt(0),\"access_restriction_data\": NumberInt(32),\"slice\":[{\"sst\": NumberInt(1),\"default_indicator\":true,\"session\":[{\"name\":\"internet\",\"type\":NumberInt(3),\"pcc_rule\":[],\"ambr\":{\"uplink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)},\"downlink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)}},\"qos\":{\"index\":NumberInt(9),\"arp\":{\"priority_level\":NumberInt(8),\"pre_emption_capability\":NumberInt(1),\"pre_emption_vulnerability\":NumberInt(1)}}}]}],\"ambr\":{\"uplink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)},\"downlink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)}},\"security\":{\"k\":\"$KI\",\"amf\":\"8000\",\"op\":null,\"opc\":\"$OPC\"}}}, upsert=true);" open5gs
|
||||
done
|
16
docs/open5gs-and-srs-enb-usrp/srs-enb.yaml
Normal file
16
docs/open5gs-and-srs-enb-usrp/srs-enb.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3'
|
||||
services:
|
||||
enodeb:
|
||||
image: openverso/srs-lte:20_04_1
|
||||
command:
|
||||
- enb
|
||||
privileged: true
|
||||
volumes:
|
||||
- ./enb.conf:/etc/srslte/enb.conf
|
||||
- /dev/bus/usb:/dev/bus/usb
|
||||
- ./uhd_images:/usr/share/uhd/images
|
||||
cap_add:
|
||||
- all
|
||||
environment:
|
||||
MME_HOSTNAME: mme
|
||||
ENB_HOSTNAME: enodeb
|
639
docs/open5gs-and-srs-enb-usrp/uhd_image_downloader.py
Executable file
639
docs/open5gs-and-srs-enb-usrp/uhd_image_downloader.py
Executable file
@@ -0,0 +1,639 @@
|
||||
#!/usr/local/bin/python3
|
||||
#
|
||||
# Copyright 2018 Ettus Research, a National Instruments Company
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
"""
|
||||
Download image files required for USRPs
|
||||
"""
|
||||
from __future__ import print_function
|
||||
import argparse
|
||||
import hashlib
|
||||
import json
|
||||
import math
|
||||
import os
|
||||
import re
|
||||
import shutil
|
||||
import sys
|
||||
import tempfile
|
||||
import zipfile
|
||||
import platform
|
||||
# For all the non-core-library imports, we will be extra paranoid and be very
|
||||
# nice with error messages so that everyone understands what's up.
|
||||
try:
|
||||
from urllib.parse import urljoin # Python 3
|
||||
except ImportError:
|
||||
from urlparse import urljoin # Python 2
|
||||
try:
|
||||
from builtins import input
|
||||
except ImportError:
|
||||
input = raw_input
|
||||
try:
|
||||
from six import iteritems
|
||||
except ImportError:
|
||||
sys.stdout.write(
|
||||
"[ERROR] Missing module 'six'! Please install it, e.g., by "
|
||||
"running 'pip install six' or any other tool that can install "
|
||||
"Python modules.\n")
|
||||
if platform.system() == 'Windows':
|
||||
input('Hit Enter to continue.')
|
||||
exit(0)
|
||||
try:
|
||||
import requests
|
||||
except ImportError:
|
||||
sys.stdout.write(
|
||||
"[ERROR] Missing module 'requests'! Please install it, e.g., by "
|
||||
"running 'pip install requests' or any other tool that can install "
|
||||
"Python modules.\n")
|
||||
if platform.system() == 'Windows':
|
||||
input('Hit Enter to continue.')
|
||||
exit(0)
|
||||
|
||||
|
||||
|
||||
_DEFAULT_TARGET_REGEX = "(fpga|fw|windrv)_default"
|
||||
_BASE_DIR_STRUCTURE_PARTS = ["share", "uhd", "images"]
|
||||
_DEFAULT_INSTALL_PATH = os.path.join("/usr", *_BASE_DIR_STRUCTURE_PARTS)
|
||||
_DEFAULT_BASE_URL = "http://files.ettus.com/binaries/cache/"
|
||||
_INVENTORY_FILENAME = "inventory.json"
|
||||
_CONTACT = "support@ettus.com"
|
||||
_DEFAULT_BUFFER_SIZE = 8192
|
||||
_DEFAULT_DOWNLOAD_LIMIT = 100 * 1024 * 1024 # Bytes
|
||||
_ARCHIVE_DEFAULT_TYPE = "zip"
|
||||
_UHD_VERSION = "3.15.0.0-2build5"
|
||||
# Note: _MANIFEST_CONTENTS are placed at the bottom of this file for aesthetic reasons
|
||||
_LOG_LEVELS = {"TRACE": 1,
|
||||
"DEBUG": 2,
|
||||
"INFO": 3,
|
||||
"WARN": 4,
|
||||
"ERROR": 5}
|
||||
_LOG_LEVEL = _LOG_LEVELS["INFO"]
|
||||
_YES = False
|
||||
_PROXIES = {}
|
||||
|
||||
|
||||
def log(level, message):
|
||||
"""Logging function"""
|
||||
message_log_level = _LOG_LEVELS.get(level, 0)
|
||||
if message_log_level >= _LOG_LEVEL:
|
||||
sys.stderr.write(
|
||||
"[{level}] {message}\n".format(level=level, message=message))
|
||||
|
||||
|
||||
def parse_args():
|
||||
"""
|
||||
Setup argument parser and parse. Also does some sanity checks and sets some
|
||||
global variables we want to use.
|
||||
"""
|
||||
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
|
||||
parser.add_argument('-t', '--types', action='append',
|
||||
help="RegEx to select image sets from the manifest file.")
|
||||
parser.add_argument('-i', '--install-location',
|
||||
default=None,
|
||||
help="Set custom install location for images")
|
||||
parser.add_argument('-m', '--manifest-location', type=str, default="",
|
||||
help="Set custom location for the manifest file")
|
||||
parser.add_argument('-I', '--inventory-location', type=str, default="",
|
||||
help="Set custom location for the inventory file")
|
||||
parser.add_argument('-l', '--list-targets', action="store_true", default=False,
|
||||
help="Print targets in the manifest file to stdout, and exit.\n"
|
||||
"To get relative paths only, specify an empty base URL (-b '').")
|
||||
parser.add_argument('--url-only', action="store_true", default=False,
|
||||
help="With -l, only print the URLs, nothing else.")
|
||||
parser.add_argument("--buffer-size", type=int, default=_DEFAULT_BUFFER_SIZE,
|
||||
help="Set download buffer size")
|
||||
parser.add_argument("--download-limit", type=int, default=_DEFAULT_DOWNLOAD_LIMIT,
|
||||
help="Set threshold for download limits. Any download "
|
||||
"larger than this will require approval, either "
|
||||
"interactively, or by providing --yes.")
|
||||
parser.add_argument("--http-proxy", type=str,
|
||||
help="Specify HTTP proxy in the format "
|
||||
"http://user:pass@1.2.3.4:port\n"
|
||||
"If this this option is not given, the environment "
|
||||
"variable HTTP_PROXY can also be used to specify a proxy.")
|
||||
parser.add_argument("-b", "--base-url", type=str, default=_DEFAULT_BASE_URL,
|
||||
help="Set base URL for images download location")
|
||||
parser.add_argument("-k", "--keep", action="store_true", default=False,
|
||||
help="Keep the downloaded images archives in the image directory")
|
||||
parser.add_argument("-T", "--test", action="store_true", default=False,
|
||||
help="Verify the downloaded archives before extracting them")
|
||||
parser.add_argument("-y", "--yes", action="store_true", default=False,
|
||||
help="Answer all questions with 'yes' (for scripting purposes).")
|
||||
parser.add_argument("-n", "--dry-run", action="store_true", default=False,
|
||||
help="Print selected target without actually downloading them.")
|
||||
parser.add_argument("--refetch", action="store_true", default=False,
|
||||
help="Ignore the inventory file and download all images.")
|
||||
parser.add_argument('-V', '--version', action='version', version=_UHD_VERSION)
|
||||
parser.add_argument('-q', '--quiet', action='count', default=0,
|
||||
help="Decrease verbosity level")
|
||||
parser.add_argument('-v', '--verbose', action='count', default=0,
|
||||
help="Increase verbosity level")
|
||||
# Some sanitation that's easier to handle outside of the argparse framework:
|
||||
args = parser.parse_args()
|
||||
if not args.base_url.endswith('/') and args.base_url != "":
|
||||
args.base_url += '/'
|
||||
if args.yes:
|
||||
global _YES
|
||||
_YES = True
|
||||
if args.http_proxy:
|
||||
global _PROXIES
|
||||
_PROXIES['http'] = args.http_proxy
|
||||
# Set the verbosity
|
||||
global _LOG_LEVEL
|
||||
log("TRACE", "Default log level: {}".format(_LOG_LEVEL))
|
||||
_LOG_LEVEL = _LOG_LEVEL - args.verbose + args.quiet
|
||||
return args
|
||||
|
||||
|
||||
def get_images_dir(args):
|
||||
"""
|
||||
Figure out where to store the images.
|
||||
"""
|
||||
if args.install_location:
|
||||
return args.install_location
|
||||
if os.environ.get("UHD_IMAGES_DIR"):
|
||||
log("DEBUG",
|
||||
"UHD_IMAGES_DIR environment variable is set, using to set "
|
||||
"install location.")
|
||||
return os.environ.get("UHD_IMAGES_DIR")
|
||||
return _DEFAULT_INSTALL_PATH
|
||||
|
||||
|
||||
def ask_permission(question, default_no=True):
|
||||
"""
|
||||
Ask the question, and have the user type y or n on the keyboard. If the
|
||||
global variable _YES is true, this always returns True without asking the
|
||||
question. Otherwise, return True if the answer is 'yes', 'y', or something
|
||||
similar.
|
||||
"""
|
||||
if _YES:
|
||||
log("DEBUG", "Assuming the answer is 'yes' for this question: " +
|
||||
question)
|
||||
return True
|
||||
postfix = "[y/N]" if default_no else "[Y/n]"
|
||||
answer = input(question + " " + postfix)
|
||||
if answer and answer[0].lower() == 'y':
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
class TemporaryDirectory:
|
||||
"""Class to create a temporary directory"""
|
||||
def __enter__(self):
|
||||
try:
|
||||
self.name = tempfile.mkdtemp()
|
||||
return self.name
|
||||
except Exception as ex:
|
||||
log("ERROR", "Failed to create a temporary directory (%s)" % ex)
|
||||
raise ex
|
||||
|
||||
# Can return 'True' to suppress incoming exception
|
||||
def __exit__(self, exc_type, exc_value, traceback):
|
||||
try:
|
||||
shutil.rmtree(self.name)
|
||||
log("TRACE", "Temp directory deleted.")
|
||||
except Exception as ex:
|
||||
log("ERROR", "Could not delete temporary directory: %s (%s)" % (self.name, ex))
|
||||
return exc_type is None
|
||||
|
||||
|
||||
def get_manifest_raw(args):
|
||||
"""
|
||||
Return the raw content of the manifest (i.e. the text file). It
|
||||
needs to be parsed to be of any practical use.
|
||||
"""
|
||||
# If we're given a path to a manifest file, use it
|
||||
if os.path.exists(args.manifest_location):
|
||||
manifest_fn = args.manifest_location
|
||||
log("INFO", "Using manifest file at location: {}".format(manifest_fn))
|
||||
with open(manifest_fn, 'r') as manifest_file:
|
||||
manifest_raw = manifest_file.read()
|
||||
# Otherwise, use the CMake Magic manifest
|
||||
else:
|
||||
manifest_raw = _MANIFEST_CONTENTS
|
||||
log("TRACE", "Raw manifest contents: {}".format(manifest_raw))
|
||||
return manifest_raw
|
||||
|
||||
|
||||
def parse_manifest(manifest_contents):
|
||||
"""Parse the manifest file, returns a dictionary of potential targets"""
|
||||
manifest = {}
|
||||
for line in manifest_contents.split('\n'):
|
||||
line_unpacked = line.split()
|
||||
try:
|
||||
# Check that the line isn't empty or a comment
|
||||
if not line_unpacked or line.strip().startswith('#'):
|
||||
continue
|
||||
|
||||
target, repo_hash, url, sha256_hash = line_unpacked
|
||||
manifest[target] = {"repo_hash": repo_hash,
|
||||
"url": url,
|
||||
"sha256_hash": sha256_hash,
|
||||
}
|
||||
except ValueError:
|
||||
log("WARN", "Warning: Invalid line in manifest file:\n"
|
||||
" {}".format(line))
|
||||
continue
|
||||
return manifest
|
||||
|
||||
|
||||
def parse_inventory(inventory_fn):
|
||||
"""Parse the inventory file, returns a dictionary of installed files"""
|
||||
try:
|
||||
if not os.path.exists(inventory_fn):
|
||||
log("INFO", "No inventory file found at {}. Creating an empty one.".format(inventory_fn))
|
||||
return {}
|
||||
with open(inventory_fn, 'r') as inventory_file:
|
||||
# TODO: verify the contents??
|
||||
return json.load(inventory_file)
|
||||
except Exception as ex:
|
||||
log("WARN", "Error parsing the inventory file. Assuming an empty inventory: {}".format(ex))
|
||||
return {}
|
||||
|
||||
|
||||
def write_inventory(inventory, inventory_fn):
|
||||
"""Writes the inventory to file"""
|
||||
try:
|
||||
with open(inventory_fn, 'w') as inventory_file:
|
||||
json.dump(inventory, inventory_file)
|
||||
return True
|
||||
except Exception as ex:
|
||||
log("ERROR", "Error writing the inventory file. Contents may be incomplete or corrupted.\n"
|
||||
"Error message: {}".format(ex))
|
||||
return False
|
||||
|
||||
|
||||
def lookup_urls(regex_l, manifest, inventory, refetch=False):
|
||||
"""Takes a list of RegExs to match within the manifest, returns a list of tuples with
|
||||
(hash, URL) that match the targets and are not in the inventory"""
|
||||
selected_targets = []
|
||||
# Store whether or not we've found a target in the manifest that matches the requested type
|
||||
found_one = False
|
||||
for target in manifest.keys():
|
||||
# Iterate through the possible targets in the manifest.
|
||||
# If any of them match any of the RegExs supplied, add the URL to the
|
||||
# return list
|
||||
if all(map((lambda regex: re.findall(regex, target)), regex_l)):
|
||||
found_one = True
|
||||
log("TRACE", "Selected target: {}".format(target))
|
||||
target_info = manifest.get(target)
|
||||
target_url = target_info.get("url")
|
||||
target_hash = target_info.get("repo_hash")
|
||||
target_sha256 = target_info.get("sha256_hash")
|
||||
filename = os.path.basename(target_url)
|
||||
# Check if the same filename and hash appear in the inventory
|
||||
if not refetch and inventory.get(target, {}).get("repo_hash", "") == target_hash:
|
||||
# We already have this file, we don't need to download it again
|
||||
log("INFO", "Target {} is up to date.".format(target))
|
||||
else:
|
||||
# We don't have that exact file, add it to the list
|
||||
selected_targets.append({"target": target,
|
||||
"repo_hash": target_hash,
|
||||
"filename": filename,
|
||||
"url": target_url,
|
||||
"sha256_hash": target_sha256})
|
||||
if not found_one:
|
||||
log("INFO", "No targets matching '{}'".format(regex_l))
|
||||
return selected_targets
|
||||
|
||||
|
||||
def print_target_list(manifest, args):
|
||||
"""
|
||||
Print a list of targets.
|
||||
"""
|
||||
char_offset = max(len(x) for x in manifest.keys())
|
||||
if not args.url_only:
|
||||
# Print a couple helpful lines,
|
||||
# then print each (Target, URL) pair in the manifest
|
||||
log("INFO", "Potential targets in manifest file:\n"
|
||||
"{} : {}".format(
|
||||
"# TARGET".ljust(char_offset),
|
||||
"URL" if args.base_url else "RELATIVE_URL"))
|
||||
for key, value in sorted(manifest.items()):
|
||||
print("{target} : {base}{relpath}".format(
|
||||
target=key.ljust(char_offset),
|
||||
base=args.base_url,
|
||||
relpath=value["url"]))
|
||||
else:
|
||||
for manifest_item in iteritems(manifest):
|
||||
print(args.base_url+manifest_item[1]["url"])
|
||||
|
||||
|
||||
def download(
|
||||
images_url,
|
||||
filename,
|
||||
buffer_size=_DEFAULT_BUFFER_SIZE,
|
||||
print_progress=False,
|
||||
download_limit=None
|
||||
):
|
||||
""" Run the download, show progress """
|
||||
download_limit = download_limit or _DEFAULT_DOWNLOAD_LIMIT
|
||||
log("TRACE", "Downloading {} to {}".format(images_url, filename))
|
||||
try:
|
||||
resp = requests.get(images_url, stream=True, proxies=_PROXIES,
|
||||
headers={'User-Agent': 'UHD Images Downloader'})
|
||||
except TypeError:
|
||||
# requests library versions pre-4c3b9df6091b65d8c72763222bd5fdefb7231149
|
||||
# (Dec.'12) workaround
|
||||
resp = requests.get(images_url, prefetch=False, proxies=_PROXIES,
|
||||
headers={'User-Agent': 'UHD Images Downloader'})
|
||||
if resp.status_code != 200:
|
||||
raise RuntimeError("URL does not exist: {}".format(images_url))
|
||||
filesize = float(resp.headers['content-length'])
|
||||
if filesize > download_limit:
|
||||
if not ask_permission(
|
||||
"The file size for this target ({:.1f} MiB) exceeds the "
|
||||
"download limit ({:.1f} MiB). Continue downloading?".format(
|
||||
filesize/1024**2, download_limit/1024**2)):
|
||||
return 0, 0, ""
|
||||
filesize_dl = 0
|
||||
base_filename = os.path.basename(filename)
|
||||
if print_progress and not sys.stdout.isatty():
|
||||
print_progress = False
|
||||
log("INFO", "Downloading {}, total size: {} kB".format(
|
||||
base_filename, filesize/1000))
|
||||
with open(filename, "wb") as temp_file:
|
||||
sha256_sum = hashlib.sha256()
|
||||
for buff in resp.iter_content(chunk_size=buffer_size):
|
||||
if buff:
|
||||
temp_file.write(buff)
|
||||
filesize_dl += len(buff)
|
||||
sha256_sum.update(buff)
|
||||
if print_progress:
|
||||
status = r"%05d kB / %05d kB (%03d%%) %s" % (
|
||||
int(math.ceil(filesize_dl / 1000.)), int(math.ceil(filesize / 1000.)),
|
||||
int(math.ceil(filesize_dl * 100.) / filesize),
|
||||
base_filename)
|
||||
if os.name == "nt":
|
||||
status += chr(8) * (len(status) + 1)
|
||||
else:
|
||||
sys.stdout.write("\x1b[2K\r") # Clear previous line
|
||||
sys.stdout.write(status)
|
||||
sys.stdout.flush()
|
||||
if print_progress:
|
||||
print('')
|
||||
return filesize, filesize_dl, sha256_sum.hexdigest()
|
||||
|
||||
|
||||
def delete_from_inv(target_info, inventory, images_dir):
|
||||
"""
|
||||
Uses the inventory to delete the contents of the archive file specified by in `target_info`
|
||||
"""
|
||||
target = inventory.get(target_info.get("target"), {})
|
||||
target_name = target.get("target")
|
||||
log("TRACE", "Removing contents of {} from inventory ({})".format(
|
||||
target, target.get("contents", [])))
|
||||
dirs_to_delete = []
|
||||
# Delete all of the files
|
||||
for image_fn in target.get("contents", []):
|
||||
image_path = os.path.join(images_dir, image_fn)
|
||||
if os.path.isfile(image_path):
|
||||
os.remove(image_path)
|
||||
log("TRACE", "Deleted {} from inventory".format(image_path))
|
||||
elif os.path.isdir(image_path):
|
||||
dirs_to_delete.append(image_fn)
|
||||
else: # File doesn't exist
|
||||
log("WARN", "File {} in inventory does not exist".format(image_path))
|
||||
# Then delete all of the (empty) directories
|
||||
for dir_path in dirs_to_delete:
|
||||
try:
|
||||
if os.path.isdir(dir_path):
|
||||
os.removedirs(dir_path)
|
||||
except os.error as ex:
|
||||
log("ERROR", "Failed to delete dir: {}".format(ex))
|
||||
inventory.pop(target_name, None)
|
||||
return True
|
||||
|
||||
|
||||
def extract(archive_path, images_dir, test_zip=False):
|
||||
"""
|
||||
Extract the contents of `archive_path` into `images_dir`
|
||||
|
||||
Returns a list of files that were extracted.
|
||||
|
||||
If test_zip is set, it will verify the zip file before extracting.
|
||||
"""
|
||||
log("TRACE", "Attempting to extracted files from {}".format(archive_path))
|
||||
with zipfile.ZipFile(archive_path) as images_zip:
|
||||
# Check that the Zip file is valid, in which case `testzip()` returns
|
||||
# None. If it's bad, that function will return a list of bad files
|
||||
try:
|
||||
if test_zip and images_zip.testzip():
|
||||
log("ERROR", "Could not extract the following invalid Zip file:"
|
||||
" {}".format(archive_path))
|
||||
return []
|
||||
except OSError:
|
||||
log("ERROR", "Could not extract the following invalid Zip file:"
|
||||
" {}".format(archive_path))
|
||||
return []
|
||||
images_zip.extractall(images_dir)
|
||||
archive_namelist = images_zip.namelist()
|
||||
log("TRACE", "Extracted files: {}".format(archive_namelist))
|
||||
return archive_namelist
|
||||
|
||||
|
||||
def update_target(target_info, temp_dir, images_dir, inventory, args):
|
||||
"""
|
||||
Handle the updating of a single target.
|
||||
"""
|
||||
target_name = target_info.get("target")
|
||||
target_sha256 = target_info.get("sha256_hash")
|
||||
filename = target_info.get("filename")
|
||||
temp_path = os.path.join(temp_dir, filename)
|
||||
# Add a trailing slash to make sure that urljoin handles things properly
|
||||
full_url = urljoin(args.base_url+'/', target_info.get("url"))
|
||||
_, downloaded_size, downloaded_sha256 = download(
|
||||
images_url=full_url,
|
||||
filename=temp_path,
|
||||
buffer_size=args.buffer_size,
|
||||
print_progress=(_LOG_LEVEL <= _LOG_LEVELS.get("INFO", 3))
|
||||
)
|
||||
if downloaded_size == 0:
|
||||
log("INFO", "Skipping target: {}".format(target_name))
|
||||
return
|
||||
log("TRACE", "{} successfully downloaded ({} Bytes)"
|
||||
.format(temp_path, downloaded_size))
|
||||
# If the SHA256 in the manifest has the value '0', this is a special case
|
||||
# and we just skip the verification step
|
||||
if target_sha256 == '0':
|
||||
log("DEBUG", "Skipping SHA256 check for {}.".format(full_url))
|
||||
# If the check fails, print an error and don't unzip the file
|
||||
elif downloaded_sha256 != target_sha256:
|
||||
log("ERROR", "Downloaded SHA256 does not match manifest for {}!"
|
||||
.format(full_url))
|
||||
return
|
||||
# Note: this skips the --keep option, so we'll never keep image packages
|
||||
# that fail the SHA256 checksum
|
||||
## Now copy the contents to the final destination (the images directory)
|
||||
delete_from_inv(target_info, inventory, images_dir)
|
||||
if os.path.splitext(temp_path)[1].lower() == '.zip':
|
||||
archive_namelist = extract(
|
||||
temp_path,
|
||||
images_dir,
|
||||
args.test)
|
||||
if args.keep:
|
||||
# If the user wants to keep the downloaded archive,
|
||||
# save it to the images directory and add it to the inventory
|
||||
shutil.copy(temp_path, images_dir)
|
||||
archive_namelist.append(filename)
|
||||
else:
|
||||
archive_namelist = []
|
||||
shutil.copy(temp_path, images_dir)
|
||||
## Update inventory
|
||||
inventory[target_name] = {"repo_hash": target_info.get("repo_hash"),
|
||||
"contents": archive_namelist,
|
||||
"filename": filename}
|
||||
|
||||
|
||||
def main():
|
||||
"""
|
||||
Main function; does whatever the user requested (download or list files).
|
||||
|
||||
Returns True on successful execution.
|
||||
"""
|
||||
args = parse_args()
|
||||
images_dir = get_images_dir(args)
|
||||
log("INFO", "Images destination: {}".format(os.path.abspath(images_dir)))
|
||||
try:
|
||||
manifest = parse_manifest(get_manifest_raw(args))
|
||||
if args.list_targets:
|
||||
print_target_list(
|
||||
manifest,
|
||||
args
|
||||
)
|
||||
return True
|
||||
log("TRACE", "Manifest:\n{}".format(
|
||||
"\n".join("{}".format(item) for item in manifest.items())
|
||||
))
|
||||
|
||||
# Read the inventory into a dictionary we can perform lookups on
|
||||
if os.path.isfile(args.inventory_location):
|
||||
inventory_fn = args.inventory_location
|
||||
else:
|
||||
inventory_fn = os.path.join(images_dir, _INVENTORY_FILENAME)
|
||||
inventory = parse_inventory(inventory_fn=inventory_fn)
|
||||
log("TRACE", "Inventory: {}\n{}".format(
|
||||
os.path.abspath(inventory_fn),
|
||||
"\n".join("{}".format(item) for item in inventory.items())
|
||||
))
|
||||
|
||||
# Determine the URLs to download based on the input regular expressions
|
||||
if not args.types:
|
||||
types_regex_l = [_DEFAULT_TARGET_REGEX]
|
||||
else:
|
||||
types_regex_l = args.types
|
||||
|
||||
log("TRACE", "RegExs for target selection: {}".format(types_regex_l))
|
||||
targets_info = lookup_urls(types_regex_l, manifest, inventory, args.refetch)
|
||||
# Exit early if we don't have anything to download
|
||||
if targets_info:
|
||||
target_urls = [info.get("url") for info in targets_info]
|
||||
log("DEBUG", "URLs to download:\n{}".format(
|
||||
"\n".join("{}".format(item) for item in target_urls)
|
||||
))
|
||||
else:
|
||||
return True
|
||||
|
||||
## Now download all the images archives into a temp directory
|
||||
if args.dry_run:
|
||||
for target_info in targets_info:
|
||||
log("INFO", "[Dry Run] Fetch target: {}".format(
|
||||
target_info.get("filename")))
|
||||
return True
|
||||
with TemporaryDirectory() as temp_dir:
|
||||
for target_info in targets_info:
|
||||
update_target(
|
||||
target_info,
|
||||
temp_dir,
|
||||
images_dir,
|
||||
inventory,
|
||||
args
|
||||
)
|
||||
## Update inventory with all the new content
|
||||
write_inventory(inventory, inventory_fn)
|
||||
|
||||
except Exception as ex:
|
||||
log("ERROR", "Downloader raised an unhandled exception: {ex}\n"
|
||||
"You can run this again with the '--verbose' flag to see more information\n"
|
||||
"If the problem persists, please email the output to: {contact}"
|
||||
.format(contact=_CONTACT, ex=ex))
|
||||
# Again, we wait on Windows systems because if this is executed in a
|
||||
# window, and immediately fails, the user doesn't have a way to see the
|
||||
# error message, and if they're not very savvy, they won't know how to
|
||||
# execute this in a shell.
|
||||
if not _YES and platform.system() == 'Windows':
|
||||
input('Hit Enter to continue.')
|
||||
return False
|
||||
log("INFO", "Images download complete.")
|
||||
return True
|
||||
|
||||
# Placing this near the end of the file so we don't clutter the top
|
||||
_MANIFEST_CONTENTS = """# UHD Image Manifest File
|
||||
# Target hash url SHA256
|
||||
# X300-Series
|
||||
x3xx_x310_fpga_default fpga-fde2a94eb x3xx/fpga-fde2a94eb/x3xx_x310_fpga_default-gfde2a94e.zip ac5bcf4b85773508bdc3b5e882bfa14025a7867b4c1858f5751439919ee6d270
|
||||
x3xx_x300_fpga_default fpga-fde2a94eb x3xx/fpga-fde2a94eb/x3xx_x300_fpga_default-gfde2a94e.zip 2bdfb7851f6b9aebadfe3aa227d93532bd005fcae4b4d88ae74522f903bd4081
|
||||
# Example daughterboard targets (none currently exist)
|
||||
#x3xx_twinrx_cpld_default example_target
|
||||
#dboard_ubx_cpld_default example_target
|
||||
|
||||
# E-Series
|
||||
e3xx_e310_sg1_fpga_default fpga-fde2a94eb e3xx/fpga-fde2a94eb/e3xx_e310_sg1_fpga_default-gfde2a94e.zip ac5f6db65780e944c565977e0bd5085c76d0bcdf246579f13d5da69211590980
|
||||
e3xx_e310_sg3_fpga_default fpga-fde2a94eb e3xx/fpga-fde2a94eb/e3xx_e310_sg3_fpga_default-gfde2a94e.zip 84ddae28d98d02cdeb88b560dc6c1f7280f8d9adcc719bec9774deb7ed6dbb3c
|
||||
e3xx_e320_fpga_default fpga-fde2a94eb e3xx/fpga-fde2a94eb/e3xx_e320_fpga_default-gfde2a94e.zip 95064badda9b93281b01e642faff9577d054883869896899e28293a243d8862c
|
||||
|
||||
# E310 Filesystems
|
||||
e3xx_e310_sdk_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e310_sdk_default-v3.15.0.0.zip 0
|
||||
e3xx_e310_sg1_mender_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e310_sg1_mender_default-v3.15.0.0.zip 0
|
||||
e3xx_e310_sg1_sdimg_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e310_sg1_sdimg_default-v3.15.0.0.zip 0
|
||||
e3xx_e310_sg3_mender_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e310_sg3_mender_default-v3.15.0.0.zip 0
|
||||
e3xx_e310_sg3_sdimg_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e310_sg3_sdimg_default-v3.15.0.0.zip 0
|
||||
|
||||
# E320 Filesystems, etc
|
||||
e3xx_e320_sdk_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e320_sdk_default-v3.15.0.0.zip 0
|
||||
e3xx_e320_mender_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e320_mender_default-v3.15.0.0.zip 0
|
||||
e3xx_e320_sdimg_default meta-ettus-v3.15.0.0 e3xx/meta-ettus-v3.15.0.0/e3xx_e320_sdimg_default-v3.15.0.0.zip 0
|
||||
|
||||
# N300-Series
|
||||
n3xx_n310_fpga_default fpga-fde2a94eb n3xx/fpga-fde2a94eb/n3xx_n310_fpga_default-gfde2a94e.zip 4a45e2d4ec41d34fc550402928248a15488ba7b58d835ef2d4f503556173764a
|
||||
n3xx_n300_fpga_default fpga-fde2a94eb n3xx/fpga-fde2a94eb/n3xx_n300_fpga_default-gfde2a94e.zip 7f1b512756ae225f8caaf20fd22d2e1537ea211b2fd6c4c9ed1330065fb56645
|
||||
n3xx_n320_fpga_default fpga-fde2a94eb n3xx/fpga-fde2a94eb/n3xx_n320_fpga_default-gfde2a94e.zip 4fae9de2ede7ff446da8afb61808868c08ba32f8e3092b802c5d4d7643c7175f
|
||||
n3xx_n310_cpld_default fpga-6bea23d n3xx/fpga-6bea23d/n3xx_n310_cpld_default-g6bea23d.zip ef128dcd265ee8615b673021d4ee84c39357012ffe8b28c8ad7f893f9dcb94cb
|
||||
n3xx_n320_cpld_default fpga-4bc2c6f n3xx/fpga-4bc2c6f/n3xx_n320_cpld_default-g4bc2c6f.zip 6680a9363efc5fa8b5a68beb3dff44f2e314b94e716e3a1751aba0fed1f384da
|
||||
# N3XX Mykonos firmware
|
||||
#n3xx_n310_fw_default fpga-6bea23d n3xx/fpga-6bea23d/n3xx_n310_fw_default-g6bea23d.zip 0
|
||||
# N300-Series Filesystems, etc
|
||||
n3xx_common_sdk_default meta-ettus-v3.15.0.0 n3xx/meta-ettus-v3.15.0.0/n3xx_common_sdk_default-v3.15.0.0.zip 0
|
||||
n3xx_common_mender_default meta-ettus-v3.15.0.0 n3xx/meta-ettus-v3.15.0.0/n3xx_common_mender_default-v3.15.0.0.zip 0
|
||||
n3xx_common_sdimg_default meta-ettus-v3.15.0.0 n3xx/meta-ettus-v3.15.0.0/n3xx_common_sdimg_default-v3.15.0.0.zip 0
|
||||
|
||||
# B200-Series
|
||||
b2xx_b200_fpga_default fpga-fde2a94eb b2xx/fpga-fde2a94eb/b2xx_b200_fpga_default-gfde2a94e.zip 44885476f1bce75657e4dd78ba03830e662a59b6bb612a90e9f8041306deb68e
|
||||
b2xx_b200mini_fpga_default fpga-fde2a94eb b2xx/fpga-fde2a94eb/b2xx_b200mini_fpga_default-gfde2a94e.zip 4318249e394be686e99c58effa162209aa496a039c68ef816f0b2f9247485c12
|
||||
b2xx_b210_fpga_default fpga-fde2a94eb b2xx/fpga-fde2a94eb/b2xx_b210_fpga_default-gfde2a94e.zip 936864ec5e9627f786c3cd3687c761a24a0ff68a99e224fcc2b24cb4d4197dd2
|
||||
b2xx_b205mini_fpga_default fpga-fde2a94eb b2xx/fpga-fde2a94eb/b2xx_b205mini_fpga_default-gfde2a94e.zip cd3dad8c70925c0c79e728716c0ebb36f2145e1cf929409fa77c953637effd70
|
||||
b2xx_common_fw_default uhd-2bdad498 b2xx/uhd-2bdad498/b2xx_common_fw_default-g2bdad498.zip a6a867466448f2f75d9d5d290c57ceb8e1d3219391c9f275824fbeb3e7931732
|
||||
|
||||
# USRP2 Devices
|
||||
usrp2_usrp2_fw_default fpga-6bea23d usrp2/fpga-6bea23d/usrp2_usrp2_fw_default-g6bea23d.zip d523a18318cb6a7637be40484bf03a6f54766410fee2c1a1f72e8971ea9a9cb6
|
||||
usrp2_usrp2_fpga_default fpga-6bea23d usrp2/fpga-6bea23d/usrp2_usrp2_fpga_default-g6bea23d.zip 505c70aedc8cdfbbfe654bcdbe1ce604c376e733a44cdd1351571f61a7f1cb49
|
||||
usrp2_n200_fpga_default fpga-6bea23d usrp2/fpga-6bea23d/usrp2_n200_fpga_default-g6bea23d.zip 833a0098d66c0c502b9c3975d651a79e125133c507f9f4b2c472f9eb96fdaef8
|
||||
usrp2_n200_fw_default fpga-6bea23d usrp2/fpga-6bea23d/usrp2_n200_fw_default-g6bea23d.zip 3eee2a6195caafe814912167fccf2dfc369f706446f8ecee36e97d2c0830116f
|
||||
usrp2_n210_fpga_default fpga-6bea23d usrp2/fpga-6bea23d/usrp2_n210_fpga_default-g6bea23d.zip 5ce68ac539ee6eeb7d04fb3127c1fabcaff442a8edfaaa2f3746590f9df909bd
|
||||
usrp2_n210_fw_default fpga-6bea23d usrp2/fpga-6bea23d/usrp2_n210_fw_default-g6bea23d.zip 3646fcd3fc974d18c621cb10dfe97c4dad6d282036dc63b7379995dfad95fb98
|
||||
n230_n230_fpga_default fpga-fde2a94eb n230/fpga-fde2a94eb/n230_n230_fpga_default-gfde2a94e.zip 5436932bc8a459c6e350885b67f907f7c864edd71c0089f6692636428b3c20a9
|
||||
|
||||
# USRP1 Devices
|
||||
usrp1_usrp1_fpga_default fpga-6bea23d usrp1/fpga-6bea23d/usrp1_usrp1_fpga_default-g6bea23d.zip 03bf72868c900dd0853bf48e2ede91058d579829b0e70c021e51b0e282d1d5be
|
||||
usrp1_b100_fpga_default fpga-6bea23d usrp1/fpga-6bea23d/usrp1_b100_fpga_default-g6bea23d.zip 7f2306f21e17aa3fae3f966d08c6297d6cf42041974f846ca89f0d633ece8769
|
||||
usrp1_b100_fw_default fpga-6bea23d usrp1/fpga-6bea23d/usrp1_b100_fw_default-g6bea23d.zip 867f17fac085535dbcb01c226ce87acf49806de6ed0ae9b214d7c8da86e2a71d
|
||||
|
||||
# Octoclock
|
||||
octoclock_octoclock_fw_default uhd-14000041 octoclock/uhd-14000041/octoclock_octoclock_fw_default-g14000041.zip 8da7f1af8cecb7f6259a237a18c39058ba69a11567fa373cffc9704031a1d053
|
||||
|
||||
# Legacy USB Windows drivers
|
||||
usb_common_windrv_default uhd-14000041 usb/uhd-14000041/usb_common_windrv_default-g14000041.zip 835e94b2bdf2312fd3881a1b78e2ec236c1f42b7a5bd3927f85f73cf5e3a5231
|
||||
"""
|
||||
if __name__ == "__main__":
|
||||
sys.exit(not main())
|
14
docs/open5gs-and-srs-enb-usrp/upf.yaml
Normal file
14
docs/open5gs-and-srs-enb-usrp/upf.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
### For reference, see `/opt/open5gs/etc/orig/open5gs/`
|
||||
upf:
|
||||
pfcp:
|
||||
gtpu:
|
||||
subnet:
|
||||
- addr: 10.45.0.1/16
|
||||
dnn: internet
|
||||
#- addr: cafe::1/64
|
||||
smf:
|
||||
pfcp:
|
||||
- name: smf
|
||||
parameter:
|
||||
max:
|
||||
pool:
|
@@ -5,11 +5,6 @@ services:
|
||||
environment:
|
||||
MONGO_INITDB_DATABASE: open5gs
|
||||
webui:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
dockerfile: Dockerfile.webui
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs-webui:2.2.3
|
||||
restart: on-failure
|
||||
environment:
|
||||
@@ -17,70 +12,28 @@ services:
|
||||
ports:
|
||||
- 3000:3000
|
||||
nrf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-nrfd
|
||||
restart : on-failure
|
||||
nssf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-nssfd
|
||||
restart : on-failure
|
||||
amf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-amfd
|
||||
restart : on-failure
|
||||
smf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-smfd
|
||||
restart : on-failure
|
||||
mme:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-mmed
|
||||
restart: on-failure
|
||||
ports:
|
||||
- 36412:36412
|
||||
#/sctp
|
||||
sgwc:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-sgwcd
|
||||
restart : on-failure
|
||||
sgwu:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-sgwud
|
||||
restart : on-failure
|
||||
upf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: ["open5gs-upfd"]
|
||||
cap_add:
|
||||
@@ -90,58 +43,22 @@ services:
|
||||
ports:
|
||||
- 2152:2152
|
||||
pcrf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: ["open5gs-pcrfd"]
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
hss:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-hssd
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
udr:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
restart: on-failure
|
||||
command:
|
||||
- open5gs-udrd
|
||||
udm:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
restart: on-failure
|
||||
command:
|
||||
- open5gs-udmd
|
||||
ausf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-ausfd
|
||||
restart : on-failure
|
||||
pcf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.2.3
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-pcfd
|
||||
restart : on-failure
|
||||
portainer:
|
||||
image: portainer/portainer-ce
|
||||
ports:
|
||||
- 9000:9000
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
|
||||
|
@@ -7,5 +7,5 @@ KI=465B5CE8B199B49FAA5F0A2EE238A6BC
|
||||
OPC=E8ED289DEBA952E4283B54E88E6183CA
|
||||
|
||||
for IMSI in $IMSI_LIST; do
|
||||
docker exec $CONTAINER_NAME mongo --eval "db.subscribers.update({\"imsi\" : \"$IMSI\"}, { \$setOnInsert: { \"imsi\" : \"$IMSI\", \"subscribed_rau_tau_timer\" : NumberInt(12), \"network_access_mode\" : NumberInt(2), \"subscriber_status\" : NumberInt(0), \"access_restriction_data\" : NumberInt(32), \"slice\" : [ { \"sst\": NumberInt(1), \"default_indicator\": true, \"session\": [{ \"name\": \"internet\", \"type\": NumberInt(3), \"pcc_rule\": [], \"ambr\": {\"uplink\": {\"value\": NumberInt(1), \"unit\": NumberInt(0)}, \"downlink\": {\"value\": NumberInt(1), \"unit\": NumberInt(0) } }, \"qos\": { \"index\": NumberInt(9), \"arp\": {\"priority_level\": NumberInt(8), \"pre_emption_capability\": NumberInt(1), \"pre_emption_vulnerability\": NumberInt(1)} } } ] } ], \"ambr\": {\"uplink\": {\"value\": NumberInt(1), \"unit\": NumberInt(0)}, \"downlink\": {\"value\": NumberInt(1), \"unit\": NumberInt(0) } }, \"security\" : { \"k\" : \"$KI\", \"amf\" : \"8000\", \"op\" : null, \"opc\" : \"$OPC\" }, \"__v\" : 0 } }, upsert=true);" open5gs
|
||||
docker exec $CONTAINER_NAME mongo --eval "db.subscribers.update({\"imsi\" : \"$IMSI\"}, { \$setOnInsert: {\"imsi\" : \"$IMSI\",\"subscribed_rau_tau_timer\": NumberInt(12),\"network_access_mode\": NumberInt(2),\"subscriber_status\": NumberInt(0),\"access_restriction_data\": NumberInt(32),\"slice\":[{\"sst\": NumberInt(1),\"default_indicator\":true,\"session\":[{\"name\":\"internet\",\"type\":NumberInt(3),\"pcc_rule\":[],\"ambr\":{\"uplink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)},\"downlink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)}},\"qos\":{\"index\":NumberInt(9),\"arp\":{\"priority_level\":NumberInt(8),\"pre_emption_capability\":NumberInt(1),\"pre_emption_vulnerability\":NumberInt(1)}}}]}],\"ambr\":{\"uplink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)},\"downlink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)}},\"security\":{\"k\":\"$KI\",\"amf\":\"8000\",\"op\":null,\"opc\":\"$OPC\"}}}, upsert=true);" open5gs
|
||||
done
|
||||
|
@@ -1,10 +1,7 @@
|
||||
version: '3'
|
||||
services:
|
||||
gnb1:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: gnb1
|
||||
command:
|
||||
- gnb
|
||||
@@ -12,10 +9,7 @@ services:
|
||||
AMF_HOSTNAME: amf
|
||||
GNB_HOSTNAME: gnb1
|
||||
ue1:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue1
|
||||
command:
|
||||
- ue
|
||||
|
@@ -1,10 +1,7 @@
|
||||
version: '3'
|
||||
services:
|
||||
gnb1:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: gnb1
|
||||
command:
|
||||
- gnb
|
||||
@@ -12,10 +9,7 @@ services:
|
||||
AMF_HOSTNAME: amf
|
||||
GNB_HOSTNAME: gnb1
|
||||
ue1:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue1
|
||||
command:
|
||||
- ue
|
||||
@@ -30,10 +24,7 @@ services:
|
||||
OP_TYPE: OPC
|
||||
OP: 'E8ED289DEBA952E4283B54E88E6183CA'
|
||||
ue2:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue2
|
||||
command:
|
||||
- ue
|
||||
@@ -48,10 +39,7 @@ services:
|
||||
OP_TYPE: OPC
|
||||
OP: 'E8ED289DEBA952E4283B54E88E6183CA'
|
||||
ue3:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue3
|
||||
command:
|
||||
- ue
|
||||
@@ -66,10 +54,7 @@ services:
|
||||
OP_TYPE: OPC
|
||||
OP: 'E8ED289DEBA952E4283B54E88E6183CA'
|
||||
ue4:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue4
|
||||
command:
|
||||
- ue
|
||||
|
@@ -1,10 +1,7 @@
|
||||
version: '3'
|
||||
services:
|
||||
gnb1:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: gnb1
|
||||
command:
|
||||
- gnb
|
||||
@@ -12,10 +9,7 @@ services:
|
||||
AMF_HOSTNAME: amf
|
||||
GNB_HOSTNAME: gnb1
|
||||
gnb2:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: gnb2
|
||||
command:
|
||||
- gnb
|
||||
@@ -23,10 +17,7 @@ services:
|
||||
AMF_HOSTNAME: amf
|
||||
GNB_HOSTNAME: gnb2
|
||||
ue1:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue1
|
||||
command:
|
||||
- ue
|
||||
@@ -41,10 +32,7 @@ services:
|
||||
OP_TYPE: OPC
|
||||
OP: 'E8ED289DEBA952E4283B54E88E6183CA'
|
||||
ue2:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue2
|
||||
command:
|
||||
- ue
|
||||
@@ -59,10 +47,7 @@ services:
|
||||
OP_TYPE: OPC
|
||||
OP: 'E8ED289DEBA952E4283B54E88E6183CA'
|
||||
ue3:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue3
|
||||
command:
|
||||
- ue
|
||||
@@ -77,10 +62,7 @@ services:
|
||||
OP_TYPE: OPC
|
||||
OP: 'E8ED289DEBA952E4283B54E88E6183CA'
|
||||
ue4:
|
||||
build:
|
||||
context: ../../ueransim/
|
||||
dockerfile: Dockerfile
|
||||
image: openverso/ueransim:3.1.0
|
||||
image: openverso/ueransim:3.1.6
|
||||
container_name: ue4
|
||||
command:
|
||||
- ue
|
||||
|
@@ -1,4 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
docker-compose exec upf iptables -t nat -A POSTROUTING -s 10.45.0.0/16 ! -o ogstun -j MASQUERADE;
|
||||
#docker-compose exec ue ip route replace default via 10.45.0.1
|
@@ -4,136 +4,75 @@ services:
|
||||
image: mongo
|
||||
environment:
|
||||
MONGO_INITDB_DATABASE: open5gs
|
||||
webui:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
dockerfile: Dockerfile.webui
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs-webui:2.1.7
|
||||
restart: on-failure
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
ports:
|
||||
- 3000:3000
|
||||
nrf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: open5gs-nrfd
|
||||
restart : on-failure
|
||||
amf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-amfd
|
||||
restart : on-failure
|
||||
ausf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-ausfd
|
||||
restart : on-failure
|
||||
nrf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-nrfd
|
||||
restart : on-failure
|
||||
ports:
|
||||
- 7777:7777
|
||||
nssf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-nssfd
|
||||
restart : on-failure
|
||||
pcf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-pcfd
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart : on-failure
|
||||
pcrf:
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: ["open5gs-pcrfd"]
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
smf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
image: openverso/open5gs:2.2.3
|
||||
command: open5gs-smfd
|
||||
restart : on-failure
|
||||
mme:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: open5gs-mmed
|
||||
udm:
|
||||
image: openverso/open5gs:2.2.3
|
||||
restart: on-failure
|
||||
ports:
|
||||
- 36412:36412
|
||||
#/sctp
|
||||
sgwc:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: open5gs-sgwcd
|
||||
restart : on-failure
|
||||
sgwu:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: open5gs-sgwud
|
||||
restart : on-failure
|
||||
command:
|
||||
- open5gs-udmd
|
||||
udr:
|
||||
image: openverso/open5gs:2.2.3
|
||||
restart: on-failure
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
command:
|
||||
- open5gs-udrd
|
||||
upf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: ["open5gs-upfd"]
|
||||
image: openverso/open5gs:2.2.3
|
||||
command:
|
||||
- open5gs-upfd
|
||||
cap_add:
|
||||
- all
|
||||
privileged: true
|
||||
restart: on-failure
|
||||
ports:
|
||||
- 2152:2152
|
||||
pcrf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: ["open5gs-pcrfd"]
|
||||
webui:
|
||||
image: openverso/open5gs-webui:2.2.3
|
||||
restart: on-failure
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
hss:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command: open5gs-hssd
|
||||
environment:
|
||||
DB_URI: mongodb://mongo/open5gs
|
||||
restart: on-failure
|
||||
udr:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
restart: on-failure
|
||||
command:
|
||||
- open5gs-udrd
|
||||
udm:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
restart: on-failure
|
||||
command:
|
||||
- open5gs-udmd
|
||||
ausf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command:
|
||||
- open5gs-ausfd
|
||||
restart : on-failure
|
||||
pcf:
|
||||
build:
|
||||
context: ../../open5gs/
|
||||
args:
|
||||
version: 2.1.7
|
||||
image: openverso/open5gs:2.1.7
|
||||
command:
|
||||
- open5gs-pcfd
|
||||
restart : on-failure
|
||||
ports:
|
||||
- 3000:3000
|
||||
portainer:
|
||||
image: portainer/portainer-ce
|
||||
ports:
|
||||
- 9000:9000
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
@@ -6,6 +6,8 @@ IMSI_LIST="001010000000001 001010000000002 001010000000003 001010000000004"
|
||||
KI=465B5CE8B199B49FAA5F0A2EE238A6BC
|
||||
OPC=E8ED289DEBA952E4283B54E88E6183CA
|
||||
|
||||
for IMSI in $IMSI_LIST; do
|
||||
docker exec $CONTAINER_NAME mongo --eval "db.subscribers.update({\"imsi\" : \"$IMSI\"}, { \$setOnInsert: { \"imsi\" : \"$IMSI\", \"pdn\" : [ { \"apn\" : \"internet\", \"_id\" : new ObjectId(), \"pcc_rule\" : [ ], \"ambr\" : { \"downlink\" : NumberLong(1024000), \"uplink\" : NumberLong(1024000) }, \"qos\" : { \"qci\" : NumberInt(9), \"arp\" : { \"priority_level\" : NumberInt(8), \"pre_emption_vulnerability\" : NumberInt(1), \"pre_emption_capability\" : NumberInt(0) } }, \"type\" : NumberInt(0) } ], \"ambr\" : { \"downlink\" : NumberLong(1024000), \"uplink\" : NumberLong(1024000) }, \"subscribed_rau_tau_timer\" : NumberInt(12), \"network_access_mode\" : NumberInt(2), \"subscriber_status\" : NumberInt(0), \"access_restriction_data\" : NumberInt(32), \"security\" : { \"k\" : \"$KI\", \"amf\" : \"8000\", \"op\" : null, \"opc\" : \"$OPC\" }, \"__v\" : 0 } }, upsert=true);" open5gs
|
||||
for IMSI in $IMSI_LIST; do
|
||||
docker exec $CONTAINER_NAME mongo --eval "db.subscribers.update({\"imsi\" : \"$IMSI\"}, { \$setOnInsert: {\"imsi\" : \"$IMSI\",\"subscribed_rau_tau_timer\": NumberInt(12),\"network_access_mode\": NumberInt(2),\"subscriber_status\": NumberInt(0),\"access_restriction_data\": NumberInt(32),\"slice\":[{\"sst\": NumberInt(1),\"default_indicator\":true,\"session\":[{\"name\":\"internet\",\"type\":NumberInt(3),\"pcc_rule\":[],\"ambr\":{\"uplink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)},\"downlink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)}},\"qos\":{\"index\":NumberInt(9),\"arp\":{\"priority_level\":NumberInt(8),\"pre_emption_capability\":NumberInt(1),\"pre_emption_vulnerability\":NumberInt(1)}}}]}],\"ambr\":{\"uplink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)},\"downlink\":{\"value\":NumberInt(1),\"unit\":NumberInt(3)}},\"security\":{\"k\":\"$KI\",\"amf\":\"8000\",\"op\":null,\"opc\":\"$OPC\"}}}, upsert=true);" open5gs
|
||||
done
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user