2025-09-10 13:36:00 -04:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Run local setup scripts
|
|
|
|
./iptun.sh
|
|
|
|
./srsran_performance.sh
|
|
|
|
|
|
|
|
# Start core container
|
|
|
|
docker start core
|
|
|
|
|
|
|
|
# Run commands inside core container
|
|
|
|
docker exec -d core bash -c "
|
|
|
|
cd /etc/open5gs && \
|
|
|
|
systemctl start mongod && \
|
|
|
|
./go.sh
|
|
|
|
"
|
|
|
|
|
2025-09-10 15:41:07 -04:00
|
|
|
echo "Starting gnb directly on host..."
|
|
|
|
gnb -c gnbx.yaml
|