-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ec96a2
commit cf49dff
Showing
17 changed files
with
87 additions
and
320 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
gnb: | ||
config: "../../configs/zmq/gnb_zmq.yaml" | ||
ip: "127.0.0.1" | ||
port: 5000 | ||
|
||
namespaces: | ||
- name: "ue1" | ||
|
||
processes: | ||
- type: "clean" | ||
- type: "tester" # This means attack | ||
config_file: "../../configs/zmq/ue_zmq.conf" | ||
args: "--rrc.sdu_fuzzed_bits 1 --rrc.fuzz_target_message 'rrcSetupRequest'" # this means fuzz bits in the rrc setup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
FROM ubuntu:22.04 | ||
|
||
ENV CONFIG="./configs/zmq/ue_zmq.conf" | ||
ENV ARGS="" | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && apt-get upgrade -y && \ | ||
apt-get install -y \ | ||
cmake \ | ||
make \ | ||
gcc \ | ||
g++ \ | ||
pkg-config \ | ||
libfftw3-dev \ | ||
libmbedtls-dev \ | ||
libsctp-dev \ | ||
libyaml-cpp-dev \ | ||
libgtest-dev \ | ||
libzmq3-dev \ | ||
net-tools \ | ||
libboost-all-dev \ | ||
libconfig++-dev \ | ||
iperf3 \ | ||
git \ | ||
libxcb-cursor0 \ | ||
libgles2-mesa-dev \ | ||
gr-osmosdr \ | ||
python3 \ | ||
python3-pip && \ | ||
pip3 install kivy kivy_garden.graph | ||
|
||
WORKDIR /opt | ||
|
||
RUN git clone https://github.com/oran-testing/soft-t-ue && mkdir -p ./soft-t-ue/build | ||
|
||
WORKDIR /opt/soft-t-ue/build | ||
RUN cmake ../ && \ | ||
make -j$(nproc) && \ | ||
make install && \ | ||
srsran_install_configs.sh user | ||
|
||
WORKDIR /opt/soft-t-ue/ | ||
|
||
CMD /usr/local/bin/srsue "${CONFIG}" "${ARGS}" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.