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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
|
Network Working Group B. Hickman
Request for Comments: 3511 Spirent Communications
Category: Informational D. Newman
Network Test
S. Tadjudin
Spirent Communications
T. Martin
GVNW Consulting Inc
April 2003
Benchmarking Methodology for Firewall Performance
Status of this Memo
This memo provides information for the Internet community. It does
not specify an Internet standard of any kind. Distribution of this
memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2003). All Rights Reserved.
Abstract
This document discusses and defines a number of tests that may be
used to describe the performance characteristics of firewalls. In
addition to defining the tests, this document also describes specific
formats for reporting the results of the tests.
This document is a product of the Benchmarking Methodology Working
Group (BMWG) of the Internet Engineering Task Force (IETF).
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2
2. Requirements . . . . . . . . . . . . . . . . . . . . . . . . 2
3. Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
4. Test setup . . . . . . . . . . . . . . . . . . . . . . . . . 3
4.1 Test Considerations. . . . . . . . . . . . . . . . . . . 4
4.2 Virtual Client/Servers . . . . . . . . . . . . . . . . . 4
4.3 Test Traffic Requirements. . . . . . . . . . . . . . . . 5
4.4 DUT/SUT Traffic Flows. . . . . . . . . . . . . . . . . . 5
4.5 Multiple Client/Server Testing . . . . . . . . . . . . . 5
4.6 Network Address Translation (NAT). . . . . . . . . . . . 6
4.7 Rule Sets. . . . . . . . . . . . . . . . . . . . . . . . 6
4.8 Web Caching. . . . . . . . . . . . . . . . . . . . . . . 6
4.9 Authentication . . . . . . . . . . . . . . . . . . . . . 7
Hickman, et al. Informational [Page 1]
^L
RFC 3511 Methodology for Firewall Performance April 2003
4.10 TCP Stack Considerations. . . . . . . . . . . . . . . . 7
5. Benchmarking Tests . . . . . . . . . . . . . . . . . . . . . 7
5.1 IP throughput. . . . . . . . . . . . . . . . . . . . . . 7
5.2 Concurrent TCP Connection Capacity . . . . . . . . . . . 9
5.3 Maximum TCP Connection Establishment Rate. . . . . . . . 12
5.4 Maximum TCP Connection Tear Down Rate. . . . . . . . . . 14
5.5 Denial Of Service Handling . . . . . . . . . . . . . . . 16
5.6 HTTP Transfer Rate . . . . . . . . . . . . . . . . . . . 18
5.7 Maximum HTTP Transaction Rate. . . . . . . . . . . . . . 21
5.8 Illegal Traffic Handling . . . . . . . . . . . . . . . . 23
5.9 IP Fragmentation Handling. . . . . . . . . . . . . . . . 24
5.10 Latency . . . . . . . . . . . . . . . . . . . . . . . . 26
6. References . . . . . . . . . . . . . . . . . . . . . . . . . 29
6.1 Normative References . . . . . . . . . . . . . . . . . . 29
6.2 Informative References . . . . . . . . . . . . . . . . . 30
7. Security Consideration . . . . . . . . . . . . . . . . . . . 30
Appendix A - HyperText Transfer Protocol (HTTP) . . . . . . . . 31
Appendix B - Connection Establishment Time Measurements . . . . 31
Appendix C - Connection Tear Down Time Measurements . . . . . . 32
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . 33
Full Copyright Statement . . . . . . . . . . . . . . . . . . . 34
1. Introduction
This document provides methodologies for the performance benchmarking
of firewalls. It covers four areas: forwarding, connection, latency
and filtering. In addition to defining tests, this document also
describes specific formats for reporting test results.
A previous document, "Benchmarking Terminology for Firewall
Performance" [1], defines many of the terms that are used in this
document. The terminology document SHOULD be consulted before
attempting to make use of this document.
2. Requirements
In this document, the words that are used to define the significance
of each particular requirement are capitalized. These words are:
* "MUST" This word, or the words "REQUIRED" and "SHALL" mean that
the item is an absolute requirement of the specification.
* "SHOULD" This word or the adjective "RECOMMENDED" means that there
may exist valid reasons in particular circumstances to ignore this
item, but the full implications should be understood and the case
carefully weighed before choosing a different course.
Hickman, et al. Informational [Page 2]
^L
RFC 3511 Methodology for Firewall Performance April 2003
* "MAY" This word or the adjective "OPTIONAL" means that this item
is truly optional. One vendor may choose to include the item
because a particular marketplace requires it or because it
enhances the product, for example; another vendor may omit the
same item.
An implementation is not compliant if it fails to satisfy one or more
of the MUST requirements. An implementation that satisfies all the
MUST and all the SHOULD requirements is said to be "unconditionally
compliant"; one that satisfies all the MUST requirements but not all
the SHOULD requirements is said to be "conditionally compliant".
3. Scope
Firewalls can control access between networks. Usually, a firewall
protects a private network from public or shared network(s) to which
it is connected. A firewall can be as simple as a single device that
filters packets or as complex as a group of devices that combine
packet filtering and application-level proxy and network translation
services. This document focuses on benchmarking firewall
performance, wherever possible, independent of implementation.
4. Test Setup
Test configurations defined in this document will be confined to
dual-homed and tri-homed as shown in figure 1 and figure 2
respectively.
Firewalls employing dual-homed configurations connect two networks.
One interface of the firewall is attached to the unprotected network
[1], typically the public network (Internet). The other interface is
connected to the protected network [1], typically the internal LAN.
In the case of dual-homed configurations, servers which are made
accessible to the public (Unprotected) network are attached to the
private (Protected) network.
Hickman, et al. Informational [Page 3]
^L
RFC 3511 Methodology for Firewall Performance April 2003
+----------+ +----------+
| | | +----------+ | | |
| Servers/ |----| | | |------| Servers/ |
| Clients | | | | | | Clients |
| | |-------| DUT/SUT |--------| | |
+----------+ | | | | +----------+
Protected | +----------+ | Unprotected
Network | | Network
Figure 1 (Dual-Homed)
Tri-homed [1] configurations employ a third segment called a
Demilitarized Zone (DMZ). With tri-homed configurations, servers
accessible to the public network are attached to the DMZ. Tri-Homed
configurations offer additional security by separating server(s)
accessible to the public network from internal hosts.
+----------+ +----------+
| | | +----------+ | | |
| Clients |----| | | |------| Servers/ |
| | | | | | | Clients |
+----------+ |-------| DUT/SUT |--------| | |
| | | | +----------+
| +----------+ |
Protected | | | Unprotected
Network | Network
|
-----------------
| DMZ
|
|
+-----------+
| |
| Servers |
| |
+-----------+
Figure 2 (Tri-Homed)
4.1 Test Considerations
4.2 Virtual Clients/Servers
Since firewall testing may involve data sources which emulate
multiple users or hosts, the methodology uses the terms virtual
clients/servers. For these firewall tests, virtual clients/servers
specify application layer entities which may not be associated with a
unique physical interface. For example, four virtual clients may
Hickman, et al. Informational [Page 4]
^L
RFC 3511 Methodology for Firewall Performance April 2003
originate from the same data source [1]. The test report MUST
indicate the number of virtual clients and virtual servers
participating in the test.
4.3 Test Traffic Requirements
While the function of a firewall is to enforce access control
policies, the criteria by which those policies are defined vary
depending on the implementation. Firewalls may use network layer,
transport layer or, in many cases, application-layer criteria to make
access-control decisions.
For the purposes of benchmarking firewall performance, this document
references HTTP 1.1 or higher as the application layer entity. The
methodologies MAY be used as a template for benchmarking with other
applications. Since testing may involve proxy based DUT/SUTs, HTTP
version considerations are discussed in appendix A.
4.4 DUT/SUT Traffic Flows
Since the number of interfaces are not fixed, the traffic flows will
be dependent upon the configuration used in benchmarking the DUT/SUT.
Note that the term "traffic flows" is associated with client-to-
server requests.
For Dual-Homed configurations, there are two unique traffic flows:
Client Server
------ ------
Protected -> Unprotected
Unprotected -> Protected
For Tri-Homed configurations, there are three unique traffic flows:
Client Server
------ ------
Protected -> Unprotected
Protected -> DMZ
Unprotected -> DMZ
4.5 Multiple Client/Server Testing
One or more clients may target multiple servers for a given
application. Each virtual client MUST initiate connections in a
round-robin fashion. For example, if the test consisted of six
virtual clients targeting three servers, the pattern would be as
follows:
Hickman, et al. Informational [Page 5]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Client Target Server (In order of request)
#1 1 2 3 1...
#2 2 3 1 2...
#3 3 1 2 3...
#4 1 2 3 1...
#5 2 3 1 2...
#6 3 1 2 3...
4.6 Network Address Translation (NAT)
Many firewalls implement network address translation (NAT) [1], a
function which translates private internet addresses to public
internet addresses. This involves additional processing on the part
of the DUT/SUT and may impact performance. Therefore, tests SHOULD
be ran with NAT disabled and NAT enabled to determine the performance
differential, if any. The test report MUST indicate whether NAT was
enabled or disabled.
4.7 Rule Sets
Rule sets [1] are a collection of access control policies that
determine which packets the DUT/SUT will forward and which it will
reject [1]. Since criteria by which these access control policies
may be defined will vary depending on the capabilities of the
DUT/SUT, the following is limited to providing guidelines for
configuring rule sets when benchmarking the performance of the
DUT/SUT.
It is RECOMMENDED that a rule be entered for each host (Virtual
client). In addition, testing SHOULD be performed using different
size rule sets to determine its impact on the performance of the
DUT/SUT. Rule sets MUST be configured in a manner, such that, rules
associated with actual test traffic are configured at the end of the
rule set and not at the beginning.
The DUT/SUT SHOULD be configured to deny access to all traffic which
was not previously defined in the rule set. The test report SHOULD
include the DUT/SUT configured rule set(s).
4.8 Web Caching
Some firewalls include caching agents to reduce network load. When
making a request through a caching agent, the caching agent attempts
to service the response from its internal memory. The cache itself
saves responses it receives, such as responses for HTTP GET requests.
Testing SHOULD be performed with any caching agents on the DUT/SUT
disabled.
Hickman, et al. Informational [Page 6]
^L
RFC 3511 Methodology for Firewall Performance April 2003
4.9 Authentication
Access control may involve authentication processes such as user,
client or session authentication. Authentication is usually
performed by devices external to the firewall itself, such as an
authentication server(s) and may add to the latency of the system.
Any authentication processes MUST be included as part of connection
setup process.
4.10 TCP Stack Considerations
Some test instruments allow configuration of one or more TCP stack
parameters, thereby influencing the traffic flows which will be
offered and impacting performance measurements. While this document
does not attempt to specify which TCP parameters should be
configurable, any such TCP parameter(s) MUST be noted in the test
report. In addition, when comparing multiple DUT/SUTs, the same TCP
parameters MUST be used.
5. Benchmarking Tests
5.1 IP Throughput
5.1.1 Objective
To determine the throughput of network-layer data traversing the
DUT/SUT, as defined in RFC 1242 [3]. Note that while RFC 1242 uses
the term frames, which is associated with the link layer, the
procedure uses the term packets, since it is referencing the network
layer.
5.1.2 Setup Parameters
The following parameters MUST be defined:
Packet size - Number of bytes in the IP packet, exclusive of any
link layer header or checksums.
Test Duration - Duration of the test, expressed in seconds.
5.1.3 Procedure
The test instrument MUST offer unicast IP packets to the DUT/SUT at a
constant rate. The test MAY consist of either bi-directional or
unidirectional traffic; for example, an emulated client may offer a
unicast stream of packets to an emulated server, or the test
instrument may simulate a client/server exchange by offering
bidirectional traffic.
Hickman, et al. Informational [Page 7]
^L
RFC 3511 Methodology for Firewall Performance April 2003
This test will employ an iterative search algorithm. Each iteration
will involve the test instrument varying the intended load until the
maximum rate, at which no packet loss occurs, is found. Since
backpressure mechanisms may be employed, resulting in the intended
load and offered load being different, the test SHOULD be performed
in either a packet based or time based manner as described in RFC
2889 [5]. As with RFC 1242, the term packet is used in place of
frame. The duration of the test portion of each trial MUST be at
least 30 seconds.
It is RECOMMENDED to perform the throughput measurements with
different packet sizes. When testing with different packet sizes the
DUT/SUT configuration MUST remain the same.
5.1.4 Measurement
5.1.4.1 Network Layer
Throughput:
Maximum offered load, expressed in either bits per second or
packets per second, at which no packet loss is detected. The bits
to be counted are in the IP packet (header plus payload); other
fields, such as link-layer headers and trailers, MUST NOT be
included in the measurement.
Forwarding Rate:
Forwarding rate, expressed in either bits per second or packets
per second, the device is observed to successfully forward to the
correct destination interface in response to a specified offered
load. The bits to be counted are in the IP packet (header plus
payload); other fields, such as link-layer headers and trailers,
MUST NOT be included in the measurement.
5.1.5 Reporting Format
The test report MUST note the packet size(s), test duration,
throughput and forwarding rate. In addition, the test report MUST
conform to the reporting requirements set in section 4, Test Setup.
If the test involved offering packets which target more than one
segment (Protected, Unprotected or DMZ), the report MUST identify the
results as an aggregate throughput measurement.
The throughput results SHOULD be reported in the format of a table
with a row for each of the tested packet sizes. There SHOULD be
columns for the packet size, the intended load, the offered load,
resultant throughput and forwarding rate for each test.
Hickman, et al. Informational [Page 8]
^L
RFC 3511 Methodology for Firewall Performance April 2003
The intermediate results of the search algorithm MAY be saved in log
file which includes the packet size, test duration and for each
iteration:
- Step Iteration
- Pass/Fail Status
- Total packets offered
- Total packets forwarded
- Intended load
- Offered load (If applicable)
- Forwarding rate
5.2 Concurrent TCP Connection Capacity
5.2.1 Objective
To determine the maximum number of concurrent TCP connections
supported through or with the DUT/SUT, as defined in RFC 2647 [1].
This test is intended to find the maximum number of entries the
DUT/SUT can store in its connection table.
5.2.2 Setup Parameters
The following parameters MUST be defined for all tests:
5.2.2.1 Transport-Layer Setup Parameters
Connection Attempt Rate:
The aggregate rate, expressed in connections per second, at which
TCP connection requests are attempted. The rate SHOULD be set at
or lower than the maximum rate at which the DUT/SUT can accept
connection requests.
Aging Time:
The time, expressed in seconds, the DUT/SUT will keep a connection
in its connection table after receiving a TCP FIN or RST packet.
5.2.2.2 Application-Layer Setup Parameters
Validation Method:
HTTP 1.1 or higher MUST be used for this test for both clients and
servers. The client and server MUST use the same HTTP version.
Object Size:
Defines the number of bytes, excluding any bytes associated with
the HTTP header, to be transferred in response to an HTTP 1.1 or
higher GET request.
Hickman, et al. Informational [Page 9]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.2.3 Procedure
This test will employ an iterative search algorithm to determine the
maximum number of concurrent TCP connections supported through or
with the DUT/SUT.
For each iteration, the aggregate number of concurrent TCP
connections attempted by the virtual client(s) will be varied. The
destination address will be that of the server or that of the NAT
proxy. The aggregate rate will be defined by connection attempt
rate, and will be attempted in a round-robin fashion (See 4.5).
To validate all connections, the virtual client(s) MUST request an
object using an HTTP 1.1 or higher GET request. The requests MUST be
initiated on each connection after all of the TCP connections have
been established.
When testing proxy-based DUT/SUTs, the virtual client(s) MUST request
two objects using HTTP 1.1 or higher GET requests. The first GET
request is required for connection time establishment [1]
measurements as specified in appendix B. The second request is used
for validation as previously mentioned. When comparing proxy and
non-proxy based DUT/SUTs, the test MUST be performed in the same
manner.
Between each iteration, it is RECOMMENDED that the test instrument
issue a TCP RST referencing each connection attempted for the
previous iteration, regardless of whether or not the connection
attempt was successful. The test instrument will wait for aging time
before continuing to the next iteration.
5.2.4 Measurements
5.2.4.1 Application-Layer measurements
Number of objects requested
Number of objects returned
5.2.4.2 Transport-Layer measurements
Maximum concurrent connections:
Total number of TCP connections open for the last successful
iteration performed in the search algorithm.
Minimum connection establishment time:
Lowest TCP connection establishment time measured, as defined in
appendix B.
Hickman, et al. Informational [Page 10]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Maximum connection establishment time:
Highest TCP connection establishment time measured, as defined in
appendix B.
Average connection establishment time:
The mean of all measurements of connection establishment times.
Aggregate connection establishment time:
The total of all measurements of connection establishment times.
5.2.5 Reporting Format
The test report MUST conform to the reporting requirements set in
section 4, Test Setup.
5.2.5.1 Application-Layer Reporting:
The test report MUST note the object size, number of completed
requests and number of completed responses.
The intermediate results of the search algorithm MAY be reported in a
tabular format with a column for each iteration. There SHOULD be
rows for the number of requests attempted, number and percentage
requests completed, number of responses attempted, number and
percentage of responses completed. The table MAY be combined with
the transport-layer reporting, provided that the table identify this
as an application layer measurement.
Version information:
The test report MUST note the version of HTTP client(s) and
server(s).
5.2.5.2 Transport-Layer Reporting:
The test report MUST note the connection attempt rate, aging time,
minimum TCP connection establishment time, maximum TCP connection
establishment time, average connection establishment time, aggregate
connection establishment time and maximum concurrent connections
measured.
The intermediate results of the search algorithm MAY be reported in
the format of a table with a column for each iteration. There SHOULD
be rows for the total number of TCP connections attempted, number and
percentage of TCP connections completed, minimum TCP connection
establishment time, maximum TCP connection establishment time,
average connection establishment time and the aggregate connection
establishment time.
Hickman, et al. Informational [Page 11]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.3 Maximum TCP Connection Establishment Rate
5.3.1 Objective
To determine the maximum TCP connection establishment rate through or
with the DUT/SUT, as defined by RFC 2647 [1]. This test is intended
to find the maximum rate the DUT/SUT can update its connection table.
5.3.2 Setup Parameters
The following parameters MUST be defined for all tests:
5.3.2.1 Transport-Layer Setup Parameters
Number of Connections:
Defines the aggregate number of TCP connections that must be
established.
Aging Time:
The time, expressed in seconds, the DUT/SUT will keep a connection
in it's state table after receiving a TCP FIN or RST packet.
5.3.2.2 Application-Layer Setup Parameters
Validation Method:
HTTP 1.1 or higher MUST be used for this test for both clients and
servers. The client and server MUST use the same HTTP version.
Object Size:
Defines the number of bytes, excluding any bytes associated with
the HTTP header, to be transferred in response to an HTTP 1.1 or
higher GET request.
5.3.3 Procedure
This test will employ an iterative search algorithm to determine the
maximum rate at which the DUT/SUT can accept TCP connection requests.
For each iteration, the aggregate rate at which TCP connection
requests are attempted by the virtual client(s) will be varied. The
destination address will be that of the server or that of the NAT
proxy. The aggregate number of connections, defined by number of
connections, will be attempted in a round-robin fashion (See 4.5).
The same application-layer object transfers required for validation
and establishment time measurements as described in the concurrent
TCP connection capacity test MUST be performed.
Hickman, et al. Informational [Page 12]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Between each iteration, it is RECOMMENDED that the test instrument
issue a TCP RST referencing each connection attempted for the
previous iteration, regardless of whether or not the connection
attempt was successful. The test instrument will wait for aging time
before continuing to the next iteration.
5.3.4 Measurements
5.3.4.1 Application-Layer measurements
Number of objects requested
Number of objects returned
5.3.4.2 Transport-Layer measurements
Highest connection rate:
Highest rate, in connections per second, for which all connections
successfully opened in the search algorithm.
Minimum connection establishment time:
Lowest TCP connection establishment time measured, as defined in
appendix B.
Maximum connection establishment time:
Highest TCP connection establishment time measured, as defined in
appendix B.
Average connection establishment time:
The mean of all measurements of connection establishment times.
Aggregate connection establishment time:
The total of all measurements of connection establishment times.
5.3.5 Reporting Format
The test report MUST conform to the reporting requirements set in
section 4, Test Setup.
5.3.5.1 Application-Layer Reporting:
The test report MUST note object size(s), number of completed
requests and number of completed responses.
The intermediate results of the search algorithm MAY be reported in a
tabular format with a column for each iteration. There SHOULD be
rows for the number of requests attempted, number and percentage
requests completed, number of responses attempted, number and
Hickman, et al. Informational [Page 13]
^L
RFC 3511 Methodology for Firewall Performance April 2003
percentage of responses completed. The table MAY be combined with
the transport-layer reporting, provided that the table identify this
as an application layer measurement.
Version information:
The test report MUST note the version of HTTP client(s) and
server(s).
5.3.5.2 Transport-Layer Reporting:
The test report MUST note the number of connections, aging time,
minimum TCP connection establishment time, maximum TCP connection
establishment time, average connection establishment time, aggregate
connection establishment time and highest connection rate measured.
The intermediate results of the search algorithm MAY be reported in
the format of a table with a column for each iteration. There SHOULD
be rows for the connection attempt rate, total number of TCP
connections attempted, total number of TCP connections completed,
minimum TCP connection establishment time, maximum TCP connection
establishment time, average connection establishment time and the
aggregate connection establishment time.
5.4 Maximum TCP Connection Tear Down Rate
5.4.1 Objective
To determine the maximum TCP connection tear down rate through or
with the DUT/SUT, as defined by RFC 2647 [1].
5.4.2 Setup Parameters
Number of Connections:
Defines the number of TCP connections that will be attempted to be
torn down.
Aging Time:
The time, expressed in seconds, the DUT/SUT will keep a connection
in it's state table after receiving a TCP FIN or RST packet.
Close Method:
Defines method for closing TCP connections. The test MUST be
performed with either a three-way or four-way handshake. In a
four-way handshake, each side sends separate FIN and ACK messages.
In a three-way handshake, one side sends a combined FIN/ACK
message upon receipt of a FIN.
Hickman, et al. Informational [Page 14]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Close Direction:
Defines whether closing of connections are to be initiated from
the client or from the server.
5.4.3 Procedure
This test will employ an iterative search algorithm to determine the
maximum TCP connection tear down rate supported by the DUT/SUT. The
test iterates through different TCP connection tear down rates with a
fixed number of TCP connections.
In the case of proxy based DUT/SUTs, the DUT/SUT will itself receive
the ACK in response to issuing a FIN packet to close its side of the
TCP connection. For validation purposes, the virtual client or
server, whichever is applicable, MAY verify that the DUT/SUT received
the final ACK by re-transmitting the final ACK. A TCP RST should be
received in response to the retransmitted ACK.
Between each iteration, it is RECOMMENDED that the virtual client(s)
or server(s), whichever is applicable, issue a TCP RST referencing
each connection which was attempted to be torn down, regardless of
whether or not the connection tear down attempt was successful. The
test will wait for aging time before continuing to the next
iteration.
5.4.4 Measurements
Highest connection tear down rate:
Highest rate, in connections per second, for which all TCP
connections were successfully torn down in the search algorithm.
The following tear down time [1] measurements MUST only include
connections for which both sides of the connection were successfully
torn down. For example, tear down times for connections which are
left in a FINWAIT-2 [8] state should not be included:
Minimum connection tear down time:
Lowest TCP connection tear down time measured as defined in
appendix C.
Maximum connection tear down time:
Highest TCP connection tear down time measured as defined in
appendix C.
Average connection tear down time:
The mean of all measurements of connection tear down times.
Hickman, et al. Informational [Page 15]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Aggregate connection tear down time:
The total of all measurements of connection tear down times.
5.4.5 Reporting Format
The test report MUST note the number of connections, aging time,
close method, close direction, minimum TCP connection tear down time,
maximum TCP connection tear down time, average TCP connection tear
down time and the aggregate TCP connection tear down time and highest
connection tear down rate measured. In addition, the test report MUST
conform to the reporting requirements set in section 4, Test Setup.
The intermediate results of the search algorithm MAY be reported in
the format of a table with a column for each iteration. There SHOULD
be rows for the number of TCP tear downs attempted, number and
percentage of TCP connection tear downs completed, minimum TCP
connection tear down time, maximum TCP connection tear down time,
average TCP connection tear down time, aggregate TCP connection tear
down time and validation failures, if required.
5.5 Denial Of Service Handling
5.5.1 Objective
To determine the effect of a denial of service attack on a DUT/SUT
TCP connection establishment and/or HTTP transfer rates. The denial
of service handling test MUST be run after obtaining baseline
measurements from sections 5.3 and/or 5.6.
The TCP SYN flood attack exploits TCP's three-way handshake mechanism
by having an attacking source host generate TCP SYN packets with
random source addresses towards a victim host, thereby consuming that
host's resources.
5.5.2 Setup Parameters
Use the same setup parameters as defined in section 5.3.2 or 5.6.2,
depending on whether testing against the baseline TCP connection
establishment rate test or HTTP transfer rate test, respectfully.
In addition, the following setup parameters MUST be defined:
SYN attack rate:
Rate, expressed in packets per second, at which the server(s) or
NAT proxy address is targeted with TCP SYN packets.
Hickman, et al. Informational [Page 16]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.5.3 Procedure
Use the same procedure as defined in section 5.3.3 or 5.6.3,
depending on whether testing against the baseline TCP connection
establishment rate or HTTP transfer rate test, respectfully. In
addition, the test instrument will generate TCP SYN packets targeting
the server(s) IP address or NAT proxy address at a rate defined by
SYN attack rate.
The test instrument originating the TCP SYN attack MUST be attached
to the unprotected network. In addition, the test instrument MUST
not respond to the SYN/ACK packets sent by target server or NAT proxy
in response to the SYN packet.
Some firewalls employ mechanisms to guard against SYN attacks. If
such mechanisms exist on the DUT/SUT, tests SHOULD be run with these
mechanisms enabled and disabled to determine how well the DUT/SUT can
maintain, under such attacks, the baseline connection establishment
rates and HTTP transfer rates determined in section 5.3 and section
5.6, respectively.
5.5.4 Measurements
Perform the same measurements as defined in section 5.3.4 or 5.6.4,
depending on whether testing against the baseline TCP connection
establishment rate test or HTTP transfer rate, respectfully.
In addition, the test instrument SHOULD track TCP SYN packets
associated with the SYN attack which the DUT/SUT forwards on the
protected or DMZ interface(s).
5.5.5 Reporting Format
The test SHOULD use the same reporting format as described in section
5.3.5 or 5.6.5, depending on whether testing against the baseline TCP
connection establishment rate test or HTTP transfer rate,
respectfully.
In addition, the report MUST indicate a denial of service handling
test, SYN attack rate, number of TCP SYN attack packets transmitted
and the number of TCP SYN attack packets forwarded by the DUT/SUT.
The report MUST indicate whether or not the DUT has any SYN attack
mechanisms enabled.
Hickman, et al. Informational [Page 17]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.6 HTTP Transfer Rate
5.6.1 Objective
To determine the transfer rate of HTTP requested object traversing
the DUT/SUT.
5.6.2 Setup Parameters
The following parameters MUST be defined for all tests:
5.6.2.1 Transport-Layer Setup Parameters
Number of connections:
Defines the aggregate number of connections attempted. The number
SHOULD be a multiple of the number of virtual clients
participating in the test.
Close Method:
Defines the method for closing TCP connections. The test MUST be
performed with either a three-way or four-way handshake. In a
four-way handshake, each side sends separate FIN and ACK messages.
In a three-way handshake, one side sends a combined FIN/ACK
message upon receipt of a FIN.
Close Direction:
Defines whether closing of connections are to be initiated from
the client or from the server.
5.6.2.2 Application-Layer Setup Parameters
Session Type:
The virtual clients/servers MUST use HTTP 1.1 or higher. The
client and server MUST use the same HTTP version.
GET requests per connection:
Defines the number of HTTP 1.1 or higher GET requests attempted
per connection.
Object Size:
Defines the number of bytes, excluding any bytes associated with
the HTTP header, to be transferred in response to an HTTP 1.1 or
higher GET request.
Hickman, et al. Informational [Page 18]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.6.3 Procedure
Each HTTP 1.1 or higher virtual client will request one or more
objects from an HTTP 1.1 or higher server using one or more HTTP GET
requests over each connection. The aggregate number of connections
attempted, defined by number of connections, MUST be evenly divided
among all of the participating virtual clients.
If the virtual client(s) make multiple HTTP GET requests per
connection, it MUST request the same object size for each GET
request. Multiple iterations of this test may be run with objects of
different sizes.
5.6.4 Measurements
5.6.4.1 Application-Layer measurements
Average Transfer Rate :
The average transfer rate of the DUT/SUT MUST be measured and
shall be referenced to the requested object(s). The measurement
will start on transmission of the first bit of the first requested
object and end on transmission of the last bit of the last
requested object. The average transfer rate, in bits per second,
will be calculated using the following formula:
OBJECTS * OBJECTSIZE * 8
TRANSFER RATE (bit/s) = --------------------------
DURATION
OBJECTS - Total number of objects successfully transferred across
all connections.
OBJECTSIZE - Object size in bytes
DURATION - Aggregate transfer time based on aforementioned time
references.
5.6.4.2 Measurements at or below the Transport-Layer
The following measurements SHOULD be performed for each connection-
oriented protocol:
Goodput [1]:
Goodput as defined in section 3.17 of RFC 2647. Measurements MUST
only reference the protocol payload, excluding any of the protocol
header. In addition, the test instrument MUST exclude any bits
associated with the connection establishment, connection tear
down, security associations [1] or connection maintenance [1].
Hickman, et al. Informational [Page 19]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Since connection-oriented protocols require that data be
acknowledged, the offered load [4] will be varying. Therefore,
the test instrument should measure the average forwarding rate
over the duration of the test. Measurement should start on
transmission of the first bit of the payload of the first datagram
and end on transmission of the last bit of the payload of the last
datagram.
Number of bytes transferred - Total payload bytes transferred.
Number of Timeouts - Total number of timeout events.
Retransmitted bytes - Total number of retransmitted bytes.
5.6.5 Reporting Format
The test report MUST conform to the reporting requirements set in
section 4, Test Setup.
5.6.5.1 Application-Layer reporting
The test report MUST note number of GET requests per connection and
object size(s).
The transfer rate results SHOULD be reported in tabular form with a
column for each of the object sizes tested. There SHOULD be a row
for the number and percentage of completed requests, number and
percentage of completed responses, and the resultant transfer rate
for each iteration of the test.
Failure analysis:
The test report SHOULD indicate the number and percentage of HTTP
GET request and responses that failed to complete.
Version information:
The test report MUST note the version of HTTP client(s) and
server(s).
5.6.5.2 Transport-Layer and below reporting
The test report MUST note the number of connections, close method,
close direction and the protocol for which the measurement was made.
The results SHOULD be reported in tabular form for each of the HTTP
object sizes tested. There SHOULD be a row for the total bytes
transferred, total timeouts, total retransmitted bytes and and
resultant goodput. Note that total bytes refers to total datagram
payload bytes transferred. The table MAY be combined with the
Hickman, et al. Informational [Page 20]
^L
RFC 3511 Methodology for Firewall Performance April 2003
application layer reporting, provided the table clearly identifies
the protocol for which the measurement was made.
Failure analysis:
The test report SHOULD indicate the number and percentage of
connection establishment failures as well as number and percentage
of TCP tear down failures.
It is RECOMMENDED that the report include a graph to plot the
distribution of both connection establishment failures and connection
tear down failures. The x coordinate SHOULD be the elapsed test
time, the y coordinate SHOULD be the number of failures for a given
sampling period. There SHOULD be two lines on the graph, one for
connection failures and one for tear down failures. The graph MUST
note the sampling period.
5.7 Maximum HTTP Transaction Rate
5.7.1 Objective
Determine the maximum transaction rate the DUT/SUT can sustain. This
test is intended to find the maximum rate at which users can access
objects.
5.7.2 Setup Parameters
5.7.2.1 Transport-Layer Setup Parameters
Close Method:
Defines method for closing TCP connections. The test MUST be
performed with either a three-way or four-way handshake. In a
four-way handshake, each side sends separate FIN and ACK messages.
In a three-way handshake, one side sends a combined FIN/ACK
message upon receipt of a FIN.
Close Direction:
Defines whether closing of connections are to be initiated from
the client or from the server.
5.7.2.2 Application-Layer Setup Parameters
Session Type:
HTTP 1.1 or higher MUST be used for this test. The client and
server MUST use the same HTTP version.
Hickman, et al. Informational [Page 21]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Test Duration:
Time, expressed in seconds, for which the virtual client(s) will
sustain the attempted GET request rate. It is RECOMMENDED that
the duration be at least 30 seconds.
Requests per connection:
Number of object requests per connection.
Object Size:
Defines the number of bytes, excluding any bytes associated with
the HTTP header, to be transferred in response to an HTTP 1.1 or
higher GET request.
5.7.3 Procedure
This test will employ an iterative search algorithm to determine the
maximum transaction rate that the DUT/SUT can sustain.
For each iteration, HTTP 1.1 or higher virtual client(s) will vary
the aggregate GET request rate offered to HTTP 1.1 or higher
server(s). The virtual client(s) will maintain the offered request
rate for the defined test duration.
If the virtual client(s) make multiple HTTP GET requests per
connection, it MUST request the same object size for each GET
request. Multiple tests MAY be performed with different object
sizes.
5.7.4 Measurements
Maximum Transaction Rate:
The maximum rate at which all transactions, that is all
requests/responses cycles, are completed.
Transaction Time:
The test instrument SHOULD measure minimum, maximum and average
transaction times. The transaction time will start when the
virtual client issues the GET request and end when the requesting
virtual client receives the last bit of the requested object.
5.7.5 Reporting Format
The test report MUST conform to the reporting requirements set in
section 4, Test Setup.
Hickman, et al. Informational [Page 22]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.7.5.1 Application-Layer reporting
The test report MUST note the test duration, object size, requests
per connection, minimum transaction time, maximum transaction time,
average transaction time and maximum transaction rate measured
The intermediate results of the search algorithm MAY be reported in a
table format with a column for each iteration. There SHOULD be rows
for the GET request attempt rate, number of requests attempted,
number and percentage of requests completed, number of responses
attempted, number and percentage of responses completed, minimum
transaction time, average transaction time and maximum transaction
time.
Version information:
The test report MUST note the version of HTTP client(s) and
server(s).
5.7.5.2 Transport-Layer
The test report MUST note the close method, close direction, number
of connections established and number of connections torn down.
The intermediate results of the search algorithm MAY be reported in a
table format with a column for each iteration. There SHOULD be rows
for the number of connections attempted, number and percentage of
connections completed, number and percentage of connection tear downs
completed. The table MAY be combined with the application layer
reporting, provided the table identify this as transport layer
measurement.
5.8 Illegal Traffic Handling
5.8.1 Objective
To characterize the behavior of the DUT/SUT when presented with a
combination of both legal and Illegal [1] traffic. Note that Illegal
traffic does not refer to an attack, but traffic which has been
explicitly defined by a rule(s) to drop.
5.8.2 Setup Parameters
Setup parameters will use the same parameters as specified in the
HTTP transfer rate test (Section 5.6.2). In addition, the following
setup parameters MUST be defined:
Hickman, et al. Informational [Page 23]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Illegal traffic percentage:
Percentage of HTTP 1.1 or higher connections which have been
explicitly defined in a rule(s) to drop.
5.8.3 Procedure
Each HTTP 1.1 or higher client will request one or more objects from
an HTTP 1.1 or higher server using one or more HTTP GET requests over
each connection. The aggregate number of connections attempted,
defined by number of connections, MUST be evenly divided among all of
the participating virtual clients.
The virtual client(s) MUST offer the connection requests, both legal
and illegal, in an evenly distributed manner. Many firewalls have
the capability to filter on different traffic criteria (IP addresses,
Port numbers, etc.). Multiple iterations of this test MAY be run
with the DUT/SUT configured to filter on different traffic criteria.
5.8.4 Measurements
The same measurements as defined in HTTP transfer rate test (Section
5.6.4) SHOULD be performed. Any forwarding rate measurements MUST
only include bits which are associated with legal traffic.
5.8.5 Reporting Format
Test reporting format SHOULD be the same as specified in the HTTP
transfer rate test (Section 5.6.5).
In addition, the report MUST note the percentage of illegal HTTP
connections.
Failure analysis:
Test report MUST note the number and percentage of illegal
connections that were allowed by the DUT/SUT.
5.9 IP Fragmentation Handling
5.9.1 Objective
To determine the performance impact when the DUT/SUT is presented
with IP fragmented traffic. IP packets which have been fragmented,
due to crossing a network that supports a smaller MTU (Maximum
Transmission Unit) than the actual IP packet, may require the
firewall to perform re-assembly prior to the rule set being applied.
Hickman, et al. Informational [Page 24]
^L
RFC 3511 Methodology for Firewall Performance April 2003
While IP fragmentation is a common form of attack, either on the
firewall itself or on internal hosts, this test will focus on
determining how the additional processing associated with the re-
assembly of the packets have on the forwarding rate of the DUT/SUT.
RFC 1858 addresses some fragmentation attacks that get around IP
filtering processes used in routers and hosts.
5.9.2 Setup Parameters
The following parameters MUST be defined.
5.9.2.1 Non-Fragmented Traffic Parameters
Setup parameters will be the same as defined in the HTTP transfer
rate test (Sections 5.6.2.1 and 5.6.2.2).
5.9.2.2 Fragmented Traffic Parameters
Packet size:
Number of bytes in the IP/UDP packet, exclusive of link-layer
headers and checksums, prior to fragmentation.
MTU:
Maximum transmission unit, expressed in bytes. For testing
purposes, this MAY be configured to values smaller than the MTU
supported by the link layer.
Intended Load:
Intended load, expressed as percentage of media utilization.
5.9.3 Procedure
Each HTTP 1.1 or higher client will request one or more objects from
an HTTP 1.1 or higher server using one or more HTTP GET requests over
each connection. The aggregate number of connections attempted,
defined by number of connections, MUST be evenly divided among all of
the participating virtual clients. If the virtual client(s) make
multiple HTTP GET requests per connection, it MUST request the same
object size for each GET request.
A test instrument attached to the unprotected side of the network,
will offer a unidirectional stream of unicast fragmented IP/UDP
traffic, targeting a server attached to either the protected or DMZ
segment. The test instrument MUST offer the unidirectional stream
over the duration of the test, that is, duration over which the HTTP
traffic is being offered.
Hickman, et al. Informational [Page 25]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Baseline measurements SHOULD be performed with IP filtering deny
rule(s) to filter fragmented traffic. If the DUT/SUT has logging
capability, the log SHOULD be checked to determine if it contains the
correct information regarding the fragmented traffic.
The test SHOULD be repeated with the DUT/SUT rule set changed to
allow the fragmented traffic through. When running multiple
iterations of the test, it is RECOMMENDED to vary the MTU while
keeping all other parameters constant.
Then setup the DUT/SUT to the policy or rule set the manufacturer
required to be defined to protect against fragmentation attacks and
repeat the measurements outlined in the baseline procedures.
5.9.4 Measurements
Test instrument SHOULD perform the same measurements as defined in
HTTP test (Section 5.6.4).
Transmitted UDP/IP Packets:
Number of UDP packets transmitted by client.
Received UDP/IP Packets:
Number of UDP/IP Packets received by server.
5.9.5 Reporting Format
5.9.5.1 Non-Fragmented Traffic
The test report SHOULD be the same as described in section 5.6.5.
Note that any forwarding rate measurements for the HTTP traffic
excludes any bits associated with the fragmented traffic which may be
forward by the DUT/SUT.
5.9.5.2 Fragmented Traffic
The test report MUST note the packet size, MTU size, intended load,
number of UDP/IP packets transmitted and number of UDP/IP packets
forwarded. The test report SHOULD also note whether or not the
DUT/SUT forwarded the offered UDP/IP traffic fragmented.
5.10 Latency
5.10.1 Objective
To determine the latency of network-layer or application-layer data
traversing the DUT/SUT. RFC 1242 [3] defines latency.
Hickman, et al. Informational [Page 26]
^L
RFC 3511 Methodology for Firewall Performance April 2003
5.10.2 Setup Parameters
The following parameters MUST be defined:
5.10.2.1 Network-layer Measurements
Packet size, expressed as the number of bytes in the IP packet,
exclusive of link-layer headers and checksums.
Intended load, expressed as percentage of media utilization.
Test duration, expressed in seconds.
The test instruments MUST generate packets with unique timestamp
signatures.
5.10.2.2 Application-layer Measurements
Object Size:
Defines the number of bytes, excluding any bytes associated with
the HTTP header, to be transferred in response to an HTTP 1.1 or
higher GET request. The minimum object size supported by the
media SHOULD be used, but other object sizes MAY be used as well.
Connection type:
The test instrument MUST use one HTTP 1.1 or higher connection for
latency measurements.
Number of objects requested.
Number of objects transferred.
Test duration, expressed in seconds.
Test instruments MUST generate packets with unique timestamp
signatures.
5.10.3 Network-layer procedure
A client will offer a unidirectional stream of unicast packets to a
server. The packets MUST use a connectionless protocol like IP or
UDP/IP.
The test instrument MUST offer packets in a steady state. As noted
in the latency discussion in RFC 2544 [2], latency measurements MUST
be taken at the throughput level, that is, at the highest offered
load with zero packet loss. Measurements taken at the throughput
level are the only ones that can legitimately be termed latency.
Hickman, et al. Informational [Page 27]
^L
RFC 3511 Methodology for Firewall Performance April 2003
It is RECOMMENDED that implementers use offered loads not only at the
throughput level, but also at load levels that are less than or
greater than the throughput level. To avoid confusion with existing
terminology, measurements from such tests MUST be labeled as delay
rather than latency.
It is RECOMMENDED to perform the latency measurements with different
packet sizes. When testing with different packet sizes the DUT/SUT
configuration MUST remain the same.
If desired, a step test MAY be used in which offered loads increment
or decrement through a range of load levels.
The duration of the test portion of each trial MUST be at least 30
seconds.
5.10.4 Application layer procedure
An HTTP 1.1 or higher client will request one or more objects from an
HTTP 1.1 or higher server using one or more HTTP GET requests. If
the test instrument makes multiple HTTP GET requests, it MUST request
the same-sized object each time. Multiple iterations of this test
may be performed with objects of different sizes.
Implementers MAY configure the test instrument to run for a fixed
duration. In this case, the test instrument MUST report the number
of objects requested and returned for the duration of the test. For
fixed-duration tests it is RECOMMENDED that the duration be at least
30 seconds.
5.10.5 Measurements
Minimum delay:
The smallest delay incurred by data traversing the DUT/SUT at the
network layer or application layer, as appropriate.
Maximum delay:
The largest delay incurred by data traversing the DUT/SUT at the
network layer or application layer, as appropriate.
Average delay:
The mean of all measurements of delay incurred by data traversing
the DUT/SUT at the network layer or application layer, as
appropriate.
Hickman, et al. Informational [Page 28]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Delay distribution:
A set of histograms of all delay measurements observed for data
traversing the DUT/SUT at the network layer or application layer,
as appropriate.
5.10.6 Network-layer reporting format
The test report MUST note the packet size(s), offered load(s) and
test duration used. In addition, the test report MUST conform to the
reporting requirements set in section 4, Test Setup.
The latency results SHOULD be reported in the format of a table with
a row for each of the tested packet sizes. There SHOULD be columns
for the packet size, the intended rate, the offered rate, and the
resultant latency or delay values for each test.
5.10.7 Application-layer reporting format
The test report MUST note the object size(s) and number of requests
and responses completed. If applicable, the report MUST note the
test duration if a fixed duration was used. In addition, the test
report MUST conform to the reporting requirements set in section 4,
Test Setup.
The latency results SHOULD be reported in the format of a table with
a row for each of the object sizes. There SHOULD be columns for the
object size, the number of completed requests, the number of
completed responses, and the resultant latency or delay values for
each test.
Failure analysis:
The test report SHOULD indicate the number and percentage of HTTP
GET request or responses that failed to complete within the test
duration.
Version information:
The test report MUST note the version of HTTP client and server.
6. References
6.1 Normative References
[1] Newman, D., "Benchmarking Terminology for Firewall Devices", RFC
2647, August 1999.
[2] Bradner, S. and J. McQuaid, "Benchmarking Methodology for
Network Interconnect Devices", RFC 2544, March 1999.
Hickman, et al. Informational [Page 29]
^L
RFC 3511 Methodology for Firewall Performance April 2003
[3] Bradner, S., "Benchmarking Terminology for Network
Interconnection Devices", RFC 1242, July 1991.
[4] Mandeville, R., "Benchmarking Terminology for LAN Switching
Devices", RFC 2285, February 1998.
[5] Mandeville, R. and J. Perser, "Benchmarking Methodology for LAN
Switching Devices", RFC 2889, August 2000.
6.2 Informative References
[6] Fielding, R., Gettys, J., Mogul, J., Frystyk, H., Masinter, L.,
Leach, P. and T. Berners-Lee, "Hypertext Transfer Protocol -
HTTP/1.1", RFC 2616, June 1999.
[7] Clark, D., "IP Datagram Reassembly Algorithm", RFC 815, July
1982.
[8] Postel, J., "Transmission Control Protocol", STD 7, RFC 793,
September 1981.
7. Security Considerations
The primary goal of this document is to provide methodologies in
benchmarking firewall performance. While there is some overlap
between performance and security issues, assessment of firewall
security is outside the scope of this document.
Hickman, et al. Informational [Page 30]
^L
RFC 3511 Methodology for Firewall Performance April 2003
APPENDIX A: HTTP (HyperText Transfer Protocol)
The most common versions of HTTP in use today are HTTP/1.0 and
HTTP/1.1 with the main difference being in regard to persistent
connections. HTTP 1.0, by default, does not support persistent
connections. A separate TCP connection is opened up for each GET
request the client wants to initiate and closed after the requested
object transfer is completed. While some implementations HTTP/1.0
supports persistence through the use of a keep-alive, there is no
official specification for how the keep-alive operates. In addition,
HTTP 1.0 proxies do support persistent connection as they do not
recognize the connection header.
HTTP/1.1, by default, does support persistent connection and is
therefore the version that is referenced in this methodology. Proxy
based DUT/SUTs may monitor the TCP connection and after a timeout,
close the connection if no activity is detected. The duration of
this timeout is not defined in the HTTP/1.1 specification and will
vary between DUT/SUTs. If the DUT/SUT closes inactive connections,
the aging timer on the DUT SHOULD be configured for a duration that
exceeds the test time.
While this document cannot foresee future changes to HTTP and it
impact on the methodologies defined herein, such changes should be
accommodated for so that newer versions of HTTP may be used in
benchmarking firewall performance.
APPENDIX B: Connection Establishment Time Measurements
Some connection oriented protocols, such as TCP, involve an odd
number of messages when establishing a connection. In the case of
proxy based DUT/SUTs, the DUT/SUT will terminate the connection,
setting up a separate connection to the server. Since, in such
cases, the test instrument does not own both sides of the connection,
measurements will be made two different ways. While the following
describes the measurements with reference to TCP, the methodology may
be used with other connection oriented protocols which involve an odd
number of messages.
When testing non-proxy based DUT/SUTs , the establishment time shall
be directly measured and is considered to be from the time the first
bit of the first SYN packet is transmitted by the client to the time
the last bit of the final ACK in the three-way handshake is received
by the target server.
Hickman, et al. Informational [Page 31]
^L
RFC 3511 Methodology for Firewall Performance April 2003
If the DUT/SUT is proxy based, the connection establishment time is
considered to be from the time the first bit of the first SYN packet
is transmitted by the client to the time the client transmits the
first bit of the first acknowledged TCP datagram (t4-t0 in the
following timeline).
t0: Client sends a SYN.
t1: Proxy sends a SYN/ACK.
t2: Client sends the final ACK.
t3: Proxy establishes separate connection with server.
t4: Client sends TCP datagram to server.
*t5: Proxy sends ACK of the datagram to client.
* While t5 is not considered part of the TCP connection
establishment, acknowledgement of t4 must be received for the
connection to be considered successful.
APPENDIX C: Connection Tear Down Time Measurements
While TCP connections are full duplex, tearing down of such
connections are performed in a simplex fashion, that is, FIN segments
are sent by each host/device terminating each side of the TCP
connection.
When making connection tear down times measurements, such
measurements will be made from the perspective of the entity, that
is, virtual client/server initiating the connection tear down
request. In addition, the measurement will be performed in the same
manner, independent of whether or not the DUT/SUT is proxy-based. The
connection tear down will be considered the interval between the
transmission of the first bit of the first TCP FIN packet transmitted
by the virtual client or server, whichever is applicable, requesting
a connection tear down to receipt of the last bit of the
corresponding ACK packet on the same virtual client/server interface.
Hickman, et al. Informational [Page 32]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Authors' Addresses
Brooks Hickman
Spirent Communications
26750 Agoura Road
Calabasas, CA 91302
USA
Phone: + 1 818 676 2412
EMail: brooks.hickman@spirentcom.com
David Newman
Network Test Inc.
31324 Via Colinas, Suite 113
Westlake Village, CA 91362-6761
USA
Phone: + 1 818 889-0011
EMail: dnewman@networktest.com
Saldju Tadjudin
Spirent Communications
26750 Agoura Road
Calabasas, CA 91302
USA
Phone: + 1 818 676 2468
EMail: Saldju.Tadjudin@spirentcom.com
Terry Martin
GVNW Consulting Inc.
8050 SW Warm Springs Road
Tualatin Or. 97062
USA
Phone: + 1 503 612 4422
EMail: tmartin@gvnw.com
Hickman, et al. Informational [Page 33]
^L
RFC 3511 Methodology for Firewall Performance April 2003
Full Copyright Statement
Copyright (C) The Internet Society (2003). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Hickman, et al. Informational [Page 34]
^L
|