Commit 117bac57 authored by Yann Garcia's avatar Yann Garcia
Browse files

Enhance clause 5.3.2.4.2.5

parent a8678499
Loading
Loading
Loading
Loading
+28 −34
Original line number Diff line number Diff line
@@ -358,7 +358,7 @@ PING 192.168.4.1 (192.168.4.1) 56(84) bytes of data.
64 bytes from 192.168.4.1: icmp_seq=10 ttl=31 time=23.4 ms
```

The RTT shall be between 10 to 20 milliseconds. when the trafficnis going through the emulated network.
The RTT shall be between 13 to 20 milliseconds. when the trafficnis going through the emulated network.

###### 5.3.2.3.2.2 Focused on mixing Simu5G/SimuLTE 

@@ -520,7 +520,12 @@ monaco-harbor/
├── omnetpp.ini                        OMNeT++ simulation config (future Simu5G step)
├── Makefile                           Build rules
├── ned/                               NED topology files
├── sumo/
├── headers/                           Header files
├── src/                               Source files
├── routing/                           Routing files
├── outputs/                           iperf3 output files
├── results/                           Simulation results
├── sumo/                              SUMO support
│   ├── README.md                      ← Full SUMO usage guide
│   ├── monaco-harbor.sumocfg          SUMO configuration
│   ├── monaco-harbor.net.xml          Real OSM network (1 796 edges)
@@ -710,40 +715,29 @@ To verify the traffic simulation the following procedures can be used:
4. Verify that the packet loss is 0%;
5. Verify that the jitter is 0%.

<mark>
Currently, we are blocked her with the following error:
The first step is to start the iperf3 server on the server side. The following command can be used to start the iperf3 server:
```bash
$ sudo ip netns exec ns_srv iperf3 --serer --bind 192.168.20.2 --logfile ./outputs/iperf3_srv_5g.log
```

The second step is to verify that the traffic is flowing through the vehicle side to the server side. The following command can be used to start the iperf3 client:
```bash
$ sudo ip netns exec ns_car iperf3 --client 192.168.20.2 --udp --bandwidth 10M --time 240 --interval 5 --logfile ./outputs/iperf3_car.log
```

The third step is to verify that the traffic is flowing through the pedestrian side to the server side. The following command can be used to start the iperf3 client:
```bash
$ sudo ip netns exec ns_ped iperf3 --client 192.168.20.2 --udp --bandwidth 2M --time 240 --interval 5 --logfile ./outputs/iperf3_ped.log
```

The fourth step is to verify that the traffic is flowing through the RSU side to the server side. The following command can be used to start the iperf3 client:
```bash
<!> Error: Failed to find address prefix (using 10.2.0.0 with specified bits 255.255.255.0) and netmask (length from 24 bits to 24 bits) for interface MonacoHarbor.rsu.eth0 and 0 other interface(s). Please refine your parameters and try again! -- in module (inet::Ipv4NetworkConfigurator) MonacoHarbor.configurator (id=5), during network initialization
terminate called after throwing an instance of 'omnetpp::cRuntimeError'
  what():  No such gate or gate vector: 'upperLayerOut'
Stack trace (most recent call last):
#22   Object "", at 0xffffffffffffffff, in 
#21   Object "", at 0x648f24f097f4, in 
#20   Object "", at 0x7648b4429e3f, in 
#19   Object "", at 0x7648b4429d8f, in 
#18   Object "", at 0x7648b59ba582, in 
#17   Object "", at 0x7648b59b9377, in 
#16   Object "", at 0x7648b59bf2d0, in 
#15   Object "", at 0x7648b59c1d62, in 
#14   Object "", at 0x7648b5a30bc6, in 
#13   Object "", at 0x7648b52d2f15, in 
#12   Object "", at 0x7648b52991fb, in 
#11   Object "", at 0x7648b5299469, in 
#10   Object "", at 0x7648b52991fb, in 
#9    Object "", at 0x7648b529998b, in 
#8    Object "", at 0x7648adbb0dbd, in 
#7    Object "", at 0x7648adbb0d80, in 
#6    Object "", at 0x7648ada284ea, in 
#5    Object "", at 0x7648b48ae276, in 
#4    Object "", at 0x7648b48ae20b, in 
#3    Object "", at 0x7648b48a2b9d, in 
#2    Object "", at 0x7648b44287f2, in 
#1    Object "", at 0x7648b4442475, in 
#0    Object "", at 0x7648b44969fc, in 
Aborted (Signal sent by tkill() 323438 1000)
scripts/run_omnetpp.sh: line 65: 323438 Aborted                 (core dumped) opp_run -l "$INET_LIB/INET" -l "$SIMU5G_LIB/simu5g" -u "$(echo "$UI" | awk '{print toupper(substr($0,1,1)) tolower(substr($0,2))}')" --record-eventlog=true --sim-time-limit=1200s -c General -n "$NED_PATH" omnetpp.ini
make: *** [Makefile:59: run] Error 134
$ sudo ip netns exec ns_rsu iperf3 --client 192.168.20.2 --udp --bandwidth 20M --time 240 --interval 5 --logfile ./outputs/iperf3_rsu.log
```

<mark>
The fourth step does not work. Using ping command, the interface 192.168.20.1 is not reachable.
The concern is that the WiFI attachment could not be done !?
</mark>

###### 5.3.2.4.2.6 Round5: Adding LTE POA into the project
+218 KiB
Loading image diff...
+321 KiB
Loading image diff...