-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomnetppReseau.ini
83 lines (70 loc) · 2.45 KB
/
omnetppReseau.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[General]
network = Reseau
parallel-simulation = false
record-eventlog = true
sim-time-limit = 10s
# TCP CONFIGURATION
**.tcpType = "TCP"
**.tcp.advertisedWindow = 65535
**.tcp.delayedAcksEnabled = false
**.tcp.increasedIWEnabled = false
**.tcp.limitedTransmitEnabled = false
**.tcp.mss = 1452
**.tcp.nagleEnabled = true
**.tcp.receiveQueueClass = default
**.tcp.recordStats = true
**.tcp.sackSupport = false
**.tcp.sendQueueClass = default
**.tcp.tcpAlgorithmClass = default
**.tcp.timestampSupport = true
**.tcp.windowScalingSupport = false
# Host1 CONFIGURATION
**.Host1.numTcpApps = 2
**.Host1.tcpApp[*].typename = "TCPBasicClientApp"
**.Host1.tcpApp[*].localAddress = ""
**.Host1.tcpApp[*].localPort = -1
**.Host1.tcpApp[*].connectAddress = "server"
**.Host1.tcpApp[*].connectPort = 80
**.Host1.tcpApp[*].startTime = 0s
**.Host1.tcpApp[*].requestLength = 350B
**.Host1.tcpApp[*].replyLength = 5MiB
**.Host1.tcpApp[*].numRequestsPerSession = 1
**.Host1.tcpApp[*].thinkTime = 3s
**.Host1.tcpApp[*].idleInterval = 2s
**.Host1.tcpApp[*].reconnectInterval = 10s
# Host2 CONFIGURATION
**.Host2.numTcpApps = 1
**.Host2.tcpApp[*].typename = "TCPBasicClientApp"
**.Host2.tcpApp[*].localAddress = ""
**.Host2.tcpApp[*].localPort = -1
**.Host2.tcpApp[*].connectAddress = "server"
**.Host2.tcpApp[*].connectPort = 80
**.Host2.tcpApp[*].startTime = 0s
**.Host2.tcpApp[*].requestLength = 350B
**.Host2.tcpApp[*].replyLength = 10MiB
**.Host2.tcpApp[*].numRequestsPerSession = 1
**.Host2.tcpApp[*].thinkTime = 3s
**.Host2.tcpApp[*].idleInterval = 5s
**.Host2.tcpApp[*].reconnectInterval = 5s
# Server CONFIGURATION
**.server.numTcpApps = 1
**.server.tcpApp[*].typename = "TCPSrvHostApp"
**.server.tcpApp[*].serverThreadClass = "TCPGenericSrvThread"
**.server.tcpApp[*].localAddress = ""
**.server.tcpApp[*].localPort = 80
#**.server.tcpApp[*].replyLength = 10MiB
**.tcpApp[*].dataTransferMode = "object"
**.Host1.ppp[*].queueType = "DropTailQueue"
**.Host1.ppp[*].queue.frameCapacity = 50
**.Host2.ppp[*].queueType = "DropTailQueue"
**.Host2.ppp[*].queue.frameCapacity = 50
**.server.ppp[*].queueType = "DropTailQueue"
**.server.ppp[*].queue.frameCapacity = 50
**.ppp[*].numOutputHooks = 1
**.ppp[*].outputHook[*].typename = "OrdinalBasedDropper"
**.server.ppp[*].outputHook[*].dropsVector = "100;"
# **.iPv4NetworkConfigurator.
**.numPcapRecorders = 1
**Host1.pcapRecorder[*].pcapFile = "Host1Log.pcap"
**Host2.pcapRecorder[*].pcapFile = "Host2Log.pcap"
**server.pcapRecorder[*].pcapFile = "serverLog.pcap"