Skip to content

Instantly share code, notes, and snippets.

@tasinet
Last active August 29, 2015 14:10
Show Gist options
  • Save tasinet/9cfe55909393a9ebb9c8 to your computer and use it in GitHub Desktop.
Save tasinet/9cfe55909393a9ebb9c8 to your computer and use it in GitHub Desktop.
Node - http.request - KeepAlive test: traffic results (wireshark)

// test.js at https://gist.github.com/tasinet/3ad091af55c659e5bd49

// makes 100 (serial) connections to https://registry.npmjs.org using (node::)http.request(), after changing the globalAgent.maxSocket (Default: 5).

// spoilers:

 maxSocket               1              default
 exeecution time         1.97 s.        13 s. 
 TCP conns               2              100
 UDP conns               6              300

npm install doesn't do KeepAlive either. Find a way to make request (the node_module) enforce that?

maxSocket override = 1

$ time node test.js -mS1
maxSockets:  1
100 200 '{"db_name":"registry","doc_count":116157,"doc_del_count":378,"update_seq":298338,"purge_seq":0,"compact_running":false,"disk_size":826540155,"data_size":418692798,"instance_start_time":"1413839494464820","disk_format_version":6,"committed_update_seq":298338}\n'
----8<----
( 98 200s as expected)
----8<----
1 200 '{"db_name":"registry","doc_count":116157,"doc_del_count":378,"update_seq":298338,"purge_seq":0,"compact_running":false,"disk_size":826540155,"data_size":418692798,"instance_start_time":"1413839494464820","disk_format_version":6,"committed_update_seq":298338}\n'

real   0m1.977s
user   0m0.336s
sys    0m0.032s

Wireshark "Conversations" summary for session (wireshark)

filtered as: get the $IP (dns.qry.name == "registry.npmjs.org" && dns.flags.response==1) then use it in: (!icmp && dns.qry.name == "registry.npmjs.org") || ( ip.dst == $IP || ip.src == $IP )

TCP (2) UDP (6)

TCP
"Address A","Port A","Address B","Port B","Packets","Bytes","Packets A→B","Bytes A→B","Packets A←B","Bytes A←B","Rel Start","Duration","bps A→B","bps A←B"
"192.168.1.104","41997","185.31.18.162","https","174","58394","61","9483","113","48911","0.010974000","1.3487","56248.51","290116.10"
"192.168.1.104","41998","185.31.18.162","https","167","56320","59","9114","108","47206","1.366230000","0.5126","142249.83","736783.58"

UDP
"Address A","Port A","Address B","Port B","Packets","Bytes","Packets A→B","Bytes A→B","Packets A←B","Bytes A←B","Rel Start","Duration","bps A→B","bps A←B"
"192.168.1.104","25627","192.168.1.254","domain","4","312","2","156","2","156","0.000000000","0.0038","327129.75","327129.75"
"192.168.1.104","64614","192.168.1.254","domain","2","156","1","78","1","78","0.003983000","0.0015","N/A","N/A"
"192.168.1.104","51857","192.168.1.254","domain","2","172","1","78","1","94","0.009022000","0.0014","N/A","N/A"
"192.168.1.104","22263","192.168.1.254","domain","4","312","2","156","2","156","1.353227000","0.0040","308224.25","308224.25"
"192.168.1.104","25605","192.168.1.254","domain","2","156","1","78","1","78","1.357435000","0.0032","N/A","N/A"
"192.168.1.104","4339","192.168.1.254","domain","2","172","1","78","1","94","1.364502000","0.0014","N/A","N/A"

Default - maxSocket = 5 (default globalAgent)

Watch this with wireshark:

$ time node test.js
maxSockets:  5
100 200 '{"db_name":"registry","doc_count":116157,"doc_del_count":378,"update_seq":495567,"purge_seq":0,"compact_running":false,"disk_size":834711675,"data_size":418686087,"instance_start_time":"1414070394956022","disk_format_version":6,"committed_update_seq":495567}\n'
       ----8<----
   ( 98 200s as expected)
       ----8<----
1 200 '{"db_name":"registry","doc_count":116157,"doc_del_count":378,"update_seq":495567,"purge_seq":0,"compact_running":false,"disk_size":834711675,"data_size":418686087,"instance_start_time":"1414070394956022","disk_format_version":6,"committed_update_seq":495567}\n'

real    0m13.008s
user    0m1.292s
sys 0m0.168s

Wireshark "Conversations" summary for session (wireshark)

filtered as: get the $IP (dns.qry.name == "registry.npmjs.org" && dns.flags.response==1) then use it in: (!icmp && dns.qry.name == "registry.npmjs.org") || ( ip.dst == $IP || ip.src == $IP ) that's all dns requests/responses involving the registry, as well as IP data to or from the registry.

TCP (100) UDP (300)

TCP (100) "Address A","Port A","Address B","Port B","Packets","Bytes","Packets A→B","Bytes A→B","Packets A←B","Bytes A←B","Rel Start","Duration","bps A→B","bps A←B"
"192.168.1.104","41892","185.31.18.162","https","23","8088","11","1290","12","6798","0.016107000","0.0688","150093.81","790959.47"
"192.168.1.104","41893","185.31.18.162","https","23","8088","11","1290","12","6798","0.085648000","0.0522","197716.30","1041918.92"
"192.168.1.104","41894","185.31.18.162","https","23","8088","11","1290","12","6798","0.146836000","0.0543","189929.33","1000883.39"
"192.168.1.104","41895","185.31.18.162","https","23","8088","11","1290","12","6798","0.206482000","0.0603","171226.63","902324.50"
"192.168.1.104","41896","185.31.18.162","https","23","8089","11","1290","12","6799","0.272728000","0.0638","161747.88","852499.10"
"192.168.1.104","41897","185.31.18.162","https","23","8088","11","1290","12","6798","0.338947000","0.0513","201040.27","1059435.45"
"192.168.1.104","41898","185.31.18.162","https","23","8088","11","1290","12","6798","0.396003000","0.0519","198874.59","1048022.82"
"192.168.1.104","41899","185.31.18.162","https","23","8088","11","1290","12","6798","0.452560000","0.0463","222884.54","1174549.70"
"192.168.1.104","41900","185.31.18.162","https","23","8088","11","1290","12","6798","0.505826000","0.0487","211970.59","1117035.70"
"192.168.1.104","41901","185.31.18.162","https","23","8088","11","1290","12","6798","0.559374000","0.0534","193251.19","1018388.82"
"192.168.1.104","41902","185.31.18.162","https","23","8088","11","1290","12","6798","0.617592000","0.0576","179095.15","943789.81"
"192.168.1.104","41903","185.31.18.162","https","23","8089","11","1290","12","6799","0.686032000","0.0542","190430.50","1003672.06"
"192.168.1.104","41904","185.31.18.162","https","23","8089","11","1290","12","6799","0.748658000","0.0623","165660.72","873121.87"
"192.168.1.104","41905","185.31.18.162","https","23","8088","11","1290","12","6798","0.814963000","0.0481","214490.58","1130315.50"
"192.168.1.104","41906","185.31.18.162","https","23","8088","11","1290","12","6798","0.872885000","0.0526","196089.61","1033346.63"
"192.168.1.104","41907","185.31.18.162","https","23","8088","11","1290","12","6798","0.935309000","0.0524","196788.83","1037031.39"
"192.168.1.104","41908","185.31.18.162","https","23","8089","11","1290","12","6799","0.993505000","0.0493","209543.15","1104406.09"
"192.168.1.104","41909","185.31.18.162","https","23","8089","11","1290","12","6799","1.047047000","0.0571","180887.61","953375.87"
"192.168.1.104","41910","185.31.18.162","https","23","8088","11","1290","12","6798","1.109087000","0.0500","206420.64","1087788.78"
"192.168.1.104","41911","185.31.18.162","https","23","8088","11","1290","12","6798","1.165448000","0.0472","218653.33","1152252.21"
"192.168.1.104","41912","185.31.18.162","https","23","8088","11","1290","12","6798","1.218900000","0.0464","222409.00","1172043.71"
"192.168.1.104","41913","185.31.18.162","https","26","9217","13","1434","13","7783","1.270632000","0.0571","200836.82","1090036.94"
"192.168.1.104","41914","185.31.18.162","https","23","8088","11","1290","12","6798","1.330281000","0.0446","231545.88","1220192.95"
"192.168.1.104","41915","185.31.18.162","https","25","9151","12","1368","13","7783","1.386006000","0.0556","196866.40","1120037.42"
"192.168.1.104","41916","185.31.18.162","https","23","8089","11","1290","12","6799","1.452808000","0.0499","206996.15","1090982.03"
"192.168.1.104","41917","185.31.18.162","https","23","8088","11","1290","12","6798","1.508633000","0.0480","215017.92","1133094.42"
"192.168.1.104","41918","185.31.18.162","https","23","8089","11","1290","12","6799","1.562004000","0.1726","59791.77","315135.08"
"192.168.1.104","41919","185.31.18.162","https","23","8089","11","1290","12","6799","1.745062000","0.0556","185601.50","978220.60"
"192.168.1.104","41920","185.31.18.162","https","23","8089","11","1290","12","6799","1.809550000","0.0471","219061.77","1154574.40"
"192.168.1.104","41921","185.31.18.162","https","23","8088","11","1290","12","6798","1.860315000","0.0455","226858.06","1195489.22"
"192.168.1.104","41922","185.31.18.162","https","23","8088","11","1290","12","6798","1.922551000","0.0524","197002.96","1038159.78"
"192.168.1.104","41923","185.31.18.162","https","23","8089","11","1290","12","6799","1.983183000","0.0578","178617.79","941412.67"
"192.168.1.104","41924","185.31.18.162","https","23","8089","11","1290","12","6799","2.048641000","0.0504","204644.15","1078585.73"
"192.168.1.104","41925","185.31.18.162","https","25","8232","12","1356","13","6876","2.376775000","0.3135","34600.99","175454.60"
"192.168.1.104","41926","185.31.18.162","https","23","8089","11","1290","12","6799","2.691192000","0.3009","34297.45","180766.18"
"192.168.1.104","41927","185.31.18.162","https","25","8942","12","1368","13","7574","3.007728000","0.3019","36247.77","200687.59"
"192.168.1.104","41928","185.31.18.162","https","25","8942","12","1368","13","7574","3.310571000","0.3129","34976.48","193649.01"
"192.168.1.104","41929","185.31.18.162","https","25","8506","12","1368","13","7138","3.629804000","0.2978","36751.96","191765.73"
"192.168.1.104","41930","185.31.18.162","https","23","8088","11","1290","12","6798","3.939738000","0.2874","35913.77","189257.19"
"192.168.1.104","41931","185.31.18.162","https","23","8088","11","1290","12","6798","4.231324000","0.1645","62745.10","330652.07"
"192.168.1.104","41932","185.31.18.162","https","23","8088","11","1290","12","6798","4.399567000","0.0486","212446.22","1119542.17"
"192.168.1.104","41933","185.31.18.162","https","23","8089","11","1290","12","6799","4.455895000","0.0521","198240.42","1044834.61"
"192.168.1.104","41934","185.31.18.162","https","23","8089","11","1290","12","6799","4.514746000","0.0524","196954.08","1038054.89"
"192.168.1.104","41935","185.31.18.162","https","23","8089","11","1290","12","6799","4.574438000","0.2837","36375.68","191719.60"
"192.168.1.104","41936","185.31.18.162","https","26","9217","13","1434","13","7783","4.862529000","0.2865","40039.51","217313.46"
"192.168.1.104","41937","185.31.18.162","https","23","8089","11","1290","12","6799","5.151882000","0.2743","37623.18","198294.56"
"192.168.1.104","41938","185.31.18.162","https","23","8089","11","1290","12","6799","5.434563000","0.0549","187906.27","990367.98"
"192.168.1.104","41939","185.31.18.162","https","23","8088","11","1290","12","6798","5.739439000","0.0469","219892.61","1158782.92"
"192.168.1.104","41940","185.31.18.162","https","27","10695","13","1446","14","9249","5.799446000","0.2753","42016.26","268747.14"
"192.168.1.104","41941","185.31.18.162","https","23","8089","11","1290","12","6799","6.083079000","0.2826","36513.01","192443.36"
"192.168.1.104","41942","185.31.18.162","https","26","8573","13","1434","13","7139","6.372806000","0.2921","39271.94","195510.70"
"192.168.1.104","41943","185.31.18.162","https","23","8089","11","1290","12","6799","6.669972000","0.0535","192904.41","1016710.91"
"192.168.1.104","41944","185.31.18.162","https","27","10695","13","1446","14","9249","6.732377000","0.2821","41003.83","262271.37"
"192.168.1.104","41945","185.31.18.162","https","27","10695","13","1446","14","9249","7.023362000","0.2905","39827.58","254747.77"
"192.168.1.104","41946","185.31.18.162","https","25","8507","12","1368","13","7139","7.318068000","0.2870","38136.39","199017.32"
"192.168.1.104","41947","185.31.18.162","https","23","8089","11","1290","12","6799","7.609819000","0.1760","58635.36","309040.19"
"192.168.1.104","41948","185.31.18.162","https","23","8089","11","1290","12","6799","7.815449000","0.0914","112867.06","594870.67"
"192.168.1.104","41949","185.31.18.162","https","23","8089","11","1290","12","6799","7.930280000","0.0768","134327.78","707980.27"
"192.168.1.104","41950","185.31.18.162","https","23","8088","11","1290","12","6798","8.055916000","0.0698","147925.18","779531.28"
"192.168.1.104","41951","185.31.18.162","https","23","8088","11","1290","12","6798","8.177765000","0.1291","79919.46","421156.97"
"192.168.1.104","41952","185.31.18.162","https","23","8088","11","1290","12","6798","8.355891000","0.0942","109578.57","577453.57"
"192.168.1.104","41953","185.31.18.162","https","23","8089","11","1290","12","6799","8.465831000","0.1076","95891.17","505398.52"
"192.168.1.104","41954","185.31.18.162","https","23","8088","11","1290","12","6798","8.618117000","0.1080","95563.52","503597.52"
"192.168.1.104","41955","185.31.18.162","https","23","8088","11","1290","12","6798","8.799918000","0.1595","64718.02","341048.91"
"192.168.1.104","41956","185.31.18.162","https","23","8089","11","1290","12","6799","8.974368000","0.1165","88614.12","467044.48"
"192.168.1.104","41957","185.31.18.162","https","23","8089","11","1290","12","6799","9.109223000","0.0762","135360.24","713421.91"
"192.168.1.104","41958","185.31.18.162","https","23","8088","11","1290","12","6798","9.209316000","0.0980","105316.87","554995.41"
"192.168.1.104","41959","185.31.18.162","https","26","8573","13","1434","13","7139","9.329203000","1.0943","10483.00","52188.39"
"192.168.1.104","41960","185.31.18.162","https","23","8088","11","1290","12","6798","10.854760000","0.1172","88045.59","463979.80"
"192.168.1.104","41961","185.31.18.162","https","23","8089","11","1290","12","6799","10.976730000","0.0497","207750.38","1094957.22"
"192.168.1.104","41962","185.31.18.162","https","23","8089","11","1290","12","6799","11.030774000","0.0579","178336.90","939932.26"
"192.168.1.104","41963","185.31.18.162","https","23","8089","11","1290","12","6799","11.094961000","0.0500","206280.36","1087209.42"
"192.168.1.104","41964","185.31.18.162","https","23","8089","11","1290","12","6799","11.150031000","0.0536","192677.51","1015515.02"
"192.168.1.104","41965","185.31.18.162","https","23","8089","11","1290","12","6799","11.207857000","0.0551","187176.93","986523.99"
"192.168.1.104","41966","185.31.18.162","https","23","8088","11","1290","12","6798","11.280968000","0.4932","20923.17","110260.26"
"192.168.1.104","41967","185.31.18.162","https","23","8089","11","1290","12","6799","11.779640000","0.0561","183940.83","969467.96"
"192.168.1.104","41968","185.31.18.162","https","23","8089","11","1290","12","6799","11.845213000","0.0460","224323.44","1182306.27"
"192.168.1.104","41969","185.31.18.162","https","23","8089","11","1290","12","6799","11.896633000","0.0485","212954.75","1122387.07"
"192.168.1.104","41970","185.31.18.162","https","23","8089","11","1290","12","6799","11.952202000","0.0607","169901.71","895474.23"
"192.168.1.104","41971","185.31.18.162","https","23","8089","11","1290","12","6799","12.029662000","0.0786","131316.09","692107.04"
"192.168.1.104","41972","185.31.18.162","https","23","8089","11","1290","12","6799","12.134593000","0.0500","206362.85","1087644.22"
"192.168.1.104","41973","185.31.18.162","https","23","8089","11","1290","12","6799","12.191005000","0.0438","235826.42","1242933.21"
"192.168.1.104","41974","185.31.18.162","https","23","8089","11","1290","12","6799","12.245438000","0.0465","221816.23","1169091.89"
"192.168.1.104","41975","185.31.18.162","https","23","8089","11","1290","12","6799","12.298726000","0.0791","130512.31","687870.70"
"192.168.1.104","41976","185.31.18.162","https","23","8089","11","1290","12","6799","12.390661000","0.0477","216393.03","1140508.69"
"192.168.1.104","41977","185.31.18.162","https","23","8089","11","1290","12","6799","12.443542000","0.0498","207370.49","1092955.03"
"192.168.1.104","41978","185.31.18.162","https","23","8089","11","1290","12","6799","12.498341000","0.0573","180199.06","949746.81"
"192.168.1.104","41979","185.31.18.162","https","23","8089","11","1290","12","6799","12.565372000","0.0505","204413.10","1077367.98"
"192.168.1.104","41980","185.31.18.162","https","23","8088","11","1290","12","6798","12.621585000","0.0510","202479.99","1067022.45"
"192.168.1.104","41981","185.31.18.162","https","23","8088","11","1290","12","6798","12.683413000","0.0440","234305.82","1234737.20"
"192.168.1.104","41982","185.31.18.162","https","23","8089","11","1290","12","6799","12.732534000","0.0543","189890.89","1000828.01"
"192.168.1.104","41983","185.31.18.162","https","23","8089","11","1290","12","6799","12.799917000","0.0389","265098.00","1397210.31"
"192.168.1.104","41984","185.31.18.162","https","23","8089","11","1290","12","6799","12.848853000","0.0538","191814.43","1010966.14"
"192.168.1.104","41985","185.31.18.162","https","23","8089","11","1290","12","6799","12.906395000","0.0488","211345.48","1113905.39"
"192.168.1.104","41986","185.31.18.162","https","23","8088","11","1290","12","6798","12.964351000","0.0477","216411.18","1140436.60"
"192.168.1.104","41987","185.31.18.162","https","23","8089","11","1290","12","6799","13.021774000","0.0921","112064.28","590639.59"
"192.168.1.104","41988","185.31.18.162","https","23","8089","11","1290","12","6799","13.119309000","0.0543","190205.87","1002488.16"
"192.168.1.104","41989","185.31.18.162","https","23","8089","11","1290","12","6799","13.179088000","0.0491","210307.51","1108434.72"
"192.168.1.104","41990","185.31.18.162","https","23","8088","11","1290","12","6798","13.232460000","0.0489","211181.14","1112875.50"
"192.168.1.104","41991","185.31.18.162","https","23","8089","11","1290","12","6799","13.292019000","0.0456","226077.81","1191552.75"

UDP: "Address A","Port A","Address B","Port B","Packets","Bytes","Packets A→B","Bytes A→B","Packets A←B","Bytes A←B","Rel Start","Duration","bps A→B","bps A←B"
"192.168.1.104","56683","192.168.1.254","domain","2","156","1","78","1","78","0.000000000","0.0058","N/A","N/A"
"192.168.1.104","13986","192.168.1.254","domain","2","156","1","78","1","78","0.005987000","0.0024","N/A","N/A"
"192.168.1.104","30179","192.168.1.254","domain","2","172","1","78","1","94","0.014191000","0.0014","N/A","N/A"
"192.168.1.104","27444","192.168.1.254","domain","4","312","2","156","2","156","0.068507000","0.0052","239585.33","239585.33"
"192.168.1.104","6521","192.168.1.254","domain","2","156","1","78","1","78","0.073858000","0.0031","N/A","N/A"
"192.168.1.104","41293","192.168.1.254","domain","2","172","1","78","1","94","0.083510000","0.0017","N/A","N/A"
"192.168.1.104","optohost003","192.168.1.254","domain","4","312","2","156","2","156","0.129121000","0.0056","220884.96","220884.96"
"192.168.1.104","18630","192.168.1.254","domain","2","156","1","78","1","78","0.135115000","0.0033","N/A","N/A"
"192.168.1.104","65488","192.168.1.254","domain","2","172","1","78","1","94","0.145015000","0.0015","N/A","N/A"
"192.168.1.104","61734","192.168.1.254","domain","4","312","2","156","2","156","0.192737000","0.0034","363954.51","363954.51"
"192.168.1.104","sdhelp","192.168.1.254","domain","2","156","1","78","1","78","0.196543000","0.0013","N/A","N/A"
"192.168.1.104","50874","192.168.1.254","domain","2","172","1","78","1","94","0.204572000","0.0015","N/A","N/A"
"192.168.1.104","14314","192.168.1.254","domain","4","312","2","156","2","156","0.255780000","0.0032","389634.72","389634.72"
"192.168.1.104","40991","192.168.1.254","domain","2","156","1","78","1","78","0.259318000","0.0054","N/A","N/A"
"192.168.1.104","16436","192.168.1.254","domain","2","172","1","78","1","94","0.269991000","0.0023","N/A","N/A"
"192.168.1.104","8144","192.168.1.254","domain","4","312","2","156","2","156","0.327276000","0.0029","432432.43","432432.43"
"192.168.1.104","43033","192.168.1.254","domain","2","156","1","78","1","78","0.330298000","0.0014","N/A","N/A"
"192.168.1.104","13255","192.168.1.254","domain","2","172","1","78","1","94","0.337295000","0.0015","N/A","N/A"
"192.168.1.104","pcs-pcw","192.168.1.254","domain","4","312","2","156","2","156","0.381251000","0.0058","214248.93","214248.93"
"192.168.1.104","47516","192.168.1.254","domain","2","156","1","78","1","78","0.387403000","0.0013","N/A","N/A"
"192.168.1.104","46934","192.168.1.254","domain","2","172","1","78","1","94","0.393554000","0.0020","N/A","N/A"
"192.168.1.104","22723","192.168.1.254","domain","4","312","2","156","2","156","0.438641000","0.0033","379446.64","379446.64"
"192.168.1.104","13652","192.168.1.254","domain","2","156","1","78","1","78","0.442179000","0.0026","N/A","N/A"
"192.168.1.104","38475","192.168.1.254","domain","2","172","1","78","1","94","0.450397000","0.0018","N/A","N/A"
"192.168.1.104","17459","192.168.1.254","domain","4","312","2","156","2","156","0.491248000","0.0045","275618.37","275618.37"
"192.168.1.104","59526","192.168.1.254","domain","2","156","1","78","1","78","0.495955000","0.0035","N/A","N/A"
"192.168.1.104","14504","192.168.1.254","domain","2","172","1","78","1","94","0.503858000","0.0016","N/A","N/A"
"192.168.1.104","38098","192.168.1.254","domain","4","312","2","156","2","156","0.546569000","0.0032","395562.60","395562.60"
"192.168.1.104","43322","192.168.1.254","domain","2","156","1","78","1","78","0.549996000","0.0016","N/A","N/A"
"192.168.1.104","adrep","192.168.1.254","domain","2","172","1","78","1","94","0.557514000","0.0015","N/A","N/A"
"192.168.1.104","16198","192.168.1.254","domain","4","312","2","156","2","156","0.604996000","0.0036","350463.35","350463.35"
"192.168.1.104","39472","192.168.1.254","domain","2","156","1","78","1","78","0.608901000","0.0014","N/A","N/A"
"192.168.1.104","25302","192.168.1.254","domain","2","172","1","78","1","94","0.615750000","0.0015","N/A","N/A"
"192.168.1.104","advant-lm","192.168.1.254","domain","4","312","2","156","2","156","0.665625000","0.0035","355758.27","355758.27"
"192.168.1.104","65021","192.168.1.254","domain","2","156","1","78","1","78","0.669529000","0.0046","N/A","N/A"
"192.168.1.104","40827","192.168.1.254","domain","2","172","1","78","1","94","0.683947000","0.0016","N/A","N/A"
"192.168.1.104","ariliamulti","192.168.1.254","domain","4","312","2","156","2","156","0.728460000","0.0089","140366.66","140366.66"
"192.168.1.104","16918","192.168.1.254","domain","2","156","1","78","1","78","0.737748000","0.0030","N/A","N/A"
"192.168.1.104","28970","192.168.1.254","domain","2","172","1","78","1","94","0.746692000","0.0016","N/A","N/A"
"192.168.1.104","casanswmgmt","192.168.1.254","domain","4","312","2","156","2","156","0.802815000","0.0037","335664.34","335664.34"
"192.168.1.104","wkars","192.168.1.254","domain","2","156","1","78","1","78","0.806865000","0.0013","N/A","N/A"
"192.168.1.104","targus-getdata2","192.168.1.254","domain","2","172","1","78","1","94","0.813395000","0.0014","N/A","N/A"
"192.168.1.104","51619","192.168.1.254","domain","4","312","2","156","2","156","0.854310000","0.0033","376697.86","376697.86"
"192.168.1.104","22828","192.168.1.254","domain","2","156","1","78","1","78","0.857838000","0.0014","N/A","N/A"
"192.168.1.104","36733","192.168.1.254","domain","2","172","1","78","1","94","0.870393000","0.0022","N/A","N/A"
"192.168.1.104","6726","192.168.1.254","domain","4","312","2","156","2","156","0.915823000","0.0053","233795.43","233795.43"
"192.168.1.104","58592","192.168.1.254","domain","2","156","1","78","1","78","0.921499000","0.0048","N/A","N/A"
"192.168.1.104","27747","192.168.1.254","domain","2","172","1","78","1","94","0.933616000","0.0014","N/A","N/A"
"192.168.1.104","swa-2","192.168.1.254","domain","4","312","2","156","2","156","0.975272000","0.0081","153467.78","153467.78"
"192.168.1.104","58872","192.168.1.254","domain","2","156","1","78","1","78","0.983564000","0.0021","N/A","N/A"
"192.168.1.104","17410","192.168.1.254","domain","2","172","1","78","1","94","0.989929000","0.0031","N/A","N/A"
"192.168.1.104","16703","192.168.1.254","domain","4","312","2","156","2","156","1.032381000","0.0049","255266.93","255266.93"
"192.168.1.104","15395","192.168.1.254","domain","2","156","1","78","1","78","1.037553000","0.0013","N/A","N/A"
"192.168.1.104","22889","192.168.1.254","domain","2","172","1","78","1","94","1.045396000","0.0014","N/A","N/A"
"192.168.1.104","61404","192.168.1.254","domain","4","312","2","156","2","156","1.095190000","0.0048","262460.57","262460.57"
"192.168.1.104","51204","192.168.1.254","domain","2","156","1","78","1","78","1.100203000","0.0018","N/A","N/A"
"192.168.1.104","40762","192.168.1.254","domain","2","172","1","78","1","94","1.107364000","0.0014","N/A","N/A"
"192.168.1.104","9725","192.168.1.254","domain","4","312","2","156","2","156","1.147985000","0.0032","395061.73","395061.73"
"192.168.1.104","9653","192.168.1.254","domain","2","156","1","78","1","78","1.151289000","0.0023","N/A","N/A"
"192.168.1.104","netmap-lm","192.168.1.254","domain","2","172","1","78","1","94","1.163230000","0.0020","N/A","N/A"
"192.168.1.104","32311","192.168.1.254","domain","4","312","2","156","2","156","1.204791000","0.0032","390121.91","390121.91"
"192.168.1.104","47012","192.168.1.254","domain","2","156","1","78","1","78","1.208332000","0.0018","N/A","N/A"
"192.168.1.104","8836","192.168.1.254","domain","2","172","1","78","1","94","1.217157000","0.0014","N/A","N/A"
"192.168.1.104","26035","192.168.1.254","domain","4","312","2","156","2","156","1.257412000","0.0039","316670.90","316670.90"
"192.168.1.104","24607","192.168.1.254","domain","2","156","1","78","1","78","1.261646000","0.0015","N/A","N/A"
"192.168.1.104","14656","192.168.1.254","domain","2","172","1","78","1","94","1.268890000","0.0014","N/A","N/A"
"192.168.1.104","winshadow-hd","192.168.1.254","domain","4","312","2","156","2","156","1.315356000","0.0032","390365.97","390365.97"
"192.168.1.104","64904","192.168.1.254","domain","2","156","1","78","1","78","1.318680000","0.0013","N/A","N/A"
"192.168.1.104","36899","192.168.1.254","domain","2","172","1","78","1","94","1.328233000","0.0019","N/A","N/A"
"192.168.1.104","8924","192.168.1.254","domain","4","312","2","156","2","156","1.367424000","0.0066","187753.87","187753.87"
"192.168.1.104","46215","192.168.1.254","domain","2","156","1","78","1","78","1.374506000","0.0026","N/A","N/A"
"192.168.1.104","60575","192.168.1.254","domain","2","172","1","78","1","94","1.384191000","0.0015","N/A","N/A"
"192.168.1.104","32517","192.168.1.254","domain","4","312","2","156","2","156","1.433457000","0.0039","321483.77","321483.77"
"192.168.1.104","36124","192.168.1.254","domain","2","156","1","78","1","78","1.437654000","0.0012","N/A","N/A"
"192.168.1.104","62867","192.168.1.254","domain","2","172","1","78","1","94","1.450762000","0.0017","N/A","N/A"
"192.168.1.104","macbak","192.168.1.254","domain","4","312","2","156","2","156","1.491474000","0.0080","156961.39","156961.39"
"192.168.1.104","33604","192.168.1.254","domain","2","156","1","78","1","78","1.499799000","0.0014","N/A","N/A"
"192.168.1.104","45263","192.168.1.254","domain","2","172","1","78","1","94","1.506734000","0.0015","N/A","N/A"
"192.168.1.104","60477","192.168.1.254","domain","4","312","2","156","2","156","1.548975000","0.0035","359965.39","359965.39"
"192.168.1.104","61731","192.168.1.254","domain","2","156","1","78","1","78","1.552759000","0.0017","N/A","N/A"
"192.168.1.104","resacommunity","192.168.1.254","domain","2","172","1","78","1","94","1.559723000","0.0017","N/A","N/A"
"192.168.1.104","27446","192.168.1.254","domain","4","312","2","156","2","156","1.726859000","0.0036","345323.74","345323.74"
"192.168.1.104","21287","192.168.1.254","domain","2","156","1","78","1","78","1.730775000","0.0014","N/A","N/A"
"192.168.1.104","56066","192.168.1.254","domain","2","172","1","78","1","94","1.742579000","0.0022","N/A","N/A"
"192.168.1.104","39517","192.168.1.254","domain","4","312","2","156","2","156","1.788668000","0.0074","169680.49","169680.49"
"192.168.1.104","34257","192.168.1.254","domain","2","156","1","78","1","78","1.796430000","0.0066","N/A","N/A"
"192.168.1.104","52943","192.168.1.254","domain","2","172","1","78","1","94","1.807717000","0.0015","N/A","N/A"
"192.168.1.104","59611","192.168.1.254","domain","4","312","2","156","2","156","1.848701000","0.0034","365019.01","365019.01"
"192.168.1.104","46547","192.168.1.254","domain","2","156","1","78","1","78","1.852251000","0.0014","N/A","N/A"
"192.168.1.104","54822","192.168.1.254","domain","2","172","1","78","1","94","1.858672000","0.0015","N/A","N/A"
"192.168.1.104","37470","192.168.1.254","domain","4","312","2","156","2","156","1.894919000","0.0140","88983.96","88983.96"
"192.168.1.104","52528","192.168.1.254","domain","2","156","1","78","1","78","1.909339000","0.0067","N/A","N/A"
"192.168.1.104","20174","192.168.1.254","domain","2","172","1","78","1","94","1.920750000","0.0015","N/A","N/A"
"192.168.1.104","13608","192.168.1.254","domain","4","312","2","156","2","156","1.967671000","0.0038","329461.46","329461.46"
"192.168.1.104","56478","192.168.1.254","domain","2","156","1","78","1","78","1.971751000","0.0017","N/A","N/A"
"192.168.1.104","38278","192.168.1.254","domain","2","172","1","78","1","94","1.977495000","0.0054","N/A","N/A"
"192.168.1.104","58580","192.168.1.254","domain","4","312","2","156","2","156","2.032493000","0.0052","240046.16","240046.16"
"192.168.1.104","47432","192.168.1.254","domain","2","156","1","78","1","78","2.038077000","0.0036","N/A","N/A"
"192.168.1.104","4693","192.168.1.254","domain","2","172","1","78","1","94","2.046852000","0.0015","N/A","N/A"
"192.168.1.104","41489","192.168.1.254","domain","4","312","2","156","2","156","2.090544000","0.0069","181977.25","181977.25"
"192.168.1.104","62737","192.168.1.254","domain","2","156","1","78","1","78","2.097716000","0.0021","N/A","N/A"
"192.168.1.104","61754","192.168.1.254","domain","2","172","1","78","1","94","2.111436000","0.2649","N/A","N/A"
"192.168.1.104","46899","192.168.1.254","domain","4","312","2","156","2","156","2.424437000","0.0036","350266.63","350266.63"
"192.168.1.104","25336","192.168.1.254","domain","2","156","1","78","1","78","2.428401000","0.0014","N/A","N/A"
"192.168.1.104","56267","192.168.1.254","domain","2","172","1","78","1","94","2.688899000","0.0019","N/A","N/A"
"192.168.1.104","42635","192.168.1.254","domain","4","312","2","156","2","156","2.735305000","0.2584","4829.05","4829.05"
"192.168.1.104","50842","192.168.1.254","domain","2","156","1","78","1","78","2.994081000","0.0037","N/A","N/A"
"192.168.1.104","44435","192.168.1.254","domain","2","172","1","78","1","94","3.006118000","0.0015","N/A","N/A"
"192.168.1.104","21324","192.168.1.254","domain","4","312","2","156","2","156","3.298418000","0.0033","379446.64","379446.64"
"192.168.1.104","9076","192.168.1.254","domain","2","156","1","78","1","78","3.302075000","0.0022","N/A","N/A"
"192.168.1.104","29183","192.168.1.254","domain","2","172","1","78","1","94","3.307852000","0.0024","N/A","N/A"
"192.168.1.104","24142","192.168.1.254","domain","4","312","2","156","2","156","3.607749000","0.0033","377153.22","377153.22"
"192.168.1.104","21572","192.168.1.254","domain","2","156","1","78","1","78","3.611325000","0.0022","N/A","N/A"
"192.168.1.104","lbc-sync","192.168.1.254","domain","2","172","1","78","1","94","3.626432000","0.0030","N/A","N/A"
"192.168.1.104","24261","192.168.1.254","domain","4","312","2","156","2","156","3.919871000","0.0046","272132.58","272132.58"
"192.168.1.104","23540","192.168.1.254","domain","2","156","1","78","1","78","3.924736000","0.0012","N/A","N/A"
"192.168.1.104","49469","192.168.1.254","domain","2","172","1","78","1","94","3.931569000","0.0077","N/A","N/A"
"192.168.1.104","6516","192.168.1.254","domain","4","312","2","156","2","156","4.219577000","0.0042","295244.85","295244.85"
"192.168.1.104","7525","192.168.1.254","domain","2","156","1","78","1","78","4.223970000","0.0013","N/A","N/A"
"192.168.1.104","23550","192.168.1.254","domain","2","172","1","78","1","94","4.229313000","0.0019","N/A","N/A"
"192.168.1.104","27481","192.168.1.254","domain","4","312","2","156","2","156","4.273287000","0.1174","10628.24","10628.24"
"192.168.1.104","aal-lm","192.168.1.254","domain","2","156","1","78","1","78","4.390842000","0.0015","N/A","N/A"
"192.168.1.104","10301","192.168.1.254","domain","2","172","1","78","1","94","4.397766000","0.0015","N/A","N/A"
"192.168.1.104","12016","192.168.1.254","domain","4","312","2","156","2","156","4.440665000","0.0041","304985.34","304985.34"
"192.168.1.104","59097","192.168.1.254","domain","2","156","1","78","1","78","4.445017000","0.0013","N/A","N/A"
"192.168.1.104","4764","192.168.1.254","domain","2","172","1","78","1","94","4.450664000","0.0049","N/A","N/A"
"192.168.1.104","13774","192.168.1.254","domain","4","312","2","156","2","156","4.500178000","0.0032","392947.10","392947.10"
"192.168.1.104","49628","192.168.1.254","domain","2","156","1","78","1","78","4.503635000","0.0018","N/A","N/A"
"192.168.1.104","47911","192.168.1.254","domain","2","172","1","78","1","94","4.511318000","0.0031","N/A","N/A"
"192.168.1.104","12463","192.168.1.254","domain","4","312","2","156","2","156","4.556190000","0.0033","379793.06","379793.06"
"192.168.1.104","61972","192.168.1.254","domain","2","156","1","78","1","78","4.559811000","0.0064","N/A","N/A"
"192.168.1.104","31480","192.168.1.254","domain","2","172","1","78","1","94","4.571672000","0.0024","N/A","N/A"
"192.168.1.104","7329","192.168.1.254","domain","4","312","2","156","2","156","4.849177000","0.0048","262626.26","262626.26"
"192.168.1.104","10428","192.168.1.254","domain","2","156","1","78","1","78","4.854205000","0.0014","N/A","N/A"
"192.168.1.104","8798","192.168.1.254","domain","2","172","1","78","1","94","4.860704000","0.0015","N/A","N/A"
"192.168.1.104","47670","192.168.1.254","domain","4","312","2","156","2","156","5.139695000","0.0040","310525.01","310525.01"
"192.168.1.104","51501","192.168.1.254","domain","2","156","1","78","1","78","5.143865000","0.0013","N/A","N/A"
"192.168.1.104","21660","192.168.1.254","domain","2","172","1","78","1","94","5.149417000","0.0023","N/A","N/A"
"192.168.1.104","trendchip-dcp","192.168.1.254","domain","4","312","2","156","2","156","5.189836000","0.2371","5264.53","5264.53"
"192.168.1.104","34168","192.168.1.254","domain","2","156","1","78","1","78","5.427235000","0.0014","N/A","N/A"
"192.168.1.104","32480","192.168.1.254","domain","2","172","1","78","1","94","5.432143000","0.0022","N/A","N/A"
"192.168.1.104","36157","192.168.1.254","domain","4","312","2","156","2","156","5.480942000","0.0088","142303.31","142303.31"
"192.168.1.104","47608","192.168.1.254","domain","2","156","1","78","1","78","5.489975000","0.0021","N/A","N/A"
"192.168.1.104","38571","192.168.1.254","domain","2","172","1","78","1","94","5.737562000","0.0015","N/A","N/A"
"192.168.1.104","12947","192.168.1.254","domain","4","312","2","156","2","156","5.778879000","0.0040","310139.17","310139.17"
"192.168.1.104","50509","192.168.1.254","domain","2","156","1","78","1","78","5.783203000","0.0017","N/A","N/A"
"192.168.1.104","49156","192.168.1.254","domain","2","172","1","78","1","94","5.797219000","0.0019","N/A","N/A"
"192.168.1.104","9349","192.168.1.254","domain","4","312","2","156","2","156","6.067825000","0.0072","172447.15","172447.15"
"192.168.1.104","7333","192.168.1.254","domain","2","156","1","78","1","78","6.075260000","0.0022","N/A","N/A"
"192.168.1.104","24908","192.168.1.254","domain","2","172","1","78","1","94","6.081075000","0.0018","N/A","N/A"
"192.168.1.104","44246","192.168.1.254","domain","4","312","2","156","2","156","6.358246000","0.0034","363636.36","363636.36"
"192.168.1.104","mpsysrmsvr","192.168.1.254","domain","2","156","1","78","1","78","6.361924000","0.0017","N/A","N/A"
"192.168.1.104","56381","192.168.1.254","domain","2","172","1","78","1","94","6.368525000","0.0040","N/A","N/A"
"192.168.1.104","7638","192.168.1.254","domain","4","312","2","156","2","156","6.652182000","0.0048","258385.09","258385.09"
"192.168.1.104","29138","192.168.1.254","domain","2","156","1","78","1","78","6.657199000","0.0035","N/A","N/A"
"192.168.1.104","38900","192.168.1.254","domain","2","172","1","78","1","94","6.668360000","0.0014","N/A","N/A"
"192.168.1.104","38281","192.168.1.254","domain","4","312","2","156","2","156","6.707501000","0.0093","133518.78","133518.78"
"192.168.1.104","5182","192.168.1.254","domain","2","156","1","78","1","78","6.717136000","0.0082","N/A","N/A"
"192.168.1.104","16620","192.168.1.254","domain","2","172","1","78","1","94","6.730270000","0.0018","N/A","N/A"
"192.168.1.104","20410","192.168.1.254","domain","4","312","2","156","2","156","7.002951000","0.0076","164210.53","164210.53"
"192.168.1.104","61459","192.168.1.254","domain","2","156","1","78","1","78","7.010826000","0.0017","N/A","N/A"
"192.168.1.104","senip","192.168.1.254","domain","2","172","1","78","1","94","7.018085000","0.0050","N/A","N/A"
"192.168.1.104","15469","192.168.1.254","domain","4","312","2","156","2","156","7.299875000","0.0036","351054.85","351054.85"
"192.168.1.104","32799","192.168.1.254","domain","2","156","1","78","1","78","7.303607000","0.0014","N/A","N/A"
"192.168.1.104","36258","192.168.1.254","domain","2","172","1","78","1","94","7.315036000","0.0028","N/A","N/A"
"192.168.1.104","60485","192.168.1.254","domain","4","312","2","156","2","156","7.596407000","0.0035","359240.07","359240.07"
"192.168.1.104","11646","192.168.1.254","domain","2","156","1","78","1","78","7.600139000","0.0013","N/A","N/A"
"192.168.1.104","15403","192.168.1.254","domain","2","172","1","78","1","94","7.607939000","0.0015","N/A","N/A"
"192.168.1.104","10342","192.168.1.254","domain","4","312","2","156","2","156","7.770404000","0.0257","48611.38","48611.38"
"192.168.1.104","25072","192.168.1.254","domain","2","156","1","78","1","78","7.796268000","0.0051","N/A","N/A"
"192.168.1.104","26354","192.168.1.254","domain","2","172","1","78","1","94","7.813616000","0.0015","N/A","N/A"
"192.168.1.104","22316","192.168.1.254","domain","4","312","2","156","2","156","7.898844000","0.0145","86003.72","86003.72"
"192.168.1.104","9621","192.168.1.254","domain","2","156","1","78","1","78","7.913736000","0.0080","N/A","N/A"
"192.168.1.104","47188","192.168.1.254","domain","2","172","1","78","1","94","7.927361000","0.0025","N/A","N/A"
"192.168.1.104","19534","192.168.1.254","domain","4","312","2","156","2","156","7.997444000","0.0177","70464.68","70464.68"
"192.168.1.104","43344","192.168.1.254","domain","2","156","1","78","1","78","8.015504000","0.0097","N/A","N/A"
"192.168.1.104","8685","192.168.1.254","domain","2","172","1","78","1","94","8.052629000","0.0029","N/A","N/A"
"192.168.1.104","gamegen1","192.168.1.254","domain","4","312","2","156","2","156","8.106231000","0.0275","45434.69","45434.69"
"192.168.1.104","11094","192.168.1.254","domain","2","156","1","78","1","78","8.134040000","0.0275","N/A","N/A"
"192.168.1.104","23373","192.168.1.254","domain","2","172","1","78","1","94","8.171260000","0.0061","N/A","N/A"
"192.168.1.104","ubroker","192.168.1.254","domain","4","312","2","156","2","156","8.267729000","0.0414","30154.40","30154.40"
"192.168.1.104","dicom-tls","192.168.1.254","domain","2","156","1","78","1","78","8.309426000","0.0262","N/A","N/A"
"192.168.1.104","17435","192.168.1.254","domain","2","172","1","78","1","94","8.354001000","0.0017","N/A","N/A"
"192.168.1.104","25582","192.168.1.254","domain","4","312","2","156","2","156","8.425481000","0.0149","83916.08","83916.08"
"192.168.1.104","26851","192.168.1.254","domain","2","156","1","78","1","78","8.440518000","0.0016","N/A","N/A"
"192.168.1.104","jeol-nsddp-4","192.168.1.254","domain","2","172","1","78","1","94","8.456603000","0.0090","N/A","N/A"
"192.168.1.104","20609","192.168.1.254","domain","4","312","2","156","2","156","8.544337000","0.0247","50512.00","50512.00"
"192.168.1.104","54680","192.168.1.254","domain","2","156","1","78","1","78","8.569370000","0.0013","N/A","N/A"
"192.168.1.104","27708","192.168.1.254","domain","2","172","1","78","1","94","8.599574000","0.0181","N/A","N/A"
"192.168.1.104","28976","192.168.1.254","domain","4","312","2","156","2","156","8.715336000","0.0199","62735.64","62735.64"
"192.168.1.104","47919","192.168.1.254","domain","2","156","1","78","1","78","8.735601000","0.0124","N/A","N/A"
"192.168.1.104","33668","192.168.1.254","domain","2","172","1","78","1","94","8.778074000","0.0214","N/A","N/A"
"192.168.1.104","23379","192.168.1.254","domain","4","312","2","156","2","156","8.938352000","0.0160","77902.62","77902.62"
"192.168.1.104","39913","192.168.1.254","domain","2","156","1","78","1","78","8.954788000","0.0064","N/A","N/A"
"192.168.1.104","42407","192.168.1.254","domain","2","172","1","78","1","94","8.969037000","0.0049","N/A","N/A"
"192.168.1.104","25729","192.168.1.254","domain","4","312","2","156","2","156","9.082122000","0.0138","90303.91","90303.91"
"192.168.1.104","15008","192.168.1.254","domain","2","156","1","78","1","78","9.096271000","0.0019","N/A","N/A"
"192.168.1.104","18023","192.168.1.254","domain","2","172","1","78","1","94","9.102414000","0.0064","N/A","N/A"
"192.168.1.104","24289","192.168.1.254","domain","4","312","2","156","2","156","9.178313000","0.0123","101397.47","101397.47"
"192.168.1.104","opsec-ufp","192.168.1.254","domain","2","156","1","78","1","78","9.190850000","0.0082","N/A","N/A"
"192.168.1.104","50162","192.168.1.254","domain","2","172","1","78","1","94","9.204491000","0.0046","N/A","N/A"
"192.168.1.104","63505","192.168.1.254","domain","4","312","2","156","2","156","9.287588000","0.0148","84051.72","84051.72"
"192.168.1.104","41223","192.168.1.254","domain","2","156","1","78","1","78","9.302864000","0.0106","N/A","N/A"
"192.168.1.104","18154","192.168.1.254","domain","2","172","1","78","1","94","9.317899000","0.0109","N/A","N/A"
"192.168.1.104","52684","192.168.1.254","domain","4","312","2","156","2","156","9.775707000","0.6424","1942.80","1942.80"
"192.168.1.104","39057","192.168.1.254","domain","2","156","1","78","1","78","10.418563000","0.0018","N/A","N/A"
"192.168.1.104","34773","192.168.1.254","domain","2","172","1","78","1","94","10.750956000","0.1033","N/A","N/A"
"192.168.1.104","20650","192.168.1.254","domain","4","312","2","156","2","156","10.963654000","0.0035","358414.70","358414.70"
"192.168.1.104","52166","192.168.1.254","domain","2","156","1","78","1","78","10.967442000","0.0022","N/A","N/A"
"192.168.1.104","37736","192.168.1.254","domain","2","172","1","78","1","94","10.974896000","0.0015","N/A","N/A"
"192.168.1.104","53392","192.168.1.254","domain","4","312","2","156","2","156","11.018288000","0.0041","306558.59","306558.59"
"192.168.1.104","4857","192.168.1.254","domain","2","156","1","78","1","78","11.022705000","0.0016","N/A","N/A"
"192.168.1.104","47228","192.168.1.254","domain","2","172","1","78","1","94","11.028995000","0.0014","N/A","N/A"
"192.168.1.104","dyniplookup","192.168.1.254","domain","4","312","2","156","2","156","11.075630000","0.0044","283057.38","283057.38"
"192.168.1.104","21807","192.168.1.254","domain","2","156","1","78","1","78","11.080439000","0.0038","N/A","N/A"
"192.168.1.104","59041","192.168.1.254","domain","2","172","1","78","1","94","11.091811000","0.0028","N/A","N/A"
"192.168.1.104","62443","192.168.1.254","domain","4","312","2","156","2","156","11.136127000","0.0049","252529.34","252529.34"
"192.168.1.104","42269","192.168.1.254","domain","2","156","1","78","1","78","11.141380000","0.0019","N/A","N/A"
"192.168.1.104","9270","192.168.1.254","domain","2","172","1","78","1","94","11.148238000","0.0015","N/A","N/A"
"192.168.1.104","44360","192.168.1.254","domain","4","312","2","156","2","156","11.194010000","0.0042","296296.30","296296.30"
"192.168.1.104","15286","192.168.1.254","domain","2","156","1","78","1","78","11.198361000","0.0020","N/A","N/A"
"192.168.1.104","34509","192.168.1.254","domain","2","172","1","78","1","94","11.206217000","0.0014","N/A","N/A"
"192.168.1.104","41691","192.168.1.254","domain","4","312","2","156","2","156","11.253734000","0.0060","209642.20","209642.20"
"192.168.1.104","icms","192.168.1.254","domain","2","156","1","78","1","78","11.259843000","0.0018","N/A","N/A"
"192.168.1.104","60372","192.168.1.254","domain","2","172","1","78","1","94","11.272443000","0.0083","N/A","N/A"
"192.168.1.104","43589","192.168.1.254","domain","4","312","2","156","2","156","11.763765000","0.0066","190389.02","190389.02"
"192.168.1.104","37772","192.168.1.254","domain","2","156","1","78","1","78","11.770494000","0.0028","N/A","N/A"
"192.168.1.104","13007","192.168.1.254","domain","2","172","1","78","1","94","11.777812000","0.0016","N/A","N/A"
"192.168.1.104","5169","192.168.1.254","domain","4","312","2","156","2","156","11.823066000","0.0034","370766.49","370766.49"
"192.168.1.104","26047","192.168.1.254","domain","2","156","1","78","1","78","11.826748000","0.0013","N/A","N/A"
"192.168.1.104","20141","192.168.1.254","domain","2","172","1","78","1","94","11.841407000","0.0035","N/A","N/A"
"192.168.1.104","43398","192.168.1.254","domain","4","312","2","156","2","156","11.883189000","0.0041","303797.47","303797.47"
"192.168.1.104","58443","192.168.1.254","domain","2","156","1","78","1","78","11.887574000","0.0014","N/A","N/A"
"192.168.1.104","6016","192.168.1.254","domain","2","172","1","78","1","94","11.894881000","0.0015","N/A","N/A"
"192.168.1.104","53820","192.168.1.254","domain","4","312","2","156","2","156","11.935905000","0.0057","220105.82","220105.82"
"192.168.1.104","62928","192.168.1.254","domain","2","156","1","78","1","78","11.941932000","0.0037","N/A","N/A"
"192.168.1.104","9491","192.168.1.254","domain","2","172","1","78","1","94","11.949333000","0.0025","N/A","N/A"
"192.168.1.104","25295","192.168.1.254","domain","4","312","2","156","2","156","11.997133000","0.0109","114390.47","114390.47"
"192.168.1.104","dcsoftware","192.168.1.254","domain","2","156","1","78","1","78","12.008346000","0.0098","N/A","N/A"
"192.168.1.104","14150","192.168.1.254","domain","2","172","1","78","1","94","12.027806000","0.0015","N/A","N/A"
"192.168.1.104","50865","192.168.1.254","domain","4","312","2","156","2","156","12.098583000","0.0050","251765.18","251765.18"
"192.168.1.104","42543","192.168.1.254","domain","2","156","1","78","1","78","12.103792000","0.0024","N/A","N/A"
"192.168.1.104","7293","192.168.1.254","domain","2","172","1","78","1","94","12.131424000","0.0028","N/A","N/A"
"192.168.1.104","32873","192.168.1.254","domain","4","312","2","156","2","156","12.176474000","0.0040","314199.40","314199.40"
"192.168.1.104","9902","192.168.1.254","domain","2","156","1","78","1","78","12.180821000","0.0026","N/A","N/A"
"192.168.1.104","33104","192.168.1.254","domain","2","172","1","78","1","94","12.189193000","0.0015","N/A","N/A"
"192.168.1.104","5914","192.168.1.254","domain","4","312","2","156","2","156","12.227778000","0.0036","347923.06","347923.06"
"192.168.1.104","20377","192.168.1.254","domain","2","156","1","78","1","78","12.231707000","0.0033","N/A","N/A"
"192.168.1.104","36010","192.168.1.254","domain","2","172","1","78","1","94","12.240288000","0.0048","N/A","N/A"
"192.168.1.104","igi-lm","192.168.1.254","domain","4","312","2","156","2","156","12.283892000","0.0032","388542.96","388542.96"
"192.168.1.104","31102","192.168.1.254","domain","2","156","1","78","1","78","12.287266000","0.0013","N/A","N/A"
"192.168.1.104","unicall","192.168.1.254","domain","2","172","1","78","1","94","12.294848000","0.0037","N/A","N/A"
"192.168.1.104","27424","192.168.1.254","domain","4","312","2","156","2","156","12.367471000","0.0072","172709.66","172709.66"
"192.168.1.104","26087","192.168.1.254","domain","2","156","1","78","1","78","12.375232000","0.0093","N/A","N/A"
"192.168.1.104","38526","192.168.1.254","domain","2","172","1","78","1","94","12.388282000","0.0020","N/A","N/A"
"192.168.1.104","27062","192.168.1.254","domain","4","312","2","156","2","156","12.429987000","0.0038","332003.19","332003.19"
"192.168.1.104","59367","192.168.1.254","domain","2","156","1","78","1","78","12.434023000","0.0022","N/A","N/A"
"192.168.1.104","17961","192.168.1.254","domain","2","172","1","78","1","94","12.441334000","0.0018","N/A","N/A"
"192.168.1.104","8189","192.168.1.254","domain","4","312","2","156","2","156","12.483418000","0.0058","216029.08","216029.08"
"192.168.1.104","6881","192.168.1.254","domain","2","156","1","78","1","78","12.489549000","0.0020","N/A","N/A"
"192.168.1.104","lnvpoller","192.168.1.254","domain","2","172","1","78","1","94","12.496560000","0.0015","N/A","N/A"
"192.168.1.104","63023","192.168.1.254","domain","4","312","2","156","2","156","12.547463000","0.0088","141947.22","141947.22"
"192.168.1.104","4412","192.168.1.254","domain","2","156","1","78","1","78","12.556606000","0.0020","N/A","N/A"
"192.168.1.104","38589","192.168.1.254","domain","2","172","1","78","1","94","12.563518000","0.0015","N/A","N/A"
"192.168.1.104","46629","192.168.1.254","domain","4","312","2","156","2","156","12.608377000","0.0038","332091.54","332091.54"
"192.168.1.104","suncacao-snmp","192.168.1.254","domain","2","156","1","78","1","78","12.612451000","0.0021","N/A","N/A"
"192.168.1.104","59530","192.168.1.254","domain","2","172","1","78","1","94","12.619331000","0.0018","N/A","N/A"
"192.168.1.104","2021","192.168.1.254","domain","4","312","2","156","2","156","12.663315000","0.0056","224258.76","224258.76"
"192.168.1.104","5937","192.168.1.254","domain","2","156","1","78","1","78","12.669275000","0.0039","N/A","N/A"
"192.168.1.104","27176","192.168.1.254","domain","2","172","1","78","1","94","12.678886000","0.0042","N/A","N/A"
"192.168.1.104","62181","192.168.1.254","domain","4","312","2","156","2","156","12.719458000","0.0046","271658.69","271658.69"
"192.168.1.104","60014","192.168.1.254","domain","2","156","1","78","1","78","12.724394000","0.0013","N/A","N/A"
"192.168.1.104","16398","192.168.1.254","domain","2","172","1","78","1","94","12.730099000","0.0021","N/A","N/A"
"192.168.1.104","45573","192.168.1.254","domain","4","312","2","156","2","156","12.775382000","0.0124","100710.14","100710.14"
"192.168.1.104","14914","192.168.1.254","domain","2","156","1","78","1","78","12.787938000","0.0034","N/A","N/A"
"192.168.1.104","14808","192.168.1.254","domain","2","172","1","78","1","94","12.794937000","0.0048","N/A","N/A"
"192.168.1.104","27022","192.168.1.254","domain","4","312","2","156","2","156","12.831992000","0.0046","270305.39","270305.39"
"192.168.1.104","genie-lm","192.168.1.254","domain","2","156","1","78","1","78","12.836947000","0.0021","N/A","N/A"
"192.168.1.104","23020","192.168.1.254","domain","2","172","1","78","1","94","12.846987000","0.0015","N/A","N/A"
"192.168.1.104","28098","192.168.1.254","domain","4","312","2","156","2","156","12.894262000","0.0033","379446.64","379446.64"
"192.168.1.104","61496","192.168.1.254","domain","2","156","1","78","1","78","12.897825000","0.0013","N/A","N/A"
"192.168.1.104","63187","192.168.1.254","domain","2","172","1","78","1","94","12.903690000","0.0024","N/A","N/A"
"192.168.1.104","7079","192.168.1.254","domain","4","312","2","156","2","156","12.944639000","0.0048","258545.68","258545.68"
"192.168.1.104","44593","192.168.1.254","domain","2","156","1","78","1","78","12.949734000","0.0015","N/A","N/A"
"192.168.1.104","62693","192.168.1.254","domain","2","172","1","78","1","94","12.962249000","0.0017","N/A","N/A"
"192.168.1.104","17788","192.168.1.254","domain","4","312","2","156","2","156","13.003753000","0.0034","371428.57","371428.57"
"192.168.1.104","19990","192.168.1.254","domain","2","156","1","78","1","78","13.007430000","0.0013","N/A","N/A"
"192.168.1.104","26457","192.168.1.254","domain","2","172","1","78","1","94","13.018736000","0.0027","N/A","N/A"
"192.168.1.104","40232","192.168.1.254","domain","4","312","2","156","2","156","13.106165000","0.0049","256684.49","256684.49"
"192.168.1.104","simba-cs","192.168.1.254","domain","2","156","1","78","1","78","13.111292000","0.0015","N/A","N/A"
"192.168.1.104","48482","192.168.1.254","domain","2","172","1","78","1","94","13.117521000","0.0015","N/A","N/A"
"192.168.1.104","netwkpathengine","192.168.1.254","domain","4","312","2","156","2","156","13.164831000","0.0046","270188.35","270188.35"
"192.168.1.104","9140","192.168.1.254","domain","2","156","1","78","1","78","13.169747000","0.0022","N/A","N/A"
"192.168.1.104","55938","192.168.1.254","domain","2","172","1","78","1","94","13.177264000","0.0015","N/A","N/A"
"192.168.1.104","46022","192.168.1.254","domain","4","312","2","156","2","156","13.220361000","0.0038","327301.34","327301.34"
"192.168.1.104","49699","192.168.1.254","domain","2","156","1","78","1","78","13.224313000","0.0012","N/A","N/A"
"192.168.1.104","49290","192.168.1.254","domain","2","172","1","78","1","94","13.230407000","0.0019","N/A","N/A"
"192.168.1.104","18092","192.168.1.254","domain","4","312","2","156","2","156","13.273151000","0.0032","389513.11","389513.11"
"192.168.1.104","40807","192.168.1.254","domain","2","156","1","78","1","78","13.276684000","0.0013","N/A","N/A"
"192.168.1.104","49771","192.168.1.254","domain","2","172","1","78","1","94","13.287003000","0.0048","N/A","N/A"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment