Skip to content

Instantly share code, notes, and snippets.

View 0x2f0713's full-sized avatar

0x2f0713 0x2f0713

View GitHub Profile
#include <bits/stdc++.h>
#include <cppunit/TestRunner.h>
#include <cppunit/TestResult.h>
#include <cppunit/TestResultCollector.h>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/BriefTestProgressListener.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
std::vector<int> listSquare(int a, int b) {
if(a < 0) a = 0;
@0x2f0713
0x2f0713 / README.md
Last active February 26, 2023 19:06
Tài liệu triển khai 5G SA

5G Standalone Deployment

Repo có 2 image là open5gs (core network) và openairinterface5g (RAN). Source code đã được đóng trong images, là thư mục /open5gs/oai-ran. Không sử dụng câu lệnh pull docker pull 0x2f0713/5g-sa bên phải tài liệu này, pull images theo phần cài đặt phía dưới

Nội dung

  1. Giới thiệu chung
  2. Cài đặt
  3. Cấu hình
  4. Sửa mã nguồn và triển khai

I. Giới thiệu chung

Sơ đồ mạng

@0x2f0713
0x2f0713 / Dockerfile.srsran
Last active March 25, 2023 16:35
Docker build UHD, srsRAN, Open5Gs, Osmo
FROM ubuntu:18.04
ENV DEBIAN_FRONTEND="noninteractive"
# ENV HTTP_PROXY here
RUN sed -i -e 's/archive.ubuntu.com/vn.archive.ubuntu.com/g' /etc/apt/sources.list && \
sed -i -e 's/security.ubuntu.com/vn.archive.ubuntu.com/g' /etc/apt/sources.list && \
apt-get update && \
apt-get install -y \