Skip to content

Commit

Permalink
modified: README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ShubhamTatvamasi committed Jul 18, 2021
1 parent d63a108 commit cb1e166
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 4 deletions.
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,30 @@ ping 192.168.128.12
```
---

## Work in progress
### iperf3 test

start server:
#### Upload

Start iperf3 server inside AGW:
```bash
iperf3 -s
```

iperf3 -c 192.168.128.12
Upload test from srsue docker container:
```bash
docker exec -it srsue iperf3 -c 192.168.60.142 -t 86400
```
> Change IP to Network attach IP
#### Download

Start iperf3 server inside srsue docker container:
```bash
docker exec -it srsue iperf3 -s
```

Download test from AGW:
```bash
iperf3 -c 192.168.128.12 -t 86400
```
> Change IP to Network attach IP
44 changes: 43 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
image: shubhamtatvamasi/srsran-demo
container_name: srsue
network_mode: host
depends_on:
depends_on:
- srsenb
cap_add:
- NET_ADMIN
Expand All @@ -32,3 +32,45 @@ services:
- --usim.opc=63BFA50EE6523365FF14C1F45F88737D
- --rf.device_name=zmq
- --rf.device_args="tx_port=tcp://*:2001,rx_port=tcp://localhost:2000,id=ue,base_srate=23.04e6"

# srsue2:
# image: shubhamtatvamasi/srsran-demo
# container_name: srsue2
# network_mode: host
# depends_on:
# - srsenb
# cap_add:
# - NET_ADMIN
# - SYS_NICE
# devices:
# - /dev/net/tun
# command:
# - srsue
# - --usim.algo=milenage
# - --usim.k=00112233445566778899aabbccddeef8
# - --usim.imsi=001010123456788
# - --usim.imei=353490069873318
# - --usim.opc=63BFA50EE6523365FF14C1F45F887378
# - --rf.device_name=zmq
# - --rf.device_args="tx_port=tcp://*:2001,rx_port=tcp://localhost:2000,id=ue,base_srate=23.04e6"

# srsue3:
# image: shubhamtatvamasi/srsran-demo
# container_name: srsue3
# network_mode: host
# depends_on:
# - srsenb
# cap_add:
# - NET_ADMIN
# - SYS_NICE
# devices:
# - /dev/net/tun
# command:
# - srsue
# - --usim.algo=milenage
# - --usim.k=00112233445566778899aabbccddeef7
# - --usim.imsi=001010123456787
# - --usim.imei=353490069873317
# - --usim.opc=63BFA50EE6523365FF14C1F45F887377
# - --rf.device_name=zmq
# - --rf.device_args="tx_port=tcp://*:2001,rx_port=tcp://localhost:2000,id=ue,base_srate=23.04e6"
2 changes: 2 additions & 0 deletions subscribers_1625217665717.csv
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
IMSI001010123456789,IMSI001010123456789,00112233445566778899aabbccddeeff,63bfa50ee6523365ff14c1f45f88737d,ACTIVE,default,default
IMSI001010123456788,IMSI001010123456788,00112233445566778899aabbccddeef8,63bfa50ee6523365ff14c1f45f887378,ACTIVE,default,default
IMSI001010123456787,IMSI001010123456787,00112233445566778899aabbccddeef7,63bfa50ee6523365ff14c1f45f887377,ACTIVE,default,default

0 comments on commit cb1e166

Please sign in to comment.