Index: /network-scanner/branches/nmapparser/NmapParser.py
===================================================================
--- /network-scanner/branches/nmapparser/NmapParser.py (revision 4235)
+++ /network-scanner/branches/nmapparser/NmapParser.py (revision 4235)
@@ -0,0 +1,1074 @@
+# -*- coding: utf-8 -*-
+#
+# Copyright (C) 2005-2006 Insecure.Com LLC.
+# Copyright (C) 2007-2008 Adriano Monteiro Marques
+#
+# Author: Adriano Monteiro Marques <adriano@umitproject.org>
+#         Guilherme Polo <ggpolo@gmail.com>
+#         João Paulo de Souza Medeiros <ignotus21@gmail.com>
+#         Luis A. Bastiao Silva <luis.kop@gmail.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+import re
+import time
+import calendar
+
+from xml.sax import make_parser
+from xml.sax.handler import ContentHandler
+from xml.sax.saxutils import XMLGenerator
+from xml.sax.xmlreader import AttributesImpl
+
+UNKNOWN = "Unknown"
+
+class AttributesImplDict(dict, AttributesImpl):
+    """Use this for displaying AttributesImpl just like a dict."""
+
+class HostInfo(object):
+    def __init__(self, host_id):
+        self.osclass = []
+        self.osmatch = []
+        self.osfingerprint = []
+        self.portused = []
+        self.ports = []
+        self.extraports = []
+        self.tcpsequence = {}
+        self.hostnames = []
+        self.tcptssequence = {}
+        self.ipidsequence = {}
+        self.trace = {'port': '', 'proto': '', 'hop': []}
+        self.status = {}
+        self.address = []
+        self.hostscript = []
+
+        # Umit extension
+        self.id = host_id
+        self.comment = ''
+
+        # XXX this structure it not being used yet.
+        self.nmap_host = {
+                'status': {'state': '', 'reason': ''},
+                'smurf': {'responses': ''},
+                'times': {'to': '', 'srtt': '', 'rttvar': ''},
+                'hostscript': [],
+                'distance': {'value': ''},
+                'trace': {'port': '', 'proto': '', 'hop': []},
+                'address': [],
+                'hostnames': [],
+                'ports': [],
+                'uptime': {'seconds': '', 'lastboot': ''},
+                'tcpsequence': {'index': '', 'values': '', 'class': ''},
+                'tcptssequence': {'values': '', 'class': ''},
+                'ipidsequence': {'values': '', 'class': ''},
+                'os': {}
+                }
+
+    # Host ID
+    def get_id(self):
+        try:
+            return self._id
+        except AttributeError:
+            raise Exception("Id is not set yet.")
+
+    def set_id(self, host_id):
+        try:
+            self._id = int(host_id)
+        except (TypeError, ValueError):
+            raise Exception("Invalid id! It must represent an integer, "
+                    "received %r" % host_id)
+
+    # VENDOR
+    def get_vendor(self):
+        vendor = UNKNOWN
+        for address in self.address:
+            if address['addrtype'] != 'mac':
+                continue
+            try:
+                vendor = address['vendor']
+                break
+            except KeyError:
+                pass
+
+        return vendor
+
+    # TRACEROUTE
+    def get_hop_by_ttl(self, ttl):
+        for hop in self.trace['hop']:
+            if ttl == int(hop['ttl']):
+                return hop
+        return None
+
+    def get_number_of_hops(self):
+        count = 0
+        for hop in self.trace['hop']:
+            if int(hop['ttl']) > count:
+                count = int(hop['ttl'])
+        return count
+
+    # UPTIME
+    # FORMAT: {"seconds":"", "lastboot":""}
+    def set_uptime(self, uptime):
+        self._uptime = uptime
+
+    def get_uptime(self):
+        if self._uptime:
+            return self._uptime
+
+        # Avoid empty dict return
+        return {'seconds': '', 'lastboot': ''}
+
+    # HOSTNAME
+    def get_hostname(self):
+        hostname = []
+
+        if self.hostnames:
+            try:
+                hostname.append(self.hostnames[0]['name'])
+            except KeyError:
+                pass
+
+        for addr in self.address:
+            if addr['addrtype'] == 'mac':
+                format = '(%s)'
+            else:
+                format = '%s'
+            hostname.append(format % addr['addr'])
+
+        return ' '.join(hostname) or UNKNOWN
+
+    def get_open_ports(self):
+        open_count = 0
+        for port in self.ports:
+            if port['state'] == 'open':
+                open_count += 1
+
+        return open_count
+
+    def get_filtered_ports(self):
+        filtered_count = 0
+        for port in self.ports:
+            if port['state'] == 'filtered':
+                filtered_count += 1
+        for extra in self.extraports:
+            if extra['state'] == 'filtered':
+                filtered_count += int(extra['count'])
+
+        return filtered_count
+
+    def get_closed_ports(self):
+        closed_count = 0
+        for port in self.ports:
+            if port['state'] == 'closed':
+                closed_count += 1
+        for extra in self.extraports:
+            if extra['state'] == 'closed':
+                closed_count += int(extra['count'])
+
+        return closed_count
+
+    def get_scanned_ports(self):
+        scanned = len(self.ports)
+        for extra in self.extraports:
+            scanned += int(extra['count'])
+
+        return scanned
+
+    def get_services(self):
+        services = []
+        for port in self.ports:
+            services.append({
+                'service_name': port.get('name', UNKNOWN),
+                'portid': port.get('portid', ''),
+                'service_version': port.get('version', UNKNOWN),
+                'service_product': port.get('product', ''),
+                'port_state': port.get('state', UNKNOWN),
+                'protocol': port.get('protocol', '')})
+        return services
+
+    def _get_status_state(self):
+        return self.status.get('state', '')
+
+    def _get_type_address(self, addrtype):
+        for addr in self.address:
+            if addr['addrtype'] == addrtype:
+                return addr
+
+    def _get_ipv4(self):
+        return self._get_type_address('ipv4')
+
+    def _get_ipv6(self):
+        return self._get_type_address('ipv6')
+
+    def _get_mac(self):
+        return self._get_type_address('mac')
+
+    # Properties
+    id = property(get_id, set_id)
+    uptime = property(get_uptime, set_uptime)
+    services = property(get_services)
+    state = property(_get_status_state, doc="Get the host status state")
+    ip = property(_get_ipv4, doc="Return the first ipv4 address found")
+    ipv6 = property(_get_ipv6, doc="Return the first ipv6 address found")
+    mac = property(_get_mac, doc="Return the first mac address found")
+
+    _uptime = {}
+
+
+class ParserBasics(object):
+    def __init__ (self):
+        self.nmap = {
+                'nmaprun': {},
+                'runstats': {
+                    'finished': {},
+                    'hosts': {'up': '', 'down': '', 'total': ''}
+                    },
+                'verbose': {'level': ''},
+                'debugging': {'level': ''},
+                'scaninfo': [],
+                'taskbegin': [],
+                'taskprogress': [],
+                'taskend': [],
+                #'host': [],
+                'hosts': []
+                }
+
+    def set_host_comment(self, host_id, comment):
+        for host in self.nmap['hosts']:
+            if host.id == host_id:
+                host.comment = comment
+                break
+        else:
+            raise Exception("Comment could not be saved! Host not "
+                    "found at NmapParser!")
+
+    def get_host_comment(self, host_id):
+        for host in self.nmap.get('hosts', []):
+            if host.id == host_id:
+                return host.comment
+        else:
+            raise Exception("Comment could not be saved! Host not "
+                    "found at NmapParser!")
+
+    def get_profile(self):
+        return self.nmap['nmaprun'].get('profile', '')
+
+    def set_profile(self, profile):
+        self.nmap['nmaprun']['profile'] = profile
+
+    def get_profile_name(self):
+        return self.nmap['nmaprun'].get('profile_name', '')
+
+    def set_profile_name(self, name):
+        self.nmap['nmaprun']['profile_name'] = name
+
+    def get_profile_description(self):
+        return self.nmap['nmaprun'].get('description', '')
+
+    def set_profile_description(self, description):
+        self.nmap['nmaprun']['description'] = description
+
+    def get_profile_hint(self):
+        return self.nmap['nmaprun'].get('hint', '')
+
+    def set_profile_hint(self, hint):
+        self.nmap['nmaprun']['hint'] = hint
+
+    def get_profile_annotation(self):
+        return self.nmap['nmaprun'].get('annotation', '')
+
+    def set_profile_annotation(self, annotation):
+        self.nmap['nmaprun']['annotation'] = annotation
+
+    def get_profile_options(self):
+        options = self.nmap['nmaprun'].get('options', '')
+        if isinstance(options, list):
+            return ','.join(options)
+        elif isinstance(options, basestring):
+            return options
+
+    def set_profile_options(self, options):
+        if isinstance(options, (list, basestring)):
+            self.nmap['nmaprun']['options'] = options
+        elif isinstance(options, dict):
+            self.nmap['nmaprun']['options'] = options.keys()
+        else:
+            raise Exception("Profile option error: wrong argument format! "
+                    "Need a string, list or dict.")
+
+    def get_target(self):
+        return self.nmap['nmaprun'].get('target', '')
+
+    def set_target(self, target):
+        self.nmap['nmaprun']['target'] = target
+
+    def get_nmap_output(self):
+        return self.nmap['nmaprun'].get('nmap_output', '')
+
+    def set_nmap_output(self, nmap_output):
+        self.nmap['nmaprun']['nmap_output'] = nmap_output
+
+    def get_debugging_level (self):
+        return self.nmap['debugging'].get('level', '')
+
+    def set_debugging_level(self, level):
+        self.nmap['debugging']['level'] = level
+
+    def set_debugging(self, debug):
+        self.nmap['debugging'] = debug
+
+    def get_verbose_level (self):
+        return self.nmap['verbose'].get('level', '')
+
+    def set_verbose_level(self, level):
+        self.nmap['verbose']['level'] = level
+
+    def set_verbose(self, verbose):
+        self.nmap['verbose'] = verbose
+
+    def get_scaninfo(self):
+        return self.nmap.get('scaninfo', [])
+
+    def set_scaninfo(self, info):
+        self.nmap['scaninfo'] = info
+
+    def append_scaninfo(self, info):
+        self.nmap['scaninfo'].append(info)
+
+    def get_services_scanned(self):
+        services = [scan['services'] for scan in self.nmap.get('scaninfo', [])]
+        return ','.join(services)
+
+    def get_nmap_command(self):
+        return self._verify_output_options(self.nmap['nmaprun'].get('args', ''))
+
+    def set_nmap_command(self, command):
+        self.nmap['nmaprun']['args'] = self._verify_output_options(command)
+
+    def get_scan_type(self):
+        return [stype['type'] for stype in self.nmap.get('scaninfo', [])]
+
+    def get_protocol (self):
+        return [proto['protocol'] for proto in self.nmap.get('scaninfo', [])]
+
+    def get_num_services(self):
+        num = 0
+        for sinfo in self.nmap.get('scaninfo', []):
+            num += int(sinfo['numservices'])
+
+        return num
+
+    def get_date(self):
+        epoch = int(self.nmap['nmaprun'].get('start', '0'))
+        return time.localtime(epoch)
+
+    def get_start(self):
+        return self.nmap['nmaprun'].get('start', '0')
+
+    def set_start(self, start):
+        self.nmap['nmaprun']['start'] = start
+
+    def set_date(self, date):
+        if type(date) == type(int):
+            self.nmap['nmaprun']['start'] = date
+        else:
+            raise Exception("Wrong date format. Date should be saved "
+                    "in epoch format!")
+
+    def get_open_ports(self):
+        open_count = 0
+        for host in self.nmap.get('hosts', []):
+            open_count += host.get_open_ports()
+
+        return open_count
+
+    def get_filtered_ports(self):
+        filtered_count = 0
+        for host in self.nmap.get('hosts', []):
+            filtered_count += host.get_filtered_ports()
+
+        return filtered_count
+
+    def get_closed_ports(self):
+        closed_count = 0
+        for host in self.nmap['hosts']:
+            closed_count += host.get_closed_ports()
+
+        return closed_count
+
+    def get_formated_date(self):
+        date = self.get_date()
+        return '%s %s, %s - %s:%s' % (calendar.month_name[date[1]],
+                                      str(date[2]),
+                                      str(date[0]),
+                                      str(date[3]).zfill(2),
+                                      str(date[4]).zfill(2))
+
+    def get_scanner(self):
+        return self.nmap['nmaprun'].get('scanner', '')
+
+    def set_scanner(self, scanner):
+        self.nmap['nmaprun']['scanner'] = scanner
+
+    def get_scanner_version (self):
+        return self.nmap['nmaprun'].get('version', '')
+
+    def set_scanner_version(self, version):
+        self.nmap['nmaprun']['version'] = version
+
+    ## Addresses
+    def get_type_addresses(self, addrtype):
+        addresses = []
+        for host in self.nmap.get('hosts', []):
+            for addr in host.address:
+                if addr['addrtype'] == addrtype:
+                    addresses.append(addr['addr'])
+        return addresses
+
+    # IPv4
+    def get_ipv4_addresses(self):
+        return self.get_type_addresses('ipv4')
+
+    # MAC
+    def get_mac_addresses(self):
+        return self.get_type_addresses('mac')
+
+    # IPv6
+    def get_ipv6_addresses(self):
+        return self.get_type_addresses('ipv6')
+
+
+    def get_hostnames(self):
+        hostnames = []
+        for host in self.nmap.get('hosts', []):
+            hostnames.extend(host.hostnames)
+        return hostnames
+
+    def get_ports(self):
+        ports = []
+        for host in self.nmap.get('hosts', []):
+            ports.append(host.ports)
+
+        return ports
+
+    def get_hosts(self):
+        return self.nmap.get('hosts', None)
+
+    def get_runstats(self):
+        return self.nmap.get('runstats', None)
+
+    def set_runstats(self, stats):
+        self.nmap['runstats'] = stats
+
+    def get_hosts_down(self):
+        return self.nmap['runstats']['hosts'].get('down', 0)
+
+    def set_hosts_down(self, down):
+        self.nmap['runstats']['hosts']['down'] = int(down)
+
+    def get_hosts_up(self):
+        return self.nmap['runstats']['hosts'].get('up', 0)
+
+    def set_hosts_up(self, up):
+        self.nmap['runstats']['hosts']['up'] = int(up)
+
+    def get_hosts_total(self):
+        return self.nmap['runstats']['hosts'].get('total', 0)
+
+    def set_hosts_total(self, scanned):
+        self.nmap['runstats']['hosts']['total'] = int(scanned)
+
+    def get_finish_time(self):
+        return self.nmap['runstats']['finished'].get('timestr', '')
+
+    def set_finish_time(self, finish):
+        self.nmap['runstats']['finished']['timestr'] = finish
+
+    def get_finish_epoch_time(self):
+        return time.localtime(self.nmap['runstats']['finished'].get('time', 0))
+
+    def set_finish_epoch_time(self, epoch_time):
+        self.nmap['runstats']['finished']['time'] = float(epoch_time)
+
+    def get_scan_name(self):
+        return self.nmap.get('scan_name', '')
+
+    def set_scan_name(self, scan_name):
+        self.nmap['scan_name'] = scan_name
+
+    def get_formated_finish_date(self):
+        date = self.finish_epoch_time
+        return '%s %s, %s - %s:%s' % (calendar.month_name[date[1]],
+                                      str(date[2]),
+                                      str(date[0]),
+                                      str(date[3]).zfill(2),
+                                      str(date[4]).zfill(2))
+
+    def _verify_output_options(self, command):
+        found = re.findall('(-o[XGASN]{1}) {0,1}', command)
+        splited = command.split(' ')
+
+        if found:
+            for option in found:
+                pos = splited.index(option)
+                del splited[pos+1]
+                del splited[pos]
+
+        return ' '.join(splited)
+
+    def get_comments(self):
+        return [host.comment for host in self.nmap['hosts']]
+
+    profile = property(get_profile, set_profile)
+    profile_name = property(get_profile_name, set_profile_name)
+    profile_description = property(get_profile_description,
+                                   set_profile_description)
+    profile_hint = property(get_profile_hint, set_profile_hint)
+    profile_annotation = property(get_profile_annotation,
+                                  set_profile_annotation)
+    profile_options = property(get_profile_options, set_profile_options)
+    target = property(get_target, set_target)
+    nmap_output = property(get_nmap_output, set_nmap_output)
+    debugging_level = property(get_debugging_level, set_debugging_level)
+    verbose_level = property(get_verbose_level, set_verbose_level)
+    scaninfo = property(get_scaninfo, set_scaninfo)
+    services_scanned = property(get_services_scanned)
+    nmap_command = property(get_nmap_command, set_nmap_command)
+    scan_type = property(get_scan_type)
+    protocol = property(get_protocol)
+    num_services = property(get_num_services)
+    date = property(get_date, set_date)
+    open_ports = property(get_open_ports)
+    filtered_ports = property(get_filtered_ports)
+    closed_ports = property(get_closed_ports)
+    formated_date = property(get_formated_date)
+    scanner = property(get_scanner, set_scanner)
+    scanner_version = property(get_scanner_version, set_scanner_version)
+    ipv4 = property(get_ipv4_addresses)
+    mac = property(get_mac_addresses)
+    ipv6 = property(get_ipv6_addresses)
+    hostnames = property(get_hostnames)
+    ports = property(get_ports)
+    hosts = property(get_hosts)
+    runstats = property(get_runstats, set_runstats)
+    hosts_down = property(get_hosts_down, set_hosts_down)
+    hosts_up = property(get_hosts_up, set_hosts_up)
+    hosts_total = property(get_hosts_total, set_hosts_total)
+    finish_time = property(get_finish_time, set_finish_time)
+    finish_epoch_time = property(get_finish_epoch_time, set_finish_epoch_time)
+    formated_finish_date = property(get_formated_finish_date)
+    comments = property(get_comments)
+    start = property(get_start, set_start)
+    scan_name = property(get_scan_name, set_scan_name)
+
+
+class NmapParserSAX(ParserBasics, ContentHandler):
+    def __init__(self):
+        ParserBasics.__init__(self)
+        self.id_sequence = 0
+
+        self.in_run_stats = False
+        self.in_host = False
+        self.in_ports = False
+        self.in_port = False
+        self.in_os = False
+        self.in_trace = False
+
+        # _tmp_port is used while parsing a port entity
+        self._tmp_port = {}
+
+        self.nmap_xml_file = None
+        self.unsaved = False
+
+    def set_parser(self, parser):
+        self.parser = parser
+
+    def set_xml_file(self, nmap_xml_file):
+        self.nmap_xml_file = nmap_xml_file
+
+    def parse(self):
+        if self.nmap_xml_file:
+            if isinstance(self.nmap_xml_file, basestring):
+                self.parser.parse(self.nmap_xml_file)
+            else:
+                self.nmap_xml_file.seek(0)
+                self.parser.parse(self.nmap_xml_file)
+        else:
+            raise Exception("There's no file to be parsed!")
+
+    def generate_id(self):
+        self.id_sequence += 1
+        return self.id_sequence
+
+    def _parse_nmaprun(self, attrs):
+        d = self.nmap['nmaprun']
+
+        self.scanner = attrs.get('scanner', '')
+        self.scanner_version = attrs.get('version', '')
+        self.start = attrs.get('start', '')
+        self.nmap_command = attrs.get('args', '')
+        d['xmloutputversion'] = attrs.get('xmloutputversion', '')
+
+        # Umit extension
+        self.nmap_output = attrs.get('nmap_output', '')
+        self.profile = attrs.get('profile', '')
+        self.profile_name = attrs.get('profile_name', '')
+        self.profile_hint = attrs.get('hint', '')
+        self.profile_description = attrs.get('description', '')
+        self.profile_annotation = attrs.get('annotation', '')
+        self.profile_options = attrs.get('options', '')
+        self.target = attrs.get('target', '')
+        self.scan_name = attrs.get('scan_name', '')
+
+    def _parse_runstats_finished(self, attrs):
+        self.finish_time = attrs.get('timestr', '')
+        self.finish_epoch_time = attrs.get('time', 0)
+
+    def _parse_runstats_hosts(self, attrs):
+        self.hosts_up = attrs.get('up', 0)
+        self.hosts_down = attrs.get('down', 0)
+        self.hosts_total = attrs.get('total', 0)
+
+    def _parse_host(self, attrs):
+        self.host_info = HostInfo(self.generate_id())
+        # Umit extension
+        self.host_info.comment = attrs.get('comment', '')
+
+
+    def startElement(self, name, attrs):
+        # AttributesImplDict is used here so utils/xmldisplay.py can display
+        # instances of AttributesImpl without any effort.
+        attrs = AttributesImplDict(attrs)
+
+        if name == 'nmaprun':
+            self._parse_nmaprun(attrs)
+
+        elif name in ('verbose', 'debugging'):
+            getattr(self, 'set_%s' % name)(attrs.copy())
+
+        elif name in ('scaninfo', 'taskbegin', 'taskprogress', 'taskend'):
+            self.nmap[name].append(attrs.copy())
+
+        # Parse runstats
+        elif name == 'runstats':
+            self.in_run_stats = True
+        elif self.in_run_stats and name == 'finished':
+            self._parse_runstats_finished(attrs)
+        elif self.in_run_stats and name == 'hosts':
+            self._parse_runstats_hosts(attrs)
+
+        # Parse hosts
+        elif name == 'host':
+            self.in_host = True
+            self._parse_host(attrs)
+        elif self.in_host and name in ('status', 'times', 'smurf', 'distance',
+                'uptime', 'tcpsequence', 'tcptssequence', 'ipidsequence'):
+            setattr(self.host_info, name, attrs.copy())
+        elif self.in_host and name in ('address', 'hostscript'):
+            getattr(self.host_info, name).append(attrs.copy())
+        elif self.in_host and name == 'hostnames':
+            self.in_hostnames = True
+        elif self.in_host and self.in_hostnames and name == 'hostname':
+            self.host_info.hostnames.append(attrs.copy())
+        # port
+        elif self.in_host and name == 'ports':
+            self.in_ports = True
+        elif self.in_host and self.in_ports and name == 'extraports':
+            # XXX extrareasons not supported yet
+            self.host_info.extraports.append(attrs.copy())
+        elif self.in_host and self.in_ports and name == 'port':
+            self.in_port = True
+            self._tmp_port.update(attrs)
+        elif self.in_host and self.in_ports and \
+                self.in_port and name in ('state', 'service'):
+            self._tmp_port.update(attrs)
+        # os
+        elif self.in_host and name == 'os':
+            self.in_os = True
+        elif self.in_host and self.in_os and name in ('osmatch',
+                'osclass', 'portused', 'osfingerprint'):
+            getattr(self.host_info, name).append(attrs.copy())
+        # trace
+        elif self.in_host and name == 'trace':
+            self.in_trace = True
+            self.host_info.trace.update(attrs.copy())
+        elif self.in_trace and name == 'hop':
+            self.host_info.trace['hop'].append(attrs.copy())
+
+
+    def endElement(self, name):
+        if name == 'runstats':
+            self.in_run_stats = False
+        elif name == 'host':
+            self.in_host = False
+            self.nmap['hosts'].append(self.host_info)
+            del self.host_info
+        elif self.in_host and name == 'hostnames':
+            self.in_hostnames = False
+        elif self.in_host and name == 'ports':
+            self.in_ports = False
+        elif self.in_host and self.in_ports and name == 'port':
+            self.in_port = False
+            self.host_info.ports.append(self._tmp_port.copy())
+            self._tmp_port.clear()
+        elif self.in_host and self.in_os and name == 'os':
+            self.in_os = False
+        elif self.in_host and name == 'trace':
+            self.in_trace = False
+
+
+    def write_xml(self, xml_file):
+        xml_file = self._verify_file(xml_file)
+        self.write_parser = XMLGenerator(xml_file)
+
+        # First, start the document:
+        self.write_parser.startDocument()
+
+        # Nmaprun element:
+        self._write_nmaprun()
+
+        # Scaninfo element:
+        self._write_scaninfo()
+
+        # Verbose element:
+        self._write_verbose()
+
+        # Debugging element:
+        self._write_debugging()
+
+        # Hosts elements:
+        self._write_hosts()
+
+        # Runstats element:
+        self._write_runstats()
+
+        # End of the xml file:
+        self.write_parser.endElement('nmaprun')
+        self.write_parser.endDocument()
+
+    def _write_runstats(self):
+        ##################
+        # Runstats element
+        self.write_parser.startElement('runstats', AttributesImpl(dict()))
+
+        ## Finished element
+        self.write_parser.startElement('finished',
+                AttributesImpl({
+                    'time': str(time.mktime(self.finish_epoch_time)),
+                    'timestr': self.finish_time})
+                )
+        self.write_parser.endElement('finished')
+
+        ## Hosts element
+        self.write_parser.startElement('hosts',
+                AttributesImpl({
+                    'up': str(self.hosts_up),
+                    'down': str(self.hosts_down),
+                    'total': str(self.hosts_total)})
+                )
+        self.write_parser.endElement('hosts')
+
+
+        self.write_parser.endElement('runstats')
+        # End of Runstats element
+        #########################
+
+    def _write_hosts(self):
+        for host in self.hosts:
+            # Start host element
+            self.write_parser.startElement('host',
+                    AttributesImpl({
+                        'comment': host.comment})
+                    )
+
+            # Status element
+            self.write_parser.startElement('status',
+                    AttributesImpl({
+                        'state': host.status['state']})
+                    )
+            self.write_parser.endElement('status')
+
+
+            ##################
+            # Address elements
+            for address in host.address:
+                self.__remove_none(address)
+                self.write_parser.startElement('address',
+                        AttributesImpl({
+                            'addr': address.get('addr', ''),
+                            'vendor': address.get('vendor', ''),
+                            'addrtype': address.get('addrtype', '')})
+                        )
+                self.write_parser.endElement('address')
+            # End of Address elements
+            #########################
+
+
+            ###################
+            # Hostnames element
+            self.write_parser.startElement('hostnames', AttributesImpl({}))
+
+            for hname in host.hostnames:
+                if not isinstance(hname, dict):
+                    continue
+
+                self.write_parser.startElement('hostname',
+                        AttributesImpl({
+                            'name': hname.get('hostname', ''),
+                            'type': hname.get('hostname_type', '')})
+                        )
+                self.write_parser.endElement('hostname')
+
+            self.write_parser.endElement('hostnames')
+            # End of Hostnames element
+            ##########################
+
+
+            ###############
+            # Ports element
+            self.write_parser.startElement('ports', AttributesImpl({}))
+
+            ## Extraports elements
+            for export in host.extraports:
+                self.__remove_none(export)
+                self.write_parser.startElement('extraports',
+                        AttributesImpl({
+                            'count': str(export.get('count', '')),
+                            'state': export.get('state', '')})
+                        )
+                self.write_parser.endElement('extraports')
+
+            ## Port elements
+            for port in host.ports:
+                self.__remove_none(port)
+                self.write_parser.startElement('port',
+                    AttributesImpl({
+                        'portid': port.get('portid', ''),
+                        'protocol': port.get('protocol', '')})
+                    )
+
+                ### Port state
+                self.write_parser.startElement('state',
+                        AttributesImpl({
+                            'state': port.get('state', '')})
+                        )
+                self.write_parser.endElement('state')
+
+                ### Port service info
+                self.write_parser.startElement('service',
+                        AttributesImpl({
+                            'conf': port.get('conf', ''),
+                            'method': port.get('method', ''),
+                            'name': port.get('name', ''),
+                            'product': port.get('product', ''),
+                            'version': port.get('version', ''),
+                            'extrainfo': port.get('extrainfo', '')})
+                        )
+                self.write_parser.endElement('service')
+
+                self.write_parser.endElement('port')
+
+            self.write_parser.endElement('ports')
+            # End of Ports element
+            ######################
+
+
+            ############
+            # OS element
+            self.write_parser.startElement('os', AttributesImpl({}))
+
+            ## Ports used elements
+            for pu in host.portused:
+                if not isinstance(pu, dict):
+                    continue
+
+                self.__remove_none(pu)
+                self.write_parser.startElement('portused',
+                        AttributesImpl({
+                            'state': pu.get('state', ''),
+                            'proto': pu.get('proto', ''),
+                            'portid': pu.get('portid', '')})
+                        )
+                self.write_parser.endElement('portused')
+
+            ## Osclass elements
+            for oc in host.osclass:
+                if not isinstance(oc, dict):
+                    continue
+
+                self.__remove_none(oc)
+                self.write_parser.startElement('osclass',
+                        AttributesImpl({
+                            'vendor': oc.get('vendor', ''),
+                            'osfamily': oc.get('osfamily', ''),
+                            'type': oc.get('type', ''),
+                            'osgen': oc.get('osgen', ''),
+                            'accuracy': oc.get('accuracy', '')})
+                        )
+                self.write_parser.endElement('osclass')
+
+            ## Osmatch elements
+            for om in host.osmatch:
+                if not isinstance(om, dict):
+                    continue
+
+                self.__remove_none(om)
+                self.write_parser.startElement('osmatch',
+                        AttributesImpl({
+                            'name': om.get('name', ''),
+                            'accuracy': om.get('accuracy', '')})
+                        )
+                self.write_parser.endElement('osmatch')
+
+            ## Osfingerprint element
+            if isinstance(host.osfingerprint, dict):
+                self.__remove_none(host.osfingerprint)
+                self.write_parser.startElement('osfingerprint',
+                        AttributesImpl({
+                            'fingerprint': host.osfingerprint.get(
+                                'fingerprint', '')})
+                        )
+                self.write_parser.endElement('osfingerprint')
+
+
+            self.write_parser.endElement('os')
+            # End of OS element
+            ###################
+
+            # Uptime element
+            if isinstance(host.uptime, dict):
+                self.write_parser.startElement('uptime',
+                        AttributesImpl({
+                            'seconds': host.uptime.get('seconds', ''),
+                            'lastboot': host.uptime.get('lastboot', '')})
+                        )
+                self.write_parser.endElement('uptime')
+
+            #####################
+            # Sequences elementes
+            ## TCP Sequence element
+            if isinstance(host.tcpsequence, dict):
+                self.write_parser.startElement('tcpsequence',
+                        AttributesImpl({
+                            'index': host.tcpsequence.get('index', ''),
+                            'class': host.tcpsequence.get('class', ''),
+                            'difficulty': host.tcpsequence.get('difficulty',
+                                ''),
+                            'values': host.tcpsequence.get('values', '')})
+                        )
+                self.write_parser.endElement('tcpsequence')
+
+            ## IP ID Sequence element
+            if isinstance(host.ipidsequence, dict):
+                self.write_parser.startElement('ipidsequence',
+                        AttributesImpl({
+                            'class': host.ipidsequence.get('class', ''),
+                            'values': host.ipidsequence.get('values', '')})
+                        )
+                self.write_parser.endElement('ipidsequence')
+
+            ## TCP TS Sequence element
+            if isinstance(host.tcptssequence, dict):
+                self.write_parser.startElement('tcptssequence',
+                        AttributesImpl({
+                            'class': host.tcptssequence.get('class', ''),
+                            'values': host.tcptssequence.get('values', '')})
+                        )
+                self.write_parser.endElement('tcptssequence')
+            # End of sequences elements
+            ###########################
+
+            # End host element
+            self.write_parser.endElement('host')
+
+    def _write_debugging(self):
+        self.write_parser.startElement('debugging',
+                AttributesImpl({
+                    'level': str(self.debugging_level)})
+                )
+        self.write_parser.endElement('debugging')
+
+    def _write_verbose(self):
+        self.write_parser.startElement('verbose',
+                AttributesImpl({
+                    'level': str(self.verbose_level)})
+                )
+        self.write_parser.endElement('verbose')
+
+    def _write_scaninfo(self):
+        for scan in self.scaninfo:
+            if not isinstance(scan, dict):
+                continue
+
+            self.write_parser.startElement('scaninfo',
+                    AttributesImpl({
+                        'type': scan.get('type', ''),
+                        'protocol': scan.get('protocol', ''),
+                        'numservices': scan.get('numservices', ''),
+                        'services': scan.get('services', '')})
+                    )
+            self.write_parser.endElement('scaninfo')
+
+    def _write_nmaprun(self):
+        self.write_parser.startElement('nmaprun',
+                AttributesImpl({
+                    'annotation': str(self.profile_annotation),
+                    'args': str(self.nmap_command),
+                    'description': str(self.profile_description),
+                    'hint': str(self.profile_hint),
+                    'nmap_output': str(self.nmap_output),
+                    'options': str(self.profile_options),
+                    'profile': str(self.profile),
+                    'profile_name': str(self.profile_name),
+                    'scanner': str(self.scanner),
+                    'start': str(self.start),
+                    'startstr': str(self.formated_date),
+                    'target': str(self.target),
+                    'version': str(self.scanner_version),
+                    'scan_name': str(self.scan_name)})
+                )
+
+    def _verify_file(self, xml_file):
+        # let errors be raised
+        if isinstance(xml_file, basestring):
+            xml_file = open(xml_file, 'w')
+        else:
+            mode = xml_file.mode
+            if mode in ('r+', 'w', 'w+'):
+                xml_file.seek(0)
+        return xml_file
+
+    def __remove_none(self, dic):
+        # saxutils will have problems if your dic contain any None items
+        # (it will try to use the replace method, for example, which a
+        # None object doesn't have).
+        for k, v in dic.items():
+            if k is None or v is None:
+                del dic[k]
+
+    def is_unsaved(self):
+        return self.unsaved
+
+
+def nmap_parser_sax(nmap_xml_file=""):
+    parser = make_parser()
+    nmap_parser = NmapParserSAX()
+
+    parser.setContentHandler(nmap_parser)
+    nmap_parser.set_parser(parser)
+    nmap_parser.set_xml_file(nmap_xml_file)
+
+    return nmap_parser
+
+NmapParser = nmap_parser_sax
Index: /network-scanner/branches/nmapparser/test/samples/quick_services_ver_det_2hosts.usr
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/quick_services_ver_det_2hosts.usr (revision 3911)
+++ /network-scanner/branches/nmapparser/test/samples/quick_services_ver_det_2hosts.usr (revision 3911)
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<nmaprun profile="nmap -T Aggressive -sV -v %s" scanner="nmap" hint="" scan_name="" args="nmap -T Aggressive -sV -v scanme.nmap.org 127.0.0.1" profile_name="Quick Services version detection" startstr="Styczeń 6, 2009 - 23:37" options="Aggressive,Version detection,Verbose" start="1231281476" nmap_output="&#10;Starting Nmap 4.53 ( http://insecure.org ) at 2009-01-06 23:37 CET&#10;Initiating Ping Scan at 23:37&#10;Scanning 2 hosts [1 port/host]&#10;Completed Ping Scan at 23:37, 0.20s elapsed (2 total hosts)&#10;Initiating Connect Scan at 23:37&#10;Scanning localhost (127.0.0.1) [1714 ports]&#10;Discovered open port 22/tcp on 127.0.0.1&#10;Completed Connect Scan at 23:37, 0.08s elapsed (1714 total ports)&#10;Initiating Service scan at 23:37&#10;Scanning 1 service on localhost (127.0.0.1)&#10;Completed Service scan at 23:37, 0.05s elapsed (1 service on 1 host)&#10;SCRIPT ENGINE: Initiating script scanning.&#10;Host localhost (127.0.0.1) appears to be up ... good.&#10;Interesting ports on localhost (127.0.0.1):&#10;Not shown: 1713 closed ports&#10;PORT   STATE SERVICE VERSION&#10;22/tcp open  ssh     OpenSSH 4.7p1 Debian 8ubuntu1.2 (protocol 2.0)&#10;Service Info: OS: Linux&#10;&#10;Read data files from: /usr/share/nmap&#10;Service detection performed. Please report any incorrect results at http://insecure.org/nmap/submit/ .&#10;Nmap done: 2 IP addresses (1 host up) scanned in 0.467 seconds&#10;" version="4.53" target="scanme.nmap.org 127.0.0.1" annotation="" description=""><scaninfo services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" protocol="tcp" numservices="1714" type="connect"></scaninfo><verbose level="1"></verbose><debugging level="0"></debugging><host comment=""><status state="up"></status><address addrtype="ipv4" vendor="" addr="127.0.0.1"></address><address addrtype="" vendor="" addr=""></address><address addrtype="" vendor="" addr=""></address><hostnames><hostname type="PTR" name="localhost"></hostname></hostnames><ports><extraports count="1713" state="closed"></extraports><port protocol="tcp" portid="22"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port></ports><os><osfingerprint fingerprint=""></osfingerprint></os><uptime lastboot="" seconds=""></uptime><tcpsequence index="" values="" class="" difficulty=""></tcpsequence><ipidsequence values="" class=""></ipidsequence><tcptssequence values="" class=""></tcptssequence></host><runstats><finished time="1231281476"></finished><hosts down="1" total="2" up="1"></hosts></runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/regular_scan__root.usr
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/regular_scan__root.usr (revision 3908)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/regular_scan__root.usr (revision 3908)
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<nmaprun profile="nmap -v %s" scanner="nmap" hint="" scan_name="" args="nmap -v scanme.nmap.org" profile_name="Regular Scan" startstr="Styczeń 6, 2009 - 23:13" options="Verbose" start="1231279980" nmap_output="&#10;Starting Nmap 4.53 ( http://insecure.org ) at 2009-01-06 23:13 CET&#10;Initiating Ping Scan at 23:13&#10;Scanning 64.13.134.52 [2 ports]&#10;Completed Ping Scan at 23:13, 0.23s elapsed (1 total hosts)&#10;Initiating Parallel DNS resolution of 1 host. at 23:13&#10;Completed Parallel DNS resolution of 1 host. at 23:13, 2.56s elapsed&#10;Initiating SYN Stealth Scan at 23:13&#10;Scanning scanme.nmap.org (64.13.134.52) [1714 ports]&#10;Discovered open port 80/tcp on 64.13.134.52&#10;Discovered open port 53/tcp on 64.13.134.52&#10;Discovered open port 22/tcp on 64.13.134.52&#10;Completed SYN Stealth Scan at 23:13, 49.28s elapsed (1714 total ports)&#10;Host scanme.nmap.org (64.13.134.52) appears to be up ... good.&#10;Interesting ports on scanme.nmap.org (64.13.134.52):&#10;Not shown: 1708 filtered ports&#10;PORT    STATE  SERVICE&#10;22/tcp  open   ssh&#10;25/tcp  closed smtp&#10;53/tcp  open   domain&#10;70/tcp  closed gopher&#10;80/tcp  open   http&#10;113/tcp closed auth&#10;&#10;Read data files from: /usr/share/nmap&#10;Nmap done: 1 IP address (1 host up) scanned in 52.166 seconds&#10;           Raw packets sent: 5142 (226.228KB) | Rcvd: 14 (644B)&#10;" version="4.53" target="scanme.nmap.org" annotation="" description=""><scaninfo services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" protocol="tcp" numservices="1714" type="syn"></scaninfo><verbose level="1"></verbose><debugging level="0"></debugging><host comment=""><status state="up"></status><address addrtype="ipv4" vendor="" addr="64.13.134.52"></address><address addrtype="" vendor="" addr=""></address><address addrtype="" vendor="" addr=""></address><hostnames><hostname type="PTR" name="scanme.nmap.org"></hostname></hostnames><ports><extraports count="1708" state="filtered"></extraports><port protocol="tcp" portid="22"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="25"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="53"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="70"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="80"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="113"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port></ports><os><osfingerprint fingerprint=""></osfingerprint></os><uptime lastboot="" seconds=""></uptime><tcpsequence index="" values="" class="" difficulty=""></tcpsequence><ipidsequence values="" class=""></ipidsequence><tcptssequence values="" class=""></tcptssequence></host><runstats><finished time="1231280032"></finished><hosts down="0" total="1" up="1"></hosts></runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__root.usr
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__root.usr (revision 3908)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__root.usr (revision 3908)
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<nmaprun profile="nmap -d -T Aggressive --packet_trace -v -n %s" scanner="nmap" hint="" scan_name="" args="nmap -d -T Aggressive --packet_trace -v -n scanme.nmap.org" profile_name="Quick and verbose scan" startstr="Styczeń 6, 2009 - 23:11" options="Debug,Aggressive,Watch packets,Verbose,Disable reverse DNS resolution" start="1231279881" nmap_output="&#10;Starting Nmap 4.53 ( http://insecure.org ) at 2009-01-06 23:11 CET&#10;--------------- Timing report ---------------&#10;  hostgroups: min 1, max 100000&#10;  rtt-timeouts: init 500, min 100, max 1250&#10;  max-scan-delay: TCP 10, UDP 1000&#10;  parallelism: min 0, max 0&#10;  max-retries: 6, host-timeout: 0&#10;---------------------------------------------&#10;Initiating Ping Scan at 23:11&#10;Scanning 64.13.134.52 [2 ports]&#10;Packet capture filter (device eth0): dst host 156.17.238.83 and (icmp or ((tcp or udp) and (src host 64.13.134.52)))&#10;SENT (0.0830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:80 A ttl=53 id=62345 iplen=40  seq=2208061824 win=2048 ack=2140830043 &#10;SENT (0.0830s) ICMP 156.17.238.83 &gt; 64.13.134.52 echo request (type=8/code=0) ttl=57 id=46128 iplen=28 &#10;RCVD (0.2850s) TCP 64.13.134.52:80 &gt; 156.17.238.83:59922 R ttl=49 id=0 iplen=40  seq=2140830043 win=0 &#10;We got a TCP ping packet back from 64.13.134.52 port 80 (trynum = 0)&#10;Completed Ping Scan at 23:11, 0.22s elapsed (1 total hosts)&#10;Initiating SYN Stealth Scan at 23:11&#10;Scanning 64.13.134.52 [1714 ports]&#10;Packet capture filter (device eth0): dst host 156.17.238.83 and (icmp or (tcp and (src host 64.13.134.52)))&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:636 S ttl=53 id=47985 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:389 S ttl=39 id=31053 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:443 S ttl=39 id=18853 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:113 S ttl=37 id=64385 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1723 S ttl=42 id=57804 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:80 S ttl=50 id=49188 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:25 S ttl=55 id=47625 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:23 S ttl=39 id=26042 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:554 S ttl=45 id=53706 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.3080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:53 S ttl=53 id=13313 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;RCVD (0.5090s) TCP 64.13.134.52:113 &gt; 156.17.238.83:59922 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3513148415 &#10;RCVD (0.5090s) TCP 64.13.134.52:80 &gt; 156.17.238.83:59922 SA ttl=49 id=0 iplen=44  seq=778191902 win=5840 ack=3513148415 &lt;mss 1460&gt;&#10;Discovered open port 80/tcp on 64.13.134.52&#10;RCVD (0.5090s) TCP 64.13.134.52:25 &gt; 156.17.238.83:59922 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3513148415 &#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3389 S ttl=41 id=18606 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:21 S ttl=58 id=58561 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:22 S ttl=53 id=23872 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:256 S ttl=51 id=24939 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:989 S ttl=52 id=53938 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3398 S ttl=50 id=25055 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:740 S ttl=37 id=20002 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7200 S ttl=37 id=9279 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:566 S ttl=39 id=17408 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:703 S ttl=38 id=25670 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:831 S ttl=56 id=4705 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:557 S ttl=44 id=47612 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.5100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:10083 S ttl=43 id=50159 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1416 S ttl=54 id=22600 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:677 S ttl=38 id=32679 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2006 S ttl=37 id=28217 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:917 S ttl=56 id=59512 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:712 S ttl=51 id=28132 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:927 S ttl=59 id=37260 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1529 S ttl=44 id=10333 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:749 S ttl=37 id=54639 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;RCVD (0.7130s) TCP 64.13.134.52:22 &gt; 156.17.238.83:59922 SA ttl=49 id=0 iplen=44  seq=775320172 win=5840 ack=3513148415 &lt;mss 1460&gt;&#10;Discovered open port 22/tcp on 64.13.134.52&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:440 S ttl=40 id=38057 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:542 S ttl=38 id=58212 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:31416 S ttl=42 id=39855 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:291 S ttl=46 id=47541 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:11371 S ttl=37 id=36675 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27003 S ttl=53 id=15735 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:247 S ttl=43 id=18198 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:403 S ttl=48 id=33891 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (0.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1455 S ttl=45 id=12650 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1455 S ttl=40 id=18137 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:403 S ttl=56 id=56269 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:247 S ttl=42 id=48342 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27003 S ttl=45 id=37586 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:11371 S ttl=41 id=60543 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:291 S ttl=54 id=62308 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:31416 S ttl=47 id=43859 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:542 S ttl=59 id=18580 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:440 S ttl=58 id=22318 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:749 S ttl=53 id=39722 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1529 S ttl=53 id=33382 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:927 S ttl=53 id=33917 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:712 S ttl=53 id=559 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:917 S ttl=54 id=17932 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2006 S ttl=48 id=57186 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:677 S ttl=39 id=4113 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1416 S ttl=54 id=37662 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:10083 S ttl=45 id=52282 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:557 S ttl=44 id=56867 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:831 S ttl=38 id=22721 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:703 S ttl=49 id=35351 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:566 S ttl=39 id=24749 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7200 S ttl=47 id=48126 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:740 S ttl=47 id=20603 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3398 S ttl=59 id=26269 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:989 S ttl=49 id=34803 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:256 S ttl=46 id=63918 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:21 S ttl=37 id=17994 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3389 S ttl=51 id=38509 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:53 S ttl=41 id=44459 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:554 S ttl=41 id=55098 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:23 S ttl=57 id=62264 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1723 S ttl=56 id=50603 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:443 S ttl=46 id=26292 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:389 S ttl=58 id=8975 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (1.7730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:636 S ttl=53 id=18740 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;RCVD (1.9740s) TCP 64.13.134.52:53 &gt; 156.17.238.83:59923 SA ttl=49 id=0 iplen=44  seq=778595555 win=5840 ack=3513213952 &lt;mss 1460&gt;&#10;Discovered open port 53/tcp on 64.13.134.52&#10;Increased max_successful_tryno for 64.13.134.52 to 1 (packet drop)&#10;SENT (3.1700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:636 S ttl=37 id=7834 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (3.5670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:389 S ttl=58 id=7897 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (3.9670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:443 S ttl=49 id=26323 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (4.3620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1723 S ttl=45 id=51339 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (4.7590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:23 S ttl=42 id=26335 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (5.1570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:554 S ttl=52 id=3492 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (5.5550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3389 S ttl=59 id=3797 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (5.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:21 S ttl=59 id=40292 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (6.3460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:256 S ttl=46 id=29986 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (6.7440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:989 S ttl=41 id=24569 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (7.1380s) TCP 156.17.238.83:59929 &gt; 64.13.134.52:113 S ttl=43 id=31984 iplen=44  seq=3496370942 win=4096 &lt;mss 1460&gt;&#10;SENT (7.5350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3398 S ttl=39 id=37106 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (7.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:740 S ttl=53 id=26933 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (8.3260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7200 S ttl=44 id=15686 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (8.7240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:566 S ttl=56 id=23619 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (9.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:703 S ttl=41 id=51023 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (9.5140s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:831 S ttl=38 id=15490 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (9.9120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:557 S ttl=50 id=25129 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (10.3070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:10083 S ttl=55 id=8714 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (10.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1416 S ttl=42 id=34465 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (11.0990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:677 S ttl=49 id=23333 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (11.4940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2006 S ttl=37 id=9788 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (11.8910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:917 S ttl=59 id=22000 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (12.2860s) TCP 156.17.238.83:59930 &gt; 64.13.134.52:113 S ttl=53 id=46000 iplen=44  seq=3546702334 win=2048 &lt;mss 1460&gt;&#10;SENT (12.6870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:712 S ttl=38 id=64443 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (13.0830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:927 S ttl=37 id=35894 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (13.4780s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1529 S ttl=58 id=34051 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (13.8760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:749 S ttl=50 id=16679 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (14.2710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:440 S ttl=42 id=11676 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (14.6680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:542 S ttl=44 id=32636 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (15.0630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:31416 S ttl=51 id=30227 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (15.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:291 S ttl=44 id=52785 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (15.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:11371 S ttl=51 id=44206 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (16.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27003 S ttl=37 id=60724 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (16.6470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:247 S ttl=45 id=47216 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (17.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:403 S ttl=39 id=25047 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (17.4390s) TCP 156.17.238.83:59931 &gt; 64.13.134.52:113 S ttl=53 id=59033 iplen=44  seq=3529924862 win=2048 &lt;mss 1460&gt;&#10;SENT (17.8350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1455 S ttl=37 id=12158 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (18.2430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6 S ttl=52 id=33710 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (18.6400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6 S ttl=56 id=44583 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (19.0350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6 S ttl=44 id=2617 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (19.4300s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:148 S ttl=38 id=54233 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (19.8270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:148 S ttl=59 id=35764 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (20.2220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:148 S ttl=50 id=22826 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (20.6190s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:130 S ttl=37 id=51052 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (21.0140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:130 S ttl=43 id=11263 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (21.4100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:130 S ttl=55 id=14209 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (21.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1510 S ttl=40 id=50485 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (22.2020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1510 S ttl=58 id=38314 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (22.5980s) TCP 156.17.238.83:59932 &gt; 64.13.134.52:113 S ttl=39 id=21117 iplen=44  seq=3580258302 win=4096 &lt;mss 1460&gt;&#10;RCVD (22.8000s) TCP 64.13.134.52:113 &gt; 156.17.238.83:59932 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3580258303 &#10;SENT (22.8000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1510 S ttl=44 id=63364 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (22.8000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1433 S ttl=46 id=24280 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (23.1500s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1433 S ttl=47 id=35283 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (23.1500s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:43 S ttl=55 id=58395 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (23.4980s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:43 S ttl=52 id=34644 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (23.4980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1433 S ttl=45 id=61018 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (23.8470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:43 S ttl=56 id=29556 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (23.8470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:241 S ttl=58 id=35347 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (24.1940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:241 S ttl=52 id=39487 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (24.1940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3372 S ttl=48 id=65070 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (24.5420s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3372 S ttl=50 id=9642 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (24.5420s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:241 S ttl=42 id=1542 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (24.8910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3372 S ttl=59 id=60587 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (24.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:380 S ttl=58 id=16179 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (25.2380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:380 S ttl=53 id=10153 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (25.2380s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1019 S ttl=38 id=35828 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (25.5870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1019 S ttl=53 id=22781 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (25.5870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:380 S ttl=39 id=59834 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (25.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1019 S ttl=40 id=29653 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (25.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6544 S ttl=39 id=47238 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (26.2830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6544 S ttl=43 id=13029 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (26.2830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:393 S ttl=58 id=29621 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (26.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:393 S ttl=57 id=2798 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (26.6310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6544 S ttl=45 id=2238 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (26.9790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:393 S ttl=53 id=54243 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (26.9790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:932 S ttl=42 id=16351 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (27.3270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:932 S ttl=59 id=65212 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (27.3270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:797 S ttl=57 id=28102 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (27.6760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:797 S ttl=41 id=1899 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (27.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:932 S ttl=40 id=10781 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.0220s) TCP 156.17.238.83:59933 &gt; 64.13.134.52:113 S ttl=48 id=50548 iplen=44  seq=3563480830 win=1024 &lt;mss 1460&gt;&#10;SENT (28.0220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:797 S ttl=46 id=3352 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;RCVD (28.2230s) TCP 64.13.134.52:113 &gt; 156.17.238.83:59933 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3563480831 &#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:19 S ttl=46 id=29035 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:171 S ttl=42 id=16880 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:145 S ttl=47 id=15127 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13712 S ttl=46 id=39456 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:165 S ttl=58 id=47408 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:781 S ttl=53 id=59880 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1377 S ttl=51 id=4126 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4008 S ttl=38 id=5025 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:639 S ttl=42 id=9097 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:125 S ttl=52 id=44327 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18184 S ttl=56 id=21043 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1411 S ttl=50 id=56492 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:38292 S ttl=47 id=51918 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1461 S ttl=49 id=43819 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:285 S ttl=38 id=34998 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4500 S ttl=56 id=43253 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:44 S ttl=53 id=21427 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:606 S ttl=54 id=44731 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:666 S ttl=59 id=23816 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:330 S ttl=38 id=38414 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9876 S ttl=41 id=17835 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:373 S ttl=59 id=14555 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2009 S ttl=38 id=13625 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:799 S ttl=57 id=2486 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6222 S ttl=58 id=64130 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1501 S ttl=38 id=21686 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3 S ttl=51 id=34354 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27006 S ttl=57 id=20057 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:14 S ttl=42 id=9578 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1103 S ttl=46 id=13037 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:10 S ttl=44 id=33689 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3900 S ttl=48 id=60715 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:830 S ttl=56 id=5483 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:478 S ttl=53 id=57422 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1432 S ttl=52 id=7319 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:837 S ttl=56 id=21660 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1337 S ttl=56 id=58736 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27004 S ttl=56 id=1224 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:928 S ttl=52 id=55382 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:485 S ttl=42 id=23009 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1001 S ttl=38 id=60287 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2001 S ttl=38 id=51355 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1470 S ttl=43 id=16551 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:348 S ttl=42 id=37256 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:873 S ttl=50 id=20486 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:20005 S ttl=57 id=54257 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:44334 S ttl=37 id=50200 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.2270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:506 S ttl=49 id=14276 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (28.3340s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:860 S ttl=58 id=39982 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:506 S ttl=47 id=52346 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:44334 S ttl=57 id=59722 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:20005 S ttl=38 id=37930 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:873 S ttl=53 id=39034 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:348 S ttl=55 id=9124 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1470 S ttl=48 id=7627 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2001 S ttl=46 id=43618 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1001 S ttl=43 id=64403 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:485 S ttl=44 id=40199 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:928 S ttl=57 id=54650 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27004 S ttl=55 id=8896 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1337 S ttl=39 id=23428 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:837 S ttl=49 id=64907 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1432 S ttl=58 id=12758 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:478 S ttl=56 id=18264 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:830 S ttl=48 id=19734 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3900 S ttl=56 id=29269 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:10 S ttl=42 id=64894 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1103 S ttl=40 id=14212 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:14 S ttl=45 id=7864 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27006 S ttl=49 id=2725 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3 S ttl=49 id=35911 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1501 S ttl=41 id=47700 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6222 S ttl=43 id=10702 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:799 S ttl=39 id=64660 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2009 S ttl=59 id=13892 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:373 S ttl=53 id=65217 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9876 S ttl=50 id=45469 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:330 S ttl=58 id=5267 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:666 S ttl=58 id=12752 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:606 S ttl=50 id=40238 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:44 S ttl=41 id=13752 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4500 S ttl=48 id=38603 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:285 S ttl=42 id=28143 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1461 S ttl=41 id=37888 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:38292 S ttl=50 id=20959 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1411 S ttl=41 id=9802 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18184 S ttl=43 id=2557 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:125 S ttl=48 id=15808 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:639 S ttl=56 id=43341 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4008 S ttl=56 id=24778 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1377 S ttl=47 id=39274 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:781 S ttl=43 id=25429 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:165 S ttl=55 id=21893 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13712 S ttl=42 id=13394 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:145 S ttl=45 id=38692 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:171 S ttl=45 id=60904 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (28.5400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:19 S ttl=48 id=46772 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.6470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:860 S ttl=48 id=61447 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:19 S ttl=57 id=53774 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:171 S ttl=39 id=34036 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:145 S ttl=50 id=26767 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13712 S ttl=54 id=38260 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:165 S ttl=44 id=40588 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:781 S ttl=52 id=61582 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1377 S ttl=38 id=25055 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4008 S ttl=38 id=24680 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:639 S ttl=40 id=18710 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:125 S ttl=39 id=40423 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18184 S ttl=46 id=45723 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1411 S ttl=43 id=54766 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:38292 S ttl=49 id=28000 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1461 S ttl=47 id=3244 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:285 S ttl=49 id=53843 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4500 S ttl=54 id=35991 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:44 S ttl=46 id=9761 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:606 S ttl=58 id=28822 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:666 S ttl=55 id=2279 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:330 S ttl=49 id=64188 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9876 S ttl=48 id=44845 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:373 S ttl=41 id=52493 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2009 S ttl=58 id=52662 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:799 S ttl=41 id=7482 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6222 S ttl=42 id=8056 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1501 S ttl=50 id=35128 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3 S ttl=40 id=53748 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27006 S ttl=45 id=11311 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:14 S ttl=51 id=23983 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1103 S ttl=57 id=56912 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:10 S ttl=46 id=64735 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3900 S ttl=46 id=43068 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:830 S ttl=38 id=13550 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:478 S ttl=53 id=17873 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1432 S ttl=40 id=41090 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:837 S ttl=38 id=55617 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1337 S ttl=59 id=38334 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27004 S ttl=51 id=26678 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:928 S ttl=38 id=2435 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:485 S ttl=55 id=52452 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1001 S ttl=47 id=31088 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2001 S ttl=54 id=49422 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1470 S ttl=38 id=2287 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:348 S ttl=52 id=62119 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:873 S ttl=41 id=1504 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:20005 S ttl=55 id=8309 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:44334 S ttl=41 id=1232 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (28.8540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:506 S ttl=47 id=31034 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (28.9600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:860 S ttl=52 id=3126 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27005 S ttl=44 id=30036 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:442 S ttl=38 id=2072 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1469 S ttl=52 id=30530 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:34 S ttl=57 id=35228 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1763 S ttl=48 id=39533 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:524 S ttl=57 id=47541 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1991 S ttl=55 id=5374 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:356 S ttl=42 id=16396 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2106 S ttl=52 id=59968 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:190 S ttl=44 id=53316 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1346 S ttl=59 id=6008 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6105 S ttl=40 id=5481 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3001 S ttl=53 id=49095 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:789 S ttl=43 id=30784 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1477 S ttl=38 id=34761 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5191 S ttl=39 id=10500 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:91 S ttl=59 id=25211 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6005 S ttl=46 id=1296 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:798 S ttl=51 id=26341 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27 S ttl=39 id=37728 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1530 S ttl=54 id=37238 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:265 S ttl=44 id=34483 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:967 S ttl=52 id=53833 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:645 S ttl=56 id=44338 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:295 S ttl=49 id=22652 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:626 S ttl=47 id=14478 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:416 S ttl=49 id=21456 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:377 S ttl=47 id=33512 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1998 S ttl=54 id=19762 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9105 S ttl=56 id=28475 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2028 S ttl=57 id=12787 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:667 S ttl=59 id=24416 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:178 S ttl=47 id=54356 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:617 S ttl=47 id=32407 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:407 S ttl=42 id=56878 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:327 S ttl=44 id=58619 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2064 S ttl=50 id=64127 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6881 S ttl=37 id=34485 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5631 S ttl=55 id=44452 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:536 S ttl=53 id=48835 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:946 S ttl=41 id=23809 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:216 S ttl=40 id=8970 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:44443 S ttl=44 id=27768 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:773 S ttl=44 id=29947 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:755 S ttl=54 id=17889 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1520 S ttl=40 id=46164 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1437 S ttl=49 id=3501 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.1700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:991 S ttl=53 id=43071 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (29.2700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:276 S ttl=48 id=17444 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:377 S ttl=57 id=57551 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:416 S ttl=38 id=41950 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:626 S ttl=54 id=4744 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:295 S ttl=57 id=866 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:645 S ttl=56 id=59193 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:967 S ttl=51 id=25973 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:265 S ttl=49 id=33264 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1530 S ttl=37 id=24882 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27 S ttl=47 id=60736 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:798 S ttl=44 id=29724 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6005 S ttl=48 id=42846 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:91 S ttl=50 id=58836 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5191 S ttl=37 id=11544 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1477 S ttl=51 id=16253 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:789 S ttl=43 id=44140 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3001 S ttl=57 id=64413 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6105 S ttl=58 id=59975 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1346 S ttl=58 id=27369 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:190 S ttl=48 id=45345 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2106 S ttl=43 id=10386 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:356 S ttl=44 id=49849 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1991 S ttl=57 id=24386 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:524 S ttl=57 id=64369 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1763 S ttl=43 id=51122 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:34 S ttl=48 id=45652 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1469 S ttl=50 id=31551 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:442 S ttl=59 id=21453 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27005 S ttl=59 id=21907 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:991 S ttl=39 id=34090 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1437 S ttl=40 id=24975 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1520 S ttl=47 id=10140 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:755 S ttl=49 id=64055 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:773 S ttl=44 id=40968 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:44443 S ttl=54 id=51314 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:216 S ttl=40 id=29853 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:946 S ttl=44 id=7810 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:536 S ttl=53 id=34931 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5631 S ttl=39 id=44229 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6881 S ttl=58 id=44603 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2064 S ttl=46 id=19129 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:327 S ttl=55 id=64766 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:407 S ttl=37 id=17190 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:617 S ttl=40 id=61719 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:178 S ttl=48 id=45646 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:667 S ttl=42 id=62642 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2028 S ttl=56 id=63707 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9105 S ttl=41 id=15644 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (29.4840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1998 S ttl=39 id=22368 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (29.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:276 S ttl=44 id=28208 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1991 S ttl=51 id=34080 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:356 S ttl=52 id=14427 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2106 S ttl=57 id=10053 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:190 S ttl=55 id=12656 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1346 S ttl=50 id=57481 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6105 S ttl=53 id=21665 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3001 S ttl=37 id=56910 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:789 S ttl=46 id=30114 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1477 S ttl=46 id=9329 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5191 S ttl=46 id=9618 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:91 S ttl=37 id=28200 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6005 S ttl=59 id=58977 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:798 S ttl=51 id=39597 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27 S ttl=41 id=59040 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1530 S ttl=46 id=36927 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:265 S ttl=43 id=15630 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:967 S ttl=49 id=32709 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7890s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:645 S ttl=48 id=40759 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7890s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:295 S ttl=46 id=61596 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7890s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:626 S ttl=40 id=15887 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7890s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:416 S ttl=44 id=19576 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7890s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:377 S ttl=56 id=47179 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27005 S ttl=39 id=53325 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:442 S ttl=56 id=35879 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1469 S ttl=59 id=6638 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:34 S ttl=47 id=29438 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1763 S ttl=39 id=4388 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:524 S ttl=56 id=49387 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:536 S ttl=45 id=506 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:946 S ttl=51 id=15489 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:216 S ttl=41 id=51564 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:44443 S ttl=49 id=54690 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:773 S ttl=48 id=423 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:755 S ttl=58 id=43120 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1520 S ttl=53 id=51515 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1437 S ttl=39 id=58188 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:991 S ttl=44 id=63339 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1998 S ttl=59 id=8747 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9105 S ttl=55 id=12135 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2028 S ttl=48 id=45345 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:667 S ttl=42 id=31081 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:178 S ttl=55 id=34553 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:617 S ttl=47 id=12641 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:407 S ttl=55 id=58567 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.7990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:327 S ttl=52 id=52350 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.8020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2064 S ttl=47 id=56577 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.8020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6881 S ttl=55 id=6476 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (29.8020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5631 S ttl=56 id=16426 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (29.8950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:276 S ttl=51 id=17313 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1476 S ttl=42 id=33974 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:16444 S ttl=45 id=26272 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1398 S ttl=48 id=58642 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:290 S ttl=51 id=57466 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1546 S ttl=47 id=9216 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:902 S ttl=43 id=53502 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:737 S ttl=37 id=22126 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:444 S ttl=38 id=56406 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3264 S ttl=40 id=60181 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2432 S ttl=57 id=60188 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9040 S ttl=45 id=38036 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:492 S ttl=40 id=22897 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:242 S ttl=54 id=833 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5001 S ttl=48 id=55629 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6112 S ttl=58 id=50378 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9 S ttl=59 id=23587 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:105 S ttl=59 id=41034 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:619 S ttl=38 id=47028 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:956 S ttl=57 id=50573 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:678 S ttl=43 id=56 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2000 S ttl=56 id=51444 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:124 S ttl=46 id=8082 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:943 S ttl=37 id=29959 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:188 S ttl=44 id=5436 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6144 S ttl=46 id=16596 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:229 S ttl=50 id=20215 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:901 S ttl=51 id=24877 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:275 S ttl=47 id=1173 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1542 S ttl=55 id=1120 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:182 S ttl=43 id=41534 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1518 S ttl=50 id=8042 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1076 S ttl=56 id=30080 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:287 S ttl=52 id=29752 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:313 S ttl=52 id=43690 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18185 S ttl=41 id=33394 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:141 S ttl=41 id=26846 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:561 S ttl=44 id=3631 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1508 S ttl=51 id=19234 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:935 S ttl=58 id=18642 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:223 S ttl=58 id=238 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:441 S ttl=45 id=37078 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1381 S ttl=41 id=18399 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:933 S ttl=44 id=49659 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:705 S ttl=58 id=52842 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1445 S ttl=56 id=55235 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3984 S ttl=56 id=63081 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1453 S ttl=40 id=24928 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.1140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:209 S ttl=56 id=47611 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (30.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1999 S ttl=43 id=26075 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:124 S ttl=37 id=42912 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2000 S ttl=52 id=17386 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:678 S ttl=52 id=46543 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:956 S ttl=48 id=38735 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:619 S ttl=56 id=9928 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:105 S ttl=38 id=25187 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9 S ttl=50 id=11111 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6112 S ttl=51 id=30852 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5001 S ttl=42 id=12963 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:242 S ttl=43 id=19746 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:492 S ttl=58 id=57203 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9040 S ttl=47 id=43348 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2432 S ttl=44 id=53417 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3264 S ttl=57 id=57560 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:444 S ttl=45 id=24376 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:737 S ttl=38 id=29530 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:902 S ttl=49 id=10337 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1546 S ttl=54 id=2770 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:290 S ttl=49 id=35367 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1398 S ttl=58 id=57603 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:16444 S ttl=39 id=17964 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1476 S ttl=56 id=20772 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SYN Stealth Scan Timing: About 10.27% done; ETC: 23:16 (0:04:23 remaining)&#10;SENT (30.4140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:275 S ttl=54 id=10928 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:901 S ttl=58 id=45085 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:229 S ttl=51 id=63589 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6144 S ttl=41 id=60533 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:188 S ttl=46 id=60172 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:943 S ttl=41 id=7352 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:561 S ttl=46 id=7518 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:141 S ttl=44 id=42172 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18185 S ttl=39 id=10975 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:313 S ttl=50 id=48623 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:287 S ttl=57 id=6460 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1076 S ttl=37 id=50399 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1518 S ttl=43 id=39345 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:182 S ttl=42 id=50005 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1542 S ttl=37 id=41945 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3984 S ttl=49 id=59720 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1445 S ttl=52 id=37093 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:705 S ttl=39 id=56530 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:933 S ttl=51 id=51490 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1381 S ttl=51 id=19109 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:441 S ttl=52 id=25658 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:223 S ttl=45 id=33834 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:935 S ttl=38 id=26641 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.4220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1508 S ttl=44 id=1734 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:209 S ttl=40 id=19717 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.4280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1453 S ttl=52 id=64420 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (30.5180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1999 S ttl=58 id=49525 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3264 S ttl=56 id=28822 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2432 S ttl=58 id=7574 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9040 S ttl=49 id=19522 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:492 S ttl=53 id=46178 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:242 S ttl=48 id=24327 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5001 S ttl=57 id=46486 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6112 S ttl=40 id=34048 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9 S ttl=52 id=13785 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:105 S ttl=37 id=30954 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:619 S ttl=48 id=30025 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:956 S ttl=48 id=33018 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:678 S ttl=37 id=50515 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2000 S ttl=38 id=2816 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:124 S ttl=55 id=48567 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:943 S ttl=50 id=57208 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:188 S ttl=53 id=19066 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6144 S ttl=47 id=37913 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:229 S ttl=40 id=25996 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:901 S ttl=52 id=4287 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:275 S ttl=54 id=48534 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1476 S ttl=57 id=49154 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:16444 S ttl=41 id=40030 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1398 S ttl=38 id=34278 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:290 S ttl=43 id=63270 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1546 S ttl=56 id=11728 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:902 S ttl=51 id=43099 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:737 S ttl=52 id=45523 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:444 S ttl=50 id=1765 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1542 S ttl=49 id=16647 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:182 S ttl=53 id=16796 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1518 S ttl=42 id=20924 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1076 S ttl=52 id=33593 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:287 S ttl=49 id=32136 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:313 S ttl=43 id=52677 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18185 S ttl=57 id=19732 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:141 S ttl=49 id=50019 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:561 S ttl=38 id=6039 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1508 S ttl=55 id=26608 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:935 S ttl=46 id=9108 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:223 S ttl=41 id=4152 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:441 S ttl=48 id=13122 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1381 S ttl=48 id=34849 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:933 S ttl=56 id=5768 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:705 S ttl=46 id=60258 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1445 S ttl=42 id=41994 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.7350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3984 S ttl=47 id=63380 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (30.7430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1453 S ttl=56 id=23482 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (30.7430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:209 S ttl=38 id=28636 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (30.8350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1999 S ttl=40 id=58696 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2401 S ttl=43 id=58848 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1007 S ttl=48 id=21749 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:751 S ttl=39 id=64246 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1440 S ttl=52 id=54939 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:753 S ttl=51 id=17606 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3399 S ttl=52 id=55053 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:109 S ttl=43 id=22868 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32774 S ttl=47 id=57294 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5713 S ttl=58 id=24860 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:954 S ttl=40 id=2592 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7005 S ttl=56 id=39775 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2431 S ttl=50 id=59541 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:202 S ttl=37 id=14801 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.0360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:121 S ttl=46 id=5896 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:42 S ttl=57 id=17198 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5803 S ttl=47 id=18756 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8007 S ttl=54 id=48097 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1650 S ttl=55 id=24907 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1537 S ttl=40 id=61482 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:173 S ttl=44 id=33540 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:367 S ttl=39 id=44584 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:915 S ttl=42 id=4995 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:191 S ttl=41 id=8624 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:910 S ttl=42 id=50141 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1651 S ttl=38 id=6070 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:731 S ttl=59 id=42978 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:427 S ttl=51 id=64966 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:965 S ttl=38 id=23865 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:918 S ttl=40 id=43091 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:898 S ttl=52 id=42648 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:61439 S ttl=47 id=15292 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1406 S ttl=44 id=15236 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1155 S ttl=47 id=36095 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:968 S ttl=57 id=1528 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:45 S ttl=43 id=1366 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:947 S ttl=40 id=9850 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8443 S ttl=48 id=2595 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:732 S ttl=41 id=57139 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:934 S ttl=59 id=28919 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5716 S ttl=40 id=13250 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:253 S ttl=59 id=12636 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5900 S ttl=39 id=795 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3999 S ttl=49 id=51057 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:363 S ttl=52 id=31888 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:166 S ttl=42 id=9883 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.0460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:664 S ttl=48 id=40091 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.0540s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:644 S ttl=47 id=36297 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.0540s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:337 S ttl=57 id=41417 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.1460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32770 S ttl=58 id=47204 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:121 S ttl=47 id=5478 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:202 S ttl=57 id=30381 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2431 S ttl=38 id=24380 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7005 S ttl=42 id=26802 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:954 S ttl=56 id=2085 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5713 S ttl=42 id=10064 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32774 S ttl=53 id=58954 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:109 S ttl=46 id=22114 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3399 S ttl=53 id=58411 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:753 S ttl=53 id=15824 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1440 S ttl=38 id=65042 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:751 S ttl=42 id=1190 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1007 S ttl=38 id=57784 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2401 S ttl=45 id=12641 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:965 S ttl=46 id=51614 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:427 S ttl=44 id=52912 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:731 S ttl=54 id=41811 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1651 S ttl=37 id=60054 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:910 S ttl=40 id=22982 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:191 S ttl=48 id=633 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:915 S ttl=56 id=2207 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:367 S ttl=58 id=12547 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:173 S ttl=42 id=51345 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1537 S ttl=40 id=42703 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1650 S ttl=48 id=44276 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8007 S ttl=40 id=54972 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5803 S ttl=56 id=40616 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:42 S ttl=43 id=48658 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1406 S ttl=50 id=38384 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:61439 S ttl=57 id=30807 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:898 S ttl=58 id=4191 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:918 S ttl=56 id=11078 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:664 S ttl=40 id=44125 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:166 S ttl=57 id=13887 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:363 S ttl=49 id=28416 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3999 S ttl=41 id=37668 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5900 S ttl=42 id=43682 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:253 S ttl=55 id=34889 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5716 S ttl=57 id=53519 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:934 S ttl=39 id=54936 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:732 S ttl=39 id=29243 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8443 S ttl=51 id=54596 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:947 S ttl=43 id=53763 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:45 S ttl=43 id=31353 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:968 S ttl=59 id=48993 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1155 S ttl=53 id=16098 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (31.3660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:337 S ttl=51 id=37484 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.3660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:644 S ttl=50 id=2081 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (31.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32770 S ttl=59 id=61653 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2401 S ttl=55 id=43451 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1007 S ttl=56 id=51267 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:751 S ttl=39 id=4426 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1440 S ttl=49 id=47854 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:753 S ttl=44 id=38618 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3399 S ttl=41 id=10269 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:109 S ttl=47 id=35013 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32774 S ttl=51 id=41945 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5713 S ttl=55 id=62988 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:954 S ttl=57 id=12220 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6610s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7005 S ttl=45 id=17263 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6610s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2431 S ttl=49 id=61044 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6610s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:202 S ttl=43 id=13228 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6610s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:121 S ttl=45 id=42849 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5803 S ttl=58 id=54234 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8007 S ttl=43 id=6361 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1650 S ttl=48 id=33362 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1537 S ttl=44 id=49780 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:173 S ttl=55 id=41747 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:367 S ttl=57 id=25402 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:915 S ttl=55 id=33096 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:191 S ttl=38 id=21539 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:910 S ttl=52 id=48207 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1651 S ttl=52 id=48400 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:731 S ttl=44 id=43170 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:427 S ttl=50 id=48115 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:965 S ttl=54 id=38862 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:918 S ttl=39 id=31727 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:898 S ttl=55 id=8438 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:61439 S ttl=57 id=6733 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1406 S ttl=38 id=29678 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:42 S ttl=43 id=32848 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1155 S ttl=41 id=21307 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:968 S ttl=40 id=2259 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:45 S ttl=48 id=12253 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:947 S ttl=52 id=38210 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8443 S ttl=42 id=31310 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:732 S ttl=38 id=35290 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:934 S ttl=46 id=5300 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5716 S ttl=50 id=24159 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:253 S ttl=41 id=61439 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5900 S ttl=45 id=7827 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3999 S ttl=40 id=34415 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (31.6710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:363 S ttl=45 id=49619 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.6720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:166 S ttl=54 id=46094 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (31.6720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:664 S ttl=59 id=52191 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:644 S ttl=55 id=61791 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (31.6790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:337 S ttl=57 id=45779 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.7720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32770 S ttl=53 id=14706 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:638 S ttl=41 id=31156 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:552 S ttl=54 id=854 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:126 S ttl=59 id=45236 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:840 S ttl=43 id=63790 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2108 S ttl=46 id=53245 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1006 S ttl=42 id=4707 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1356 S ttl=51 id=52389 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2603 S ttl=38 id=13943 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4998 S ttl=49 id=51736 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:292 S ttl=41 id=36878 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:691 S ttl=59 id=15617 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:170 S ttl=38 id=35716 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1 S ttl=41 id=9174 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1511 S ttl=43 id=51179 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2430 S ttl=49 id=65045 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1214 S ttl=55 id=47402 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6146 S ttl=58 id=2725 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1067 S ttl=38 id=16361 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13701 S ttl=45 id=58950 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1402 S ttl=50 id=44842 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:185 S ttl=37 id=39058 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:849 S ttl=40 id=39233 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:581 S ttl=58 id=47022 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:865 S ttl=37 id=4476 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:662 S ttl=50 id=10880 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1347 S ttl=40 id=41011 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.9770s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:560 S ttl=50 id=16299 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:894 S ttl=41 id=19282 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13722 S ttl=51 id=2144 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:399 S ttl=43 id=56704 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1667 S ttl=59 id=6996 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1512 S ttl=44 id=35228 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1011 S ttl=58 id=46436 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:350 S ttl=44 id=15094 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1499 S ttl=39 id=21381 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:479 S ttl=49 id=46595 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:283 S ttl=43 id=31642 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:509 S ttl=38 id=30762 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:70 S ttl=47 id=3539 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:341 S ttl=38 id=10247 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:49400 S ttl=59 id=29243 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:306 S ttl=44 id=32983 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1538 S ttl=57 id=62013 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:144 S ttl=52 id=8673 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (31.9870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13718 S ttl=58 id=28151 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (31.9870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:848 S ttl=53 id=4423 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (31.9910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:447 S ttl=47 id=56770 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (31.9910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:383 S ttl=52 id=60686 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.0820s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6588 S ttl=46 id=62669 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;RCVD (32.1850s) TCP 64.13.134.52:70 &gt; 156.17.238.83:59922 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3513148415 &#10;SENT (32.1860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:127 S ttl=53 id=36057 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.1860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:468 S ttl=38 id=61042 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.1860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:512 S ttl=40 id=47143 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1356 S ttl=49 id=44385 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1006 S ttl=46 id=54167 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2108 S ttl=52 id=36635 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:840 S ttl=58 id=4744 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:126 S ttl=37 id=32364 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:552 S ttl=49 id=34919 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2540s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:638 S ttl=52 id=61016 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:560 S ttl=45 id=44329 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1347 S ttl=37 id=46890 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:662 S ttl=37 id=18703 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:865 S ttl=44 id=36649 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:581 S ttl=48 id=34563 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:849 S ttl=37 id=19903 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:185 S ttl=51 id=30821 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1402 S ttl=55 id=52994 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13701 S ttl=56 id=60333 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1067 S ttl=54 id=21522 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6146 S ttl=53 id=24084 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1214 S ttl=41 id=19911 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2430 S ttl=43 id=41238 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1511 S ttl=39 id=27920 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1 S ttl=55 id=43820 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:170 S ttl=56 id=4583 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:691 S ttl=42 id=11617 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:292 S ttl=40 id=58242 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4998 S ttl=54 id=48252 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2603 S ttl=52 id=55021 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1512 S ttl=56 id=10995 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1667 S ttl=58 id=50777 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:399 S ttl=52 id=59456 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13722 S ttl=47 id=17524 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:894 S ttl=58 id=52346 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:848 S ttl=39 id=24652 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13718 S ttl=59 id=9970 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:144 S ttl=51 id=38758 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1538 S ttl=46 id=42807 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:306 S ttl=51 id=64530 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:49400 S ttl=41 id=384 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:341 S ttl=57 id=58994 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:509 S ttl=42 id=29106 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:283 S ttl=46 id=28632 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:479 S ttl=38 id=50318 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1499 S ttl=42 id=57001 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:350 S ttl=48 id=59103 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.2700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1011 S ttl=51 id=51538 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.2740s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:383 S ttl=46 id=38159 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.2740s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:447 S ttl=57 id=13867 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.3660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6588 S ttl=46 id=9321 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (32.4700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:512 S ttl=49 id=31588 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (32.4700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:468 S ttl=52 id=24738 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (32.4700s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:127 S ttl=51 id=27876 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:638 S ttl=59 id=61563 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:552 S ttl=40 id=16035 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:126 S ttl=37 id=30827 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:840 S ttl=59 id=57130 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2108 S ttl=38 id=21956 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1006 S ttl=47 id=57183 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1356 S ttl=53 id=5638 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2603 S ttl=37 id=1427 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4998 S ttl=37 id=38573 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:292 S ttl=39 id=56751 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:691 S ttl=39 id=13652 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:170 S ttl=46 id=30853 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1 S ttl=52 id=60982 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1511 S ttl=52 id=26963 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2430 S ttl=48 id=26694 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1214 S ttl=50 id=30757 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6146 S ttl=40 id=19507 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1067 S ttl=39 id=29465 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13701 S ttl=48 id=15139 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1402 S ttl=57 id=59395 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:185 S ttl=38 id=17672 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:849 S ttl=57 id=44121 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:581 S ttl=44 id=63545 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:865 S ttl=51 id=18365 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:662 S ttl=48 id=45200 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1347 S ttl=51 id=38019 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:560 S ttl=42 id=3087 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:894 S ttl=54 id=42316 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13722 S ttl=44 id=55738 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:399 S ttl=50 id=50428 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1667 S ttl=39 id=33269 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1512 S ttl=38 id=49943 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1011 S ttl=59 id=24777 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:350 S ttl=48 id=51531 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1499 S ttl=53 id=42801 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:479 S ttl=53 id=65285 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:283 S ttl=57 id=30095 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:509 S ttl=49 id=5810 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:341 S ttl=50 id=52282 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:49400 S ttl=39 id=56818 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:306 S ttl=51 id=56990 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1538 S ttl=50 id=56721 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:144 S ttl=49 id=9736 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13718 S ttl=57 id=25722 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.5540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:848 S ttl=39 id=8247 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (32.5580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:447 S ttl=48 id=49255 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.5580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:383 S ttl=44 id=35850 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.6510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6588 S ttl=53 id=2656 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (32.7570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:127 S ttl=38 id=49503 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (32.7570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:468 S ttl=44 id=41745 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.7570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:512 S ttl=56 id=54132 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7002 S ttl=50 id=308 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:323 S ttl=50 id=10918 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6401 S ttl=57 id=64048 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:624 S ttl=59 id=29621 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1990 S ttl=45 id=47241 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:455 S ttl=40 id=2619 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1017 S ttl=54 id=29775 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:477 S ttl=45 id=4179 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:502 S ttl=59 id=37032 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:364 S ttl=37 id=14955 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:61 S ttl=44 id=52562 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:558 S ttl=41 id=60309 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18187 S ttl=48 id=47998 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8082 S ttl=39 id=29253 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1539 S ttl=43 id=51557 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1502 S ttl=59 id=42837 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:549 S ttl=38 id=50894 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:891 S ttl=43 id=46020 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:984 S ttl=39 id=42196 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:966 S ttl=45 id=10750 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:555 S ttl=48 id=49485 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1481 S ttl=44 id=2496 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5902 S ttl=53 id=9074 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1350 S ttl=45 id=23575 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:623 S ttl=59 id=21136 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:346 S ttl=41 id=44772 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:201 S ttl=58 id=10505 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1986 S ttl=49 id=22938 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1430 S ttl=56 id=56849 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:432 S ttl=51 id=35624 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2003 S ttl=53 id=28659 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:844 S ttl=58 id=58003 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13706 S ttl=42 id=28275 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1524 S ttl=49 id=50183 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:36 S ttl=37 id=39516 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:602 S ttl=40 id=60727 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2012 S ttl=54 id=24258 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:230 S ttl=42 id=36611 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1484 S ttl=54 id=43355 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2044 S ttl=49 id=5286 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:273 S ttl=56 id=13532 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1497 S ttl=59 id=32940 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:711 S ttl=39 id=38268 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:784 S ttl=37 id=62300 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1396 S ttl=38 id=4917 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (32.8440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1394 S ttl=37 id=8741 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (32.8440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1220 S ttl=51 id=45895 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (32.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:822 S ttl=47 id=36338 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1507 S ttl=52 id=47385 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2628 S ttl=49 id=3981 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.0430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1490 S ttl=55 id=38202 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1017 S ttl=55 id=50931 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:455 S ttl=45 id=7838 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1990 S ttl=58 id=46517 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:624 S ttl=47 id=65162 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6401 S ttl=53 id=61881 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:323 S ttl=47 id=22595 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7002 S ttl=56 id=65254 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1350 S ttl=49 id=48723 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5902 S ttl=41 id=60066 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1481 S ttl=39 id=8453 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:555 S ttl=46 id=29486 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:966 S ttl=37 id=11470 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:984 S ttl=54 id=2515 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:891 S ttl=43 id=50367 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:549 S ttl=53 id=48828 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1502 S ttl=58 id=19037 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1539 S ttl=47 id=29397 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8082 S ttl=45 id=40507 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18187 S ttl=44 id=34667 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:558 S ttl=39 id=5154 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:61 S ttl=48 id=31409 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:364 S ttl=47 id=22357 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:502 S ttl=38 id=30507 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:477 S ttl=54 id=62129 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:201 S ttl=55 id=20529 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:346 S ttl=39 id=729 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:623 S ttl=57 id=54120 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1396 S ttl=50 id=45702 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:784 S ttl=41 id=13354 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:711 S ttl=40 id=48270 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1497 S ttl=41 id=9021 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:273 S ttl=51 id=2941 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2044 S ttl=49 id=36596 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1484 S ttl=46 id=195 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:230 S ttl=40 id=1175 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2012 S ttl=55 id=53096 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:602 S ttl=50 id=54355 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:36 S ttl=56 id=1717 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1524 S ttl=42 id=28036 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13706 S ttl=51 id=65481 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.1240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:844 S ttl=38 id=44135 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2003 S ttl=46 id=10777 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:432 S ttl=41 id=29230 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.1240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1430 S ttl=54 id=62713 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1986 S ttl=58 id=14238 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1300s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1220 S ttl=58 id=39101 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.1300s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1394 S ttl=55 id=64791 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.2220s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:822 S ttl=43 id=62190 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.3310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1490 S ttl=44 id=14523 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.3310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2628 S ttl=49 id=41003 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1507 S ttl=42 id=53019 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7002 S ttl=57 id=12665 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:323 S ttl=38 id=36349 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6401 S ttl=47 id=19305 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:624 S ttl=52 id=31997 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1990 S ttl=46 id=50077 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:455 S ttl=49 id=63285 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1017 S ttl=38 id=53224 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:558 S ttl=55 id=14425 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18187 S ttl=43 id=18904 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8082 S ttl=53 id=53167 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1539 S ttl=37 id=42959 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1502 S ttl=41 id=10102 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:549 S ttl=50 id=1815 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:891 S ttl=47 id=25201 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:984 S ttl=53 id=48627 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:966 S ttl=53 id=40873 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:555 S ttl=49 id=16394 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1481 S ttl=45 id=44213 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.3980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5902 S ttl=52 id=36987 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.3990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1350 S ttl=41 id=41554 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:623 S ttl=50 id=9550 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:346 S ttl=37 id=39151 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:201 S ttl=51 id=22344 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:477 S ttl=44 id=61715 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:502 S ttl=46 id=42800 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:364 S ttl=58 id=37811 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:61 S ttl=45 id=36600 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1430 S ttl=38 id=57996 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:432 S ttl=50 id=61038 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2003 S ttl=43 id=27429 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:844 S ttl=44 id=24148 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13706 S ttl=59 id=65144 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1524 S ttl=46 id=10136 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:36 S ttl=53 id=12999 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:602 S ttl=43 id=18269 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2012 S ttl=37 id=44431 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:230 S ttl=43 id=20041 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1484 S ttl=57 id=9548 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2044 S ttl=59 id=3942 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:273 S ttl=52 id=44674 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1497 S ttl=52 id=31478 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:711 S ttl=47 id=41210 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:784 S ttl=48 id=28398 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.4080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1396 S ttl=49 id=57212 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (33.4100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1986 S ttl=43 id=29542 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4140s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1394 S ttl=51 id=61025 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.4140s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1220 S ttl=56 id=54121 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.5060s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:822 S ttl=39 id=47499 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1507 S ttl=55 id=36738 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2628 S ttl=59 id=41952 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1490 S ttl=40 id=10870 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:986 S ttl=58 id=28897 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1030 S ttl=50 id=57773 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:87 S ttl=59 id=14289 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:486 S ttl=37 id=64620 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1408 S ttl=51 id=2989 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:160 S ttl=43 id=13247 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7008 S ttl=50 id=3616 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5050 S ttl=56 id=12295 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27007 S ttl=45 id=44667 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:351 S ttl=42 id=34292 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4987 S ttl=40 id=7464 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:820 S ttl=45 id=28568 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9107 S ttl=46 id=51957 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:360 S ttl=40 id=43010 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1351 S ttl=56 id=4414 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:324 S ttl=42 id=31286 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:529 S ttl=57 id=23015 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:743 S ttl=59 id=63010 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:695 S ttl=59 id=48873 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4000 S ttl=38 id=59223 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:385 S ttl=56 id=15401 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:513 S ttl=49 id=53627 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2809 S ttl=54 id=6057 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1541 S ttl=44 id=11076 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1349 S ttl=40 id=4772 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2042 S ttl=45 id=37586 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:345 S ttl=54 id=48245 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:591 S ttl=52 id=25896 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1027 S ttl=46 id=40355 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:430 S ttl=55 id=40996 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:843 S ttl=42 id=27386 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:29 S ttl=43 id=42432 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6347 S ttl=41 id=14456 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3269 S ttl=45 id=64128 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27001 S ttl=47 id=11629 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:709 S ttl=57 id=34462 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:841 S ttl=38 id=46102 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:419 S ttl=57 id=62819 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:630 S ttl=55 id=30958 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1488 S ttl=37 id=46751 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:832 S ttl=52 id=61123 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1050 S ttl=48 id=36176 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:534 S ttl=46 id=22085 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:421 S ttl=51 id=30600 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:329 S ttl=56 id=29485 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.6990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:358 S ttl=50 id=56303 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.6990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5550 S ttl=46 id=17498 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (33.7910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:768 S ttl=39 id=61328 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:507 S ttl=48 id=62405 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:941 S ttl=37 id=25541 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:293 S ttl=52 id=5029 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7008 S ttl=54 id=40289 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:160 S ttl=59 id=35418 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1408 S ttl=52 id=47549 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:486 S ttl=57 id=81 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:87 S ttl=52 id=27736 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1030 S ttl=47 id=10181 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:986 S ttl=54 id=30432 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4000 S ttl=48 id=11547 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:695 S ttl=57 id=53260 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:743 S ttl=54 id=42960 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:529 S ttl=46 id=19038 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:324 S ttl=56 id=37976 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1351 S ttl=41 id=20193 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:360 S ttl=40 id=52924 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9107 S ttl=43 id=32934 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:820 S ttl=55 id=12989 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4987 S ttl=57 id=26594 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:351 S ttl=57 id=17539 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27007 S ttl=43 id=48252 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9690s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5050 S ttl=42 id=9442 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:345 S ttl=49 id=33466 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2042 S ttl=49 id=13061 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1349 S ttl=49 id=16793 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1541 S ttl=43 id=21736 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2809 S ttl=39 id=57694 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:513 S ttl=38 id=7212 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:385 S ttl=39 id=3758 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:329 S ttl=45 id=26364 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:421 S ttl=38 id=30480 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:534 S ttl=50 id=21508 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1050 S ttl=41 id=4563 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:832 S ttl=51 id=46453 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1488 S ttl=51 id=54232 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:630 S ttl=55 id=12180 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:419 S ttl=43 id=63761 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:841 S ttl=42 id=50759 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:709 S ttl=59 id=21715 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27001 S ttl=50 id=60013 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3269 S ttl=37 id=55075 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6347 S ttl=50 id=29230 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:29 S ttl=46 id=63716 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:843 S ttl=51 id=33663 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:430 S ttl=38 id=63239 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1027 S ttl=54 id=42421 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:591 S ttl=54 id=2423 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (33.9840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5550 S ttl=43 id=2504 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (33.9840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:358 S ttl=46 id=35845 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.0750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:768 S ttl=44 id=61489 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (34.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:293 S ttl=41 id=9064 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:941 S ttl=51 id=29746 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:507 S ttl=43 id=29192 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:986 S ttl=54 id=26792 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1030 S ttl=53 id=2058 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:87 S ttl=47 id=51249 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:486 S ttl=45 id=37424 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1408 S ttl=37 id=29207 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:160 S ttl=43 id=9537 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7008 S ttl=42 id=23067 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5050 S ttl=54 id=22473 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27007 S ttl=45 id=39471 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:351 S ttl=53 id=46942 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4987 S ttl=46 id=8652 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:820 S ttl=50 id=875 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9107 S ttl=43 id=34209 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:360 S ttl=47 id=47752 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1351 S ttl=40 id=22678 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:324 S ttl=57 id=27256 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:529 S ttl=54 id=59665 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:743 S ttl=54 id=31972 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:695 S ttl=44 id=52736 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4000 S ttl=53 id=19822 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:385 S ttl=51 id=58298 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:513 S ttl=39 id=23371 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2809 S ttl=47 id=26030 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1541 S ttl=43 id=17424 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1349 S ttl=45 id=33560 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2042 S ttl=56 id=33042 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:345 S ttl=54 id=39409 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:358 S ttl=42 id=22310 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5550 S ttl=58 id=24884 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:591 S ttl=42 id=25516 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1027 S ttl=42 id=10929 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:430 S ttl=51 id=19369 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:843 S ttl=52 id=56523 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:29 S ttl=52 id=2981 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6347 S ttl=37 id=8059 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3269 S ttl=59 id=32237 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27001 S ttl=48 id=10658 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:709 S ttl=44 id=7773 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:841 S ttl=38 id=36821 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:419 S ttl=46 id=59030 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:630 S ttl=37 id=27532 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1488 S ttl=39 id=55152 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:832 S ttl=46 id=24656 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1050 S ttl=52 id=55942 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:534 S ttl=48 id=39217 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:421 S ttl=48 id=58254 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (34.2670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:329 S ttl=38 id=41632 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.3600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:768 S ttl=39 id=30260 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:507 S ttl=59 id=29360 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:941 S ttl=59 id=7897 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (34.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:293 S ttl=50 id=11672 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1004 S ttl=50 id=11510 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:101 S ttl=38 id=56076 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1534 S ttl=49 id=52924 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1018 S ttl=46 id=3002 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:528 S ttl=46 id=37757 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7201 S ttl=39 id=30096 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:519 S ttl=41 id=61815 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:357 S ttl=57 id=33711 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1025 S ttl=44 id=53120 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:303 S ttl=40 id=3882 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1479 S ttl=55 id=32218 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1489 S ttl=43 id=41027 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:958 S ttl=41 id=16445 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1661 S ttl=58 id=33301 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:920 S ttl=40 id=53363 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:520 S ttl=39 id=47271 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:670 S ttl=55 id=13603 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:249 S ttl=51 id=15778 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:523 S ttl=43 id=16021 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2014 S ttl=43 id=64113 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9111 S ttl=45 id=62581 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:701 S ttl=45 id=29520 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:402 S ttl=42 id=19038 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:142 S ttl=56 id=32970 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2053 S ttl=58 id=39504 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1212 S ttl=56 id=16738 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1468 S ttl=58 id=29838 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2019 S ttl=48 id=40918 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6101 S ttl=42 id=4489 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:236 S ttl=37 id=34098 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:693 S ttl=57 id=25825 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:78 S ttl=40 id=34605 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2026 S ttl=48 id=38493 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5715 S ttl=53 id=5705 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1059 S ttl=57 id=13863 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:212 S ttl=50 id=38620 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:51 S ttl=38 id=9055 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:679 S ttl=58 id=28108 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:17300 S ttl=49 id=45440 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:828 S ttl=40 id=1886 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:176 S ttl=49 id=24389 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:787 S ttl=44 id=25996 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9090 S ttl=47 id=18766 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1355 S ttl=55 id=52414 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:761 S ttl=44 id=52635 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (34.5510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1384 S ttl=50 id=35010 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.5520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:760 S ttl=59 id=41728 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.6490s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27000 S ttl=54 id=14712 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.7590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:203 S ttl=46 id=28453 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (34.7590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1900 S ttl=43 id=39190 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.7590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:696 S ttl=43 id=21450 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:528 S ttl=56 id=51307 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (34.8190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1018 S ttl=38 id=3632 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1534 S ttl=38 id=45505 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:101 S ttl=50 id=64414 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1004 S ttl=42 id=24979 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2014 S ttl=52 id=19389 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:523 S ttl=49 id=34571 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:249 S ttl=59 id=41578 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:670 S ttl=55 id=54411 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:520 S ttl=49 id=57260 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:920 S ttl=42 id=8958 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1661 S ttl=45 id=29070 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:958 S ttl=37 id=8742 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1489 S ttl=45 id=38861 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1479 S ttl=54 id=5851 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:303 S ttl=48 id=25362 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1025 S ttl=59 id=56434 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:357 S ttl=47 id=30409 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:519 S ttl=37 id=47503 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7201 S ttl=55 id=51086 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9111 S ttl=55 id=64752 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1468 S ttl=53 id=19050 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1212 S ttl=37 id=64423 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2053 S ttl=44 id=12246 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (34.8350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:142 S ttl=37 id=17225 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:402 S ttl=47 id=42465 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:701 S ttl=41 id=5307 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:760 S ttl=47 id=38337 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1384 S ttl=57 id=55950 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:761 S ttl=48 id=43671 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1355 S ttl=53 id=40310 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9090 S ttl=39 id=59324 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:787 S ttl=43 id=7666 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:176 S ttl=50 id=34554 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:828 S ttl=45 id=11410 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:17300 S ttl=39 id=18993 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:679 S ttl=51 id=38659 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:51 S ttl=38 id=28180 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:212 S ttl=45 id=38798 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1059 S ttl=43 id=38491 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5715 S ttl=47 id=40816 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2026 S ttl=45 id=21756 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:78 S ttl=55 id=55321 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:693 S ttl=49 id=6183 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:236 S ttl=41 id=1872 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6101 S ttl=59 id=14558 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (34.8390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2019 S ttl=57 id=27838 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (34.9350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27000 S ttl=53 id=20476 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.0420s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:696 S ttl=55 id=44575 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.0420s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1900 S ttl=44 id=28913 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.0420s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:203 S ttl=47 id=47369 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1004 S ttl=51 id=55364 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:101 S ttl=57 id=61291 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1534 S ttl=47 id=1709 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1018 S ttl=40 id=6384 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1020s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:528 S ttl=46 id=38264 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7201 S ttl=40 id=49104 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:519 S ttl=50 id=17120 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:357 S ttl=59 id=22449 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1025 S ttl=40 id=12868 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:303 S ttl=43 id=26738 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1479 S ttl=37 id=7034 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1489 S ttl=38 id=53861 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:958 S ttl=48 id=8029 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1661 S ttl=43 id=20198 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:920 S ttl=53 id=43993 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:520 S ttl=53 id=22021 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:670 S ttl=55 id=43250 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1100s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:249 S ttl=56 id=46929 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:523 S ttl=44 id=18477 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2014 S ttl=39 id=59938 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1140s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9111 S ttl=40 id=36129 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:701 S ttl=48 id=37799 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:402 S ttl=40 id=60588 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:142 S ttl=59 id=44987 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2053 S ttl=46 id=51761 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1212 S ttl=43 id=14741 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1468 S ttl=46 id=61677 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2019 S ttl=58 id=28019 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6101 S ttl=50 id=54477 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:236 S ttl=56 id=11278 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:693 S ttl=43 id=9917 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:78 S ttl=55 id=62962 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2026 S ttl=49 id=16949 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5715 S ttl=52 id=53153 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1059 S ttl=56 id=7881 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:212 S ttl=48 id=921 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:51 S ttl=51 id=63004 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:679 S ttl=46 id=20891 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:17300 S ttl=58 id=65194 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1220s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:828 S ttl=41 id=24856 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:176 S ttl=46 id=54017 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:787 S ttl=38 id=57829 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9090 S ttl=53 id=61526 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1355 S ttl=37 id=62089 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:761 S ttl=45 id=33912 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1384 S ttl=53 id=64176 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:760 S ttl=51 id=29596 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.2180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27000 S ttl=45 id=18518 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:203 S ttl=55 id=11637 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.3260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1900 S ttl=49 id=34788 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:696 S ttl=57 id=21230 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:884 S ttl=38 id=26534 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.3860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:879 S ttl=53 id=35185 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:235 S ttl=58 id=10220 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.3860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:318 S ttl=56 id=41789 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.3860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:117 S ttl=37 id=45236 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:50000 S ttl=45 id=9273 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:43188 S ttl=55 id=58247 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1388 S ttl=51 id=40477 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:930 S ttl=57 id=63878 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32771 S ttl=41 id=26298 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:880 S ttl=50 id=57640 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5232 S ttl=49 id=39581 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5679 S ttl=52 id=56802 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1371 S ttl=55 id=50056 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1080 S ttl=50 id=45365 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:985 S ttl=53 id=7709 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:151 S ttl=43 id=59794 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.3950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1500 S ttl=40 id=46912 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.3950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:698 S ttl=45 id=64000 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.3980s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2564 S ttl=44 id=63223 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.3980s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2784 S ttl=46 id=26181 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.4020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1354 S ttl=55 id=34665 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:716 S ttl=59 id=133 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:817 S ttl=51 id=16477 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1498 S ttl=56 id=59168 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:834 S ttl=38 id=47574 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.4020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:164 S ttl=46 id=53390 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32777 S ttl=51 id=49073 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3292 S ttl=37 id=61588 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:903 S ttl=59 id=16109 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:192 S ttl=39 id=27017 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:458 S ttl=42 id=52163 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6662 S ttl=52 id=3235 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9104 S ttl=49 id=29048 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:909 S ttl=48 id=49971 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1026 S ttl=56 id=49556 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6699 S ttl=47 id=12993 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:89 S ttl=58 id=22090 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.4070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:336 S ttl=48 id=28690 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1532 S ttl=46 id=47249 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.4070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:63 S ttl=53 id=26406 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.4070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1466 S ttl=43 id=13564 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32776 S ttl=56 id=60808 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:627 S ttl=47 id=55141 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:628 S ttl=48 id=58128 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (35.4100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7273 S ttl=47 id=1376 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.4100s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1369 S ttl=37 id=39745 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.5020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2010 S ttl=51 id=58965 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:809 S ttl=38 id=454 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:239 S ttl=41 id=52688 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:228 S ttl=51 id=55689 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:117 S ttl=46 id=44405 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:318 S ttl=40 id=58290 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:235 S ttl=48 id=56120 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6740s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:879 S ttl=49 id=14155 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6740s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:884 S ttl=53 id=28624 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:698 S ttl=44 id=63974 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1500 S ttl=44 id=64120 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:151 S ttl=51 id=27926 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:985 S ttl=48 id=62490 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1080 S ttl=40 id=46751 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1371 S ttl=48 id=9435 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5679 S ttl=57 id=54014 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5232 S ttl=56 id=51079 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:880 S ttl=42 id=11324 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32771 S ttl=58 id=37712 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:930 S ttl=57 id=35376 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1388 S ttl=42 id=20450 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:43188 S ttl=45 id=60249 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:50000 S ttl=46 id=48000 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2784 S ttl=50 id=16340 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2564 S ttl=37 id=39630 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:164 S ttl=58 id=17829 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:834 S ttl=46 id=52140 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1498 S ttl=45 id=9385 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:817 S ttl=45 id=28368 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:716 S ttl=44 id=16041 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1354 S ttl=54 id=2549 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:63 S ttl=39 id=54435 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1532 S ttl=40 id=37525 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:336 S ttl=52 id=22787 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:89 S ttl=43 id=9387 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6699 S ttl=43 id=4077 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1026 S ttl=43 id=3836 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:909 S ttl=54 id=31011 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9104 S ttl=59 id=14731 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6662 S ttl=54 id=5193 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:458 S ttl=52 id=36675 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:192 S ttl=45 id=14857 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:903 S ttl=59 id=26261 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3292 S ttl=58 id=44872 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32777 S ttl=46 id=11267 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.6950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1369 S ttl=45 id=55404 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7273 S ttl=47 id=45916 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.6950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:628 S ttl=57 id=8171 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:627 S ttl=57 id=32337 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.6950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32776 S ttl=44 id=37439 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.6950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1466 S ttl=44 id=2832 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.7880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2010 S ttl=45 id=59624 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (35.8960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:228 S ttl=39 id=61343 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (35.8960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:239 S ttl=40 id=16168 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (35.8960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:809 S ttl=38 id=56960 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:884 S ttl=53 id=20932 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:879 S ttl=58 id=65043 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:235 S ttl=40 id=63270 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:318 S ttl=39 id=25835 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:117 S ttl=42 id=7376 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:50000 S ttl=45 id=55538 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:43188 S ttl=53 id=37877 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1388 S ttl=53 id=25231 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:930 S ttl=57 id=46240 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32771 S ttl=41 id=58335 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:880 S ttl=42 id=6650 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5232 S ttl=41 id=21909 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5679 S ttl=45 id=44073 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1371 S ttl=56 id=55950 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1080 S ttl=51 id=24118 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:985 S ttl=59 id=48210 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:151 S ttl=39 id=40293 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1500 S ttl=52 id=44198 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:698 S ttl=38 id=10581 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2564 S ttl=54 id=37246 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2784 S ttl=50 id=15602 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1354 S ttl=53 id=62906 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:716 S ttl=41 id=59356 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:817 S ttl=45 id=57000 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1498 S ttl=41 id=52568 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:834 S ttl=47 id=8927 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:164 S ttl=56 id=8441 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32777 S ttl=56 id=25530 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3292 S ttl=38 id=32182 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:903 S ttl=41 id=64481 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:192 S ttl=52 id=32474 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:458 S ttl=52 id=45665 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6662 S ttl=38 id=21676 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9104 S ttl=53 id=1483 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:909 S ttl=51 id=61456 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1026 S ttl=42 id=31226 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6699 S ttl=40 id=23181 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:89 S ttl=51 id=64493 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9770s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:336 S ttl=40 id=59651 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9770s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1532 S ttl=59 id=37592 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9770s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:63 S ttl=54 id=56223 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1466 S ttl=44 id=41977 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (35.9800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32776 S ttl=59 id=11794 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:627 S ttl=54 id=26534 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:628 S ttl=54 id=2053 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (35.9800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7273 S ttl=51 id=25885 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (35.9800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1369 S ttl=49 id=35059 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.0710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2010 S ttl=43 id=32334 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:809 S ttl=43 id=11496 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:239 S ttl=50 id=36940 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:228 S ttl=57 id=13399 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:15126 S ttl=51 id=1148 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3455 S ttl=38 id=58375 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:939 S ttl=58 id=23550 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1459 S ttl=53 id=47366 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:161 S ttl=55 id=46719 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1446 S ttl=46 id=27307 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:878 S ttl=55 id=29609 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:489 S ttl=53 id=45522 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:758 S ttl=51 id=9206 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:702 S ttl=37 id=29904 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:665 S ttl=53 id=5873 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5009 S ttl=44 id=13782 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.2500s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:133 S ttl=54 id=53440 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2500s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:905 S ttl=47 id=12117 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2500s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:33 S ttl=58 id=58498 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:31337 S ttl=56 id=27754 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.2510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:338 S ttl=49 id=10954 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:883 S ttl=45 id=10768 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1450 S ttl=39 id=15066 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:12 S ttl=38 id=17954 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:305 S ttl=46 id=5626 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:508 S ttl=41 id=49405 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6106 S ttl=44 id=32727 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:525 S ttl=45 id=57847 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:730 S ttl=45 id=60841 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1068 S ttl=55 id=46172 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:600 S ttl=54 id=32586 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:38 S ttl=49 id=55840 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:167 S ttl=51 id=58419 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:406 S ttl=54 id=10366 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:723 S ttl=47 id=55276 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3006 S ttl=53 id=12289 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1020 S ttl=52 id=18169 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27002 S ttl=49 id=62197 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:274 S ttl=53 id=57916 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6004 S ttl=48 id=18991 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:569 S ttl=54 id=44951 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:400 S ttl=48 id=58579 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:637 S ttl=51 id=2731 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1474 S ttl=39 id=32785 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1475 S ttl=49 id=50561 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2111 S ttl=49 id=6081 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:404 S ttl=57 id=55895 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1222 S ttl=41 id=39803 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:16080 S ttl=49 id=7796 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1540 S ttl=43 id=50819 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.2630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1366 S ttl=50 id=60437 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.3590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1127 S ttl=50 id=50703 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8 S ttl=51 id=40824 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (36.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:391 S ttl=56 id=8227 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (36.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4662 S ttl=46 id=19993 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:161 S ttl=52 id=37326 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1459 S ttl=37 id=351 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:939 S ttl=52 id=37433 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3455 S ttl=59 id=29389 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:15126 S ttl=51 id=59799 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5009 S ttl=42 id=1943 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:665 S ttl=42 id=8454 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:702 S ttl=44 id=47287 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:758 S ttl=37 id=49232 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:489 S ttl=59 id=35702 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:878 S ttl=48 id=38784 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1446 S ttl=41 id=17654 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:12 S ttl=53 id=25315 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1450 S ttl=44 id=60114 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:883 S ttl=45 id=15400 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:338 S ttl=37 id=11431 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:31337 S ttl=58 id=44874 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:33 S ttl=40 id=35784 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:905 S ttl=58 id=63091 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5340s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:133 S ttl=40 id=38017 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:600 S ttl=52 id=64716 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1068 S ttl=50 id=10117 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:730 S ttl=47 id=37819 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:525 S ttl=40 id=59494 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6106 S ttl=39 id=17350 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:508 S ttl=51 id=21141 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:305 S ttl=48 id=4044 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1474 S ttl=58 id=22524 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:637 S ttl=38 id=20685 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:400 S ttl=50 id=3961 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:569 S ttl=53 id=9665 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6004 S ttl=57 id=35703 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:274 S ttl=57 id=46057 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27002 S ttl=55 id=27476 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1020 S ttl=37 id=16126 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3006 S ttl=40 id=51149 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:723 S ttl=41 id=21879 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:406 S ttl=57 id=23094 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:167 S ttl=52 id=59044 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:38 S ttl=53 id=35269 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1366 S ttl=45 id=18011 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1540 S ttl=48 id=43552 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:16080 S ttl=51 id=56847 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1222 S ttl=53 id=13233 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:404 S ttl=51 id=37105 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2111 S ttl=52 id=29720 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.5470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1475 S ttl=56 id=36841 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (36.6430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1127 S ttl=47 id=55818 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (36.7480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4662 S ttl=41 id=41892 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (36.7480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:391 S ttl=54 id=45164 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.7480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8 S ttl=50 id=5672 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:133 S ttl=44 id=26950 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:905 S ttl=46 id=19278 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:33 S ttl=39 id=5737 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:31337 S ttl=58 id=31206 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:338 S ttl=57 id=3479 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:883 S ttl=43 id=38234 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1450 S ttl=44 id=11855 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:12 S ttl=38 id=20247 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1446 S ttl=42 id=31871 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:878 S ttl=42 id=28136 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:489 S ttl=57 id=42335 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:758 S ttl=37 id=14083 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:702 S ttl=47 id=58150 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:665 S ttl=55 id=56750 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8210s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5009 S ttl=45 id=55387 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8210s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:15126 S ttl=58 id=31172 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8210s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3455 S ttl=55 id=33937 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8210s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:939 S ttl=42 id=2455 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8210s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1459 S ttl=49 id=3686 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8210s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:161 S ttl=47 id=60159 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:305 S ttl=59 id=53196 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:508 S ttl=46 id=27961 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6106 S ttl=55 id=34123 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:525 S ttl=42 id=51739 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:730 S ttl=47 id=10501 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1068 S ttl=38 id=18001 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:600 S ttl=56 id=32277 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:38 S ttl=40 id=7353 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:167 S ttl=38 id=27094 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:406 S ttl=46 id=30733 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:723 S ttl=43 id=8544 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3006 S ttl=41 id=36500 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1020 S ttl=58 id=1248 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27002 S ttl=44 id=53322 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:274 S ttl=51 id=14244 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6004 S ttl=41 id=9913 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:569 S ttl=54 id=38248 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:400 S ttl=42 id=51025 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:637 S ttl=37 id=58082 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1474 S ttl=40 id=47139 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1475 S ttl=52 id=30979 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2111 S ttl=46 id=6820 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:404 S ttl=46 id=22959 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1222 S ttl=52 id=29122 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:16080 S ttl=45 id=55597 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1540 S ttl=59 id=2771 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (36.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1366 S ttl=38 id=22640 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (36.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1127 S ttl=37 id=43072 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.0310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8 S ttl=40 id=40125 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.0310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:391 S ttl=58 id=44074 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.0310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4662 S ttl=57 id=11239 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:951 S ttl=38 id=42819 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13714 S ttl=41 id=38174 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:919 S ttl=40 id=20483 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:521 S ttl=44 id=63596 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:872 S ttl=58 id=26497 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13783 S ttl=55 id=45748 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:179 S ttl=47 id=47475 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:221 S ttl=40 id=43756 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2022 S ttl=38 id=63436 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:353 S ttl=55 id=3509 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:417 S ttl=55 id=46559 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3268 S ttl=55 id=40328 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:136 S ttl=54 id=20304 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1528 S ttl=43 id=51663 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13705 S ttl=44 id=10242 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:650 S ttl=41 id=39970 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:795 S ttl=53 id=46809 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:988 S ttl=50 id=21352 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:904 S ttl=55 id=61082 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:810 S ttl=50 id=24330 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:280 S ttl=45 id=36692 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:783 S ttl=47 id=51359 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5979 S ttl=48 id=21126 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:996 S ttl=48 id=63780 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:361 S ttl=56 id=53808 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2049 S ttl=48 id=18848 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:359 S ttl=47 id=21117 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:102 S ttl=53 id=30114 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:801 S ttl=43 id=35852 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:586 S ttl=52 id=40817 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1033 S ttl=56 id=3435 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:654 S ttl=57 id=1634 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:154 S ttl=57 id=18595 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:369 S ttl=37 id=22059 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:47 S ttl=37 id=19601 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:676 S ttl=53 id=5747 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4224 S ttl=45 id=61050 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:800 S ttl=38 id=6470 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:81 S ttl=57 id=21983 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5010 S ttl=56 id=27979 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:194 S ttl=37 id=42624 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5510 S ttl=46 id=48686 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1495 S ttl=47 id=2442 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:68 S ttl=39 id=4702 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:550 S ttl=56 id=23720 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1361 S ttl=46 id=35762 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1666 S ttl=56 id=54728 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.2110s) TCP 156.17.238.83:59934 &gt; 64.13.134.52:113 S ttl=55 id=37631 iplen=44  seq=3613812222 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1536 S ttl=59 id=51014 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1669 S ttl=56 id=51591 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.3180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13709 S ttl=53 id=62177 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:359 S ttl=53 id=32997 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2049 S ttl=55 id=64834 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:361 S ttl=48 id=16653 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:996 S ttl=47 id=13552 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5979 S ttl=55 id=53580 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:783 S ttl=55 id=1032 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:280 S ttl=55 id=29562 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:810 S ttl=52 id=4174 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:904 S ttl=46 id=30883 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:988 S ttl=38 id=48516 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3940s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:795 S ttl=54 id=62169 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:650 S ttl=41 id=3798 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13705 S ttl=54 id=62507 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1528 S ttl=52 id=12915 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:136 S ttl=37 id=12380 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3268 S ttl=37 id=51377 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:417 S ttl=47 id=51036 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:353 S ttl=49 id=34430 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2022 S ttl=38 id=6187 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:221 S ttl=37 id=8870 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:179 S ttl=55 id=50936 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13783 S ttl=54 id=18811 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:872 S ttl=53 id=62220 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:521 S ttl=50 id=33429 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:919 S ttl=46 id=24955 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13714 S ttl=44 id=62090 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.3950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:951 S ttl=38 id=18113 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1666 S ttl=58 id=41339 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1361 S ttl=58 id=4697 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:550 S ttl=44 id=24130 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:68 S ttl=39 id=3827 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1495 S ttl=42 id=16291 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5510 S ttl=37 id=58503 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:194 S ttl=46 id=45974 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5010 S ttl=45 id=2014 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:81 S ttl=52 id=2384 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:800 S ttl=47 id=57704 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4224 S ttl=59 id=46675 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4020s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:676 S ttl=56 id=61383 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:47 S ttl=47 id=24308 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:369 S ttl=46 id=59558 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:154 S ttl=51 id=38244 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:654 S ttl=59 id=370 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1033 S ttl=56 id=62247 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:586 S ttl=58 id=15079 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:801 S ttl=57 id=44400 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.4030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:102 S ttl=46 id=34833 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;RCVD (37.4120s) TCP 64.13.134.52:113 &gt; 156.17.238.83:59934 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3613812223 &#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32778 S ttl=40 id=42348 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:819 S ttl=48 id=15939 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:308 S ttl=52 id=56273 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5308 S ttl=55 id=62405 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1420 S ttl=58 id=39227 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1084 S ttl=52 id=50122 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.4140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:964 S ttl=53 id=4702 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13709 S ttl=52 id=23303 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1669 S ttl=38 id=51395 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (37.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1536 S ttl=48 id=44168 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2022 S ttl=46 id=2107 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:353 S ttl=43 id=24571 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:417 S ttl=59 id=37774 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3268 S ttl=44 id=35128 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:136 S ttl=39 id=64108 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1528 S ttl=54 id=52594 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13705 S ttl=59 id=27474 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:650 S ttl=57 id=5006 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:795 S ttl=40 id=47510 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:988 S ttl=53 id=16681 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:904 S ttl=57 id=9476 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:810 S ttl=51 id=34629 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:280 S ttl=47 id=61480 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:783 S ttl=50 id=7951 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5979 S ttl=47 id=22451 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:996 S ttl=57 id=2208 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:361 S ttl=51 id=17057 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2049 S ttl=51 id=63142 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:359 S ttl=53 id=44673 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:951 S ttl=53 id=6942 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13714 S ttl=37 id=207 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:919 S ttl=52 id=57856 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:521 S ttl=55 id=4927 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:872 S ttl=37 id=5463 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13783 S ttl=51 id=49792 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:179 S ttl=40 id=11358 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:221 S ttl=48 id=38099 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:102 S ttl=49 id=8443 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:801 S ttl=56 id=9213 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:586 S ttl=44 id=33637 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1033 S ttl=55 id=63761 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:654 S ttl=38 id=47789 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:154 S ttl=41 id=58758 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:369 S ttl=43 id=59302 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:47 S ttl=43 id=908 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:676 S ttl=53 id=64015 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4224 S ttl=59 id=62358 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:800 S ttl=46 id=37430 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:81 S ttl=40 id=5974 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5010 S ttl=44 id=17190 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:194 S ttl=44 id=29011 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5510 S ttl=47 id=12923 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1495 S ttl=55 id=45725 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:68 S ttl=56 id=20029 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:550 S ttl=48 id=36415 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.6700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1361 S ttl=45 id=42794 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1666 S ttl=43 id=62541 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:964 S ttl=41 id=19225 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1084 S ttl=45 id=49444 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1420 S ttl=59 id=32533 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5308 S ttl=51 id=38749 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:308 S ttl=45 id=44208 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:819 S ttl=57 id=58007 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (37.6790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32778 S ttl=48 id=61571 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (37.8470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1536 S ttl=50 id=45726 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.8470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1669 S ttl=39 id=25132 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.8470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13709 S ttl=58 id=30505 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1492 S ttl=54 id=19124 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:748 S ttl=38 id=6483 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:526 S ttl=44 id=29214 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:818 S ttl=45 id=11333 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6668 S ttl=57 id=13222 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:431 S ttl=42 id=24249 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:11 S ttl=59 id=11728 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:38037 S ttl=59 id=42883 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:704 S ttl=51 id=58387 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2627 S ttl=43 id=21180 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:114 S ttl=57 id=18644 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18 S ttl=54 id=1944 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1404 S ttl=43 id=59047 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:735 S ttl=51 id=13075 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9101 S ttl=42 id=36693 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1504 S ttl=46 id=33554 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:462 S ttl=52 id=30657 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:73 S ttl=57 id=47846 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1374 S ttl=51 id=13478 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:246 S ttl=49 id=62304 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1549 S ttl=57 id=46583 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7001 S ttl=44 id=22972 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6665 S ttl=59 id=43274 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8009 S ttl=37 id=1522 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:565 S ttl=55 id=8684 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:885 S ttl=40 id=38536 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5101 S ttl=41 id=50542 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:304 S ttl=56 id=42480 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:469 S ttl=58 id=45015 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:129 S ttl=57 id=13432 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1462 S ttl=51 id=43236 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5997 S ttl=43 id=14816 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2030 S ttl=52 id=50602 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:169 S ttl=59 id=60423 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:439 S ttl=52 id=15007 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:82 S ttl=47 id=58555 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:240 S ttl=42 id=23691 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6666 S ttl=59 id=50265 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1460 S ttl=55 id=44294 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7006 S ttl=48 id=20080 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:871 S ttl=55 id=62094 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:882 S ttl=44 id=10090 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:451 S ttl=40 id=18282 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:155 S ttl=40 id=13318 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:692 S ttl=42 id=14152 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:340 S ttl=42 id=7250 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1496 S ttl=37 id=21213 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32778 S ttl=56 id=63143 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:819 S ttl=52 id=26031 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:308 S ttl=52 id=57927 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5308 S ttl=54 id=25978 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1420 S ttl=41 id=63211 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1084 S ttl=51 id=48663 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (37.9430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:964 S ttl=51 id=54021 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:472 S ttl=53 id=32693 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:115 S ttl=58 id=14751 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1140s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:608 S ttl=45 id=55170 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1374 S ttl=45 id=33001 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:73 S ttl=40 id=3852 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:462 S ttl=47 id=29779 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1504 S ttl=57 id=57905 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9101 S ttl=59 id=39838 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:735 S ttl=48 id=20242 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1404 S ttl=41 id=42827 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18 S ttl=59 id=17967 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:114 S ttl=55 id=647 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2627 S ttl=58 id=55544 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:704 S ttl=49 id=58339 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:38037 S ttl=58 id=59445 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:11 S ttl=41 id=15007 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:431 S ttl=49 id=43130 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6668 S ttl=49 id=39815 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:818 S ttl=39 id=21917 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:526 S ttl=56 id=16529 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:748 S ttl=53 id=1934 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1492 S ttl=43 id=50709 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8009 S ttl=55 id=63572 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6665 S ttl=37 id=7442 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7001 S ttl=40 id=346 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1549 S ttl=39 id=30029 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:246 S ttl=55 id=31576 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5101 S ttl=57 id=20635 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:885 S ttl=52 id=58540 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:565 S ttl=54 id=15296 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:882 S ttl=59 id=51064 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:871 S ttl=44 id=52858 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7006 S ttl=47 id=35191 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1460 S ttl=37 id=36715 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6666 S ttl=54 id=58178 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:240 S ttl=48 id=35296 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:82 S ttl=47 id=30836 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:439 S ttl=48 id=57828 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:169 S ttl=46 id=63716 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2030 S ttl=44 id=32896 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5997 S ttl=50 id=33642 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1462 S ttl=53 id=58458 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:129 S ttl=51 id=44671 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:469 S ttl=44 id=21214 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:304 S ttl=42 id=1629 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.2000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1496 S ttl=45 id=27812 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.2000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:340 S ttl=44 id=28600 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.2000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:692 S ttl=46 id=12362 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.2000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:155 S ttl=54 id=19 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.2000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:451 S ttl=46 id=6232 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:680 S ttl=52 id=50728 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1013 S ttl=54 id=28655 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3986 S ttl=39 id=6731 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3462 S ttl=46 id=24818 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.2080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:328 S ttl=57 id=29854 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.2080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13711 S ttl=40 id=48078 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.2080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:96 S ttl=48 id=32682 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.3790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:608 S ttl=48 id=49700 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.3790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:115 S ttl=54 id=26817 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.3790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:472 S ttl=58 id=2222 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1492 S ttl=47 id=17283 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:748 S ttl=52 id=26680 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:526 S ttl=39 id=20170 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:818 S ttl=46 id=52292 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6668 S ttl=56 id=33721 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:431 S ttl=44 id=23930 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:11 S ttl=40 id=13491 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:38037 S ttl=42 id=1640 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:704 S ttl=46 id=515 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2627 S ttl=54 id=415 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:114 S ttl=47 id=29549 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18 S ttl=47 id=28269 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1404 S ttl=42 id=49550 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:735 S ttl=41 id=46723 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9101 S ttl=54 id=65412 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1504 S ttl=47 id=63728 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:462 S ttl=40 id=29619 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:73 S ttl=59 id=30256 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1374 S ttl=37 id=55425 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:565 S ttl=47 id=65367 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:885 S ttl=39 id=41791 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5101 S ttl=46 id=62733 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:246 S ttl=41 id=13956 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1549 S ttl=53 id=27759 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7001 S ttl=58 id=60119 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6665 S ttl=44 id=58656 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8009 S ttl=49 id=1502 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:304 S ttl=59 id=49624 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:469 S ttl=59 id=37612 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:129 S ttl=56 id=53394 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1462 S ttl=50 id=49283 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5997 S ttl=51 id=14569 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2030 S ttl=57 id=5961 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:169 S ttl=56 id=597 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:439 S ttl=52 id=59463 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:82 S ttl=48 id=61479 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:240 S ttl=52 id=27801 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6666 S ttl=57 id=17090 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1460 S ttl=48 id=34738 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7006 S ttl=57 id=51133 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:871 S ttl=40 id=20693 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:882 S ttl=48 id=40672 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:451 S ttl=51 id=45662 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:155 S ttl=39 id=45306 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.4660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:692 S ttl=49 id=15029 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:340 S ttl=41 id=5478 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1496 S ttl=38 id=17253 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:96 S ttl=48 id=25857 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13711 S ttl=56 id=24978 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.4710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:328 S ttl=37 id=11657 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3462 S ttl=53 id=8133 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.4720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3986 S ttl=50 id=13816 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1013 S ttl=50 id=15049 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.4720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:680 S ttl=59 id=38277 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.6450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:472 S ttl=45 id=8300 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.6450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:115 S ttl=54 id=38029 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.6450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:608 S ttl=42 id=56293 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1002 S ttl=38 id=24535 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:392 S ttl=48 id=11961 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:976 S ttl=43 id=45348 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2017 S ttl=53 id=24256 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1234 S ttl=45 id=20035 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:409 S ttl=43 id=29625 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:776 S ttl=46 id=1869 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1380 S ttl=45 id=24400 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:454 S ttl=58 id=7421 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:562 S ttl=39 id=28671 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:717 S ttl=43 id=27553 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1043 S ttl=44 id=17661 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:49 S ttl=48 id=34917 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2501 S ttl=42 id=41129 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:710 S ttl=38 id=4837 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:12345 S ttl=42 id=2804 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:175 S ttl=45 id=26308 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3005 S ttl=54 id=3788 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:386 S ttl=45 id=22289 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:54320 S ttl=45 id=51279 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:981 S ttl=38 id=9662 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:189 S ttl=40 id=48836 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1451 S ttl=46 id=53354 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9050 S ttl=55 id=65323 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:473 S ttl=49 id=62203 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2601 S ttl=53 id=27882 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:979 S ttl=59 id=14252 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:816 S ttl=48 id=62321 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1112 S ttl=45 id=23259 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:378 S ttl=59 id=15592 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2025 S ttl=57 id=34088 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3306 S ttl=39 id=3344 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6110 S ttl=56 id=31677 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:652 S ttl=49 id=37188 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1720 S ttl=37 id=47408 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:452 S ttl=52 id=24388 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:286 S ttl=39 id=32789 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:111 S ttl=56 id=16210 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:846 S ttl=52 id=32238 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9103 S ttl=44 id=56406 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:613 S ttl=58 id=57863 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:320 S ttl=40 id=32836 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4 S ttl=40 id=64301 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6558 S ttl=46 id=31201 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1370 S ttl=42 id=43940 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:426 S ttl=55 id=14431 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5192 S ttl=51 id=42638 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:680 S ttl=48 id=62594 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1013 S ttl=41 id=936 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3986 S ttl=42 id=33209 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3462 S ttl=41 id=11559 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:328 S ttl=41 id=9627 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13711 S ttl=59 id=62631 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (38.7370s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:96 S ttl=37 id=25301 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:824 S ttl=59 id=36523 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:28 S ttl=53 id=47981 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4132 S ttl=40 id=27965 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:386 S ttl=37 id=53379 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3005 S ttl=48 id=49427 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:175 S ttl=38 id=1839 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:12345 S ttl=49 id=31118 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:710 S ttl=53 id=47164 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2501 S ttl=40 id=35549 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:49 S ttl=42 id=39796 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1043 S ttl=40 id=8687 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:717 S ttl=52 id=50031 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:562 S ttl=53 id=6100 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:454 S ttl=53 id=11187 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1380 S ttl=53 id=47893 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:776 S ttl=48 id=60826 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:409 S ttl=37 id=27974 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1234 S ttl=48 id=302 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2017 S ttl=56 id=64205 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:976 S ttl=42 id=37802 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:392 S ttl=37 id=36969 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1002 S ttl=38 id=46028 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:979 S ttl=45 id=42132 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2601 S ttl=55 id=41844 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:473 S ttl=46 id=33032 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9050 S ttl=45 id=61771 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1451 S ttl=50 id=34940 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:189 S ttl=55 id=53021 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:981 S ttl=50 id=35467 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:54320 S ttl=39 id=44205 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:320 S ttl=56 id=32751 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:613 S ttl=45 id=60825 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9103 S ttl=45 id=48910 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:846 S ttl=50 id=40160 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:111 S ttl=44 id=20461 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:286 S ttl=46 id=39981 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:452 S ttl=49 id=13303 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1720 S ttl=47 id=44428 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:652 S ttl=55 id=41629 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6110 S ttl=41 id=46337 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3306 S ttl=51 id=35601 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2025 S ttl=54 id=60670 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:378 S ttl=54 id=33846 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1112 S ttl=57 id=41704 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:816 S ttl=41 id=26268 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5192 S ttl=59 id=8615 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (38.9990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:426 S ttl=45 id=42926 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (38.9990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1370 S ttl=50 id=38700 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6558 S ttl=46 id=29881 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (38.9990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4 S ttl=46 id=46160 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:658 S ttl=50 id=50754 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2040 S ttl=56 id=42800 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7464 S ttl=43 id=25515 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:640 S ttl=55 id=35901 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:62 S ttl=44 id=29746 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:322 S ttl=57 id=13918 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.0080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:85 S ttl=44 id=8455 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.1780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4132 S ttl=39 id=12033 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.1780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:28 S ttl=43 id=46548 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.1780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:824 S ttl=43 id=6725 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1002 S ttl=51 id=40655 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:392 S ttl=51 id=36918 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:976 S ttl=50 id=14855 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2017 S ttl=38 id=45278 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1234 S ttl=57 id=50802 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:409 S ttl=46 id=22970 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:776 S ttl=38 id=58919 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1380 S ttl=58 id=50089 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:454 S ttl=48 id=55766 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:562 S ttl=44 id=2625 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:717 S ttl=53 id=64392 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1043 S ttl=56 id=4201 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:49 S ttl=43 id=18394 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2501 S ttl=39 id=3294 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:710 S ttl=41 id=7250 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:12345 S ttl=56 id=16833 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:175 S ttl=58 id=28979 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3005 S ttl=44 id=50360 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:386 S ttl=57 id=32377 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:54320 S ttl=56 id=44734 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:981 S ttl=39 id=10174 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:189 S ttl=55 id=19655 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1451 S ttl=42 id=37389 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9050 S ttl=37 id=58105 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:473 S ttl=40 id=26323 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2601 S ttl=55 id=21828 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:979 S ttl=53 id=53748 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:816 S ttl=53 id=48870 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1112 S ttl=55 id=30534 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:378 S ttl=51 id=26004 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2025 S ttl=43 id=53009 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3306 S ttl=50 id=55356 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6110 S ttl=48 id=9370 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:652 S ttl=38 id=8179 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1720 S ttl=43 id=64869 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:452 S ttl=52 id=33733 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:286 S ttl=52 id=43704 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:111 S ttl=40 id=29533 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:846 S ttl=48 id=27647 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9103 S ttl=43 id=49140 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:613 S ttl=55 id=57342 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:320 S ttl=56 id=34786 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4 S ttl=59 id=24488 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6558 S ttl=45 id=7809 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1370 S ttl=44 id=21796 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.2630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:426 S ttl=45 id=55345 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5192 S ttl=46 id=57278 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:85 S ttl=54 id=8716 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:322 S ttl=43 id=11585 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:62 S ttl=42 id=43450 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.2720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:640 S ttl=41 id=53358 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7464 S ttl=45 id=48140 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.2720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2040 S ttl=51 id=18118 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.2720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:658 S ttl=42 id=20498 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.4430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:824 S ttl=52 id=43620 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.4430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:28 S ttl=37 id=56887 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.4430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4132 S ttl=54 id=8322 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:501 S ttl=45 id=39969 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27010 S ttl=54 id=8357 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:488 S ttl=50 id=64307 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:424 S ttl=39 id=43344 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:707 S ttl=38 id=54447 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:750 S ttl=56 id=23385 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3299 S ttl=39 id=63282 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:106 S ttl=57 id=6974 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:54 S ttl=52 id=53130 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:899 S ttl=52 id=62237 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:510 S ttl=46 id=39227 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:839 S ttl=43 id=25693 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:548 S ttl=51 id=41912 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3052 S ttl=55 id=62700 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:163 S ttl=47 id=55191 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1403 S ttl=39 id=6339 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:219 S ttl=41 id=49711 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:803 S ttl=39 id=55538 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:76 S ttl=59 id=61045 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1663 S ttl=40 id=30800 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5100 S ttl=37 id=23448 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1680 S ttl=49 id=721 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:825 S ttl=45 id=47702 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:790 S ttl=50 id=50223 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3064 S ttl=55 id=37435 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8118 S ttl=52 id=63005 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32780 S ttl=40 id=50554 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:551 S ttl=49 id=26704 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:775 S ttl=51 id=61145 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:238 S ttl=50 id=20200 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1449 S ttl=55 id=28376 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:22370 S ttl=58 id=25669 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1993 S ttl=48 id=35524 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:289 S ttl=47 id=9528 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:537 S ttl=38 id=23998 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5802 S ttl=59 id=29079 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1367 S ttl=47 id=22344 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1464 S ttl=40 id=34018 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:186 S ttl=43 id=19443 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9535 S ttl=48 id=59162 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:922 S ttl=56 id=18460 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5220s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:180 S ttl=53 id=54830 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5300s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:700 S ttl=43 id=35119 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5300s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:270 S ttl=58 id=28168 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5300s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:65301 S ttl=59 id=40198 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5300s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:128 S ttl=53 id=10156 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5300s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:418 S ttl=41 id=29572 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:658 S ttl=43 id=26071 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2040 S ttl=44 id=61668 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7464 S ttl=57 id=62644 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:640 S ttl=51 id=52393 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:62 S ttl=42 id=37975 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:322 S ttl=42 id=61336 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (39.5390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:85 S ttl=37 id=15423 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:368 S ttl=55 id=62790 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:682 S ttl=51 id=45201 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:475 S ttl=47 id=52411 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:76 S ttl=45 id=62439 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:803 S ttl=42 id=11958 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:219 S ttl=56 id=48090 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1403 S ttl=51 id=36314 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:163 S ttl=57 id=23498 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3052 S ttl=49 id=22626 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:548 S ttl=38 id=4746 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:839 S ttl=43 id=46770 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:510 S ttl=40 id=5044 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:899 S ttl=37 id=44633 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:54 S ttl=55 id=28132 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:106 S ttl=49 id=58430 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3299 S ttl=46 id=6654 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:750 S ttl=48 id=29336 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:707 S ttl=56 id=25782 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:424 S ttl=40 id=2425 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:488 S ttl=46 id=13018 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27010 S ttl=40 id=19175 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:501 S ttl=48 id=3876 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32780 S ttl=54 id=13227 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8118 S ttl=59 id=53079 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3064 S ttl=38 id=4033 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:790 S ttl=40 id=12022 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:825 S ttl=53 id=6741 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1680 S ttl=46 id=47204 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5100 S ttl=57 id=26316 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1663 S ttl=45 id=64852 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:180 S ttl=43 id=23170 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:922 S ttl=52 id=29865 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9535 S ttl=55 id=20754 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:186 S ttl=54 id=45308 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1464 S ttl=49 id=19494 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1367 S ttl=57 id=31205 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5802 S ttl=52 id=35885 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:537 S ttl=48 id=52359 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:289 S ttl=48 id=47590 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1993 S ttl=39 id=47316 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:22370 S ttl=59 id=40566 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.7880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1449 S ttl=52 id=43705 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:238 S ttl=38 id=19990 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:775 S ttl=48 id=19805 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:551 S ttl=46 id=8208 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:418 S ttl=58 id=47642 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:128 S ttl=49 id=56568 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (39.7950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:65301 S ttl=42 id=43180 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.7950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:270 S ttl=40 id=24729 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (39.7950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:700 S ttl=54 id=35420 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:944 S ttl=59 id=26631 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:895 S ttl=47 id=2791 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:461 S ttl=54 id=20341 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1454 S ttl=46 id=42773 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:277 S ttl=56 id=6338 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1376 S ttl=38 id=50250 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (39.8070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3045 S ttl=37 id=27283 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (39.9750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:475 S ttl=54 id=12655 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (39.9750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:682 S ttl=39 id=57925 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (39.9750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:368 S ttl=37 id=34929 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:501 S ttl=54 id=20046 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27010 S ttl=42 id=32889 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:488 S ttl=52 id=650 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:424 S ttl=37 id=15147 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:707 S ttl=53 id=59682 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:750 S ttl=47 id=29691 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3299 S ttl=55 id=37877 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:106 S ttl=47 id=47229 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:54 S ttl=57 id=29395 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:899 S ttl=38 id=58538 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:510 S ttl=52 id=356 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:839 S ttl=57 id=48193 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:548 S ttl=42 id=34377 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3052 S ttl=51 id=26538 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:163 S ttl=50 id=29265 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1403 S ttl=43 id=44770 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:219 S ttl=53 id=53623 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:803 S ttl=53 id=10370 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:76 S ttl=53 id=62526 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1663 S ttl=45 id=17229 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5100 S ttl=37 id=7017 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1680 S ttl=43 id=57214 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:825 S ttl=39 id=19607 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:790 S ttl=47 id=50908 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3064 S ttl=44 id=11220 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.0460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8118 S ttl=55 id=4924 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32780 S ttl=52 id=58336 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:551 S ttl=45 id=32296 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:775 S ttl=39 id=29440 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:238 S ttl=40 id=57713 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1449 S ttl=37 id=45464 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:22370 S ttl=45 id=6112 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1993 S ttl=50 id=33117 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:289 S ttl=54 id=52536 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:537 S ttl=39 id=6984 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5802 S ttl=48 id=25967 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1367 S ttl=55 id=54548 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1464 S ttl=41 id=31427 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:186 S ttl=41 id=25131 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9535 S ttl=39 id=50662 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:922 S ttl=57 id=2738 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:180 S ttl=55 id=62737 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:700 S ttl=46 id=30681 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:270 S ttl=45 id=367 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:65301 S ttl=45 id=15528 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:128 S ttl=53 id=36469 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.0590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:418 S ttl=43 id=18298 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3045 S ttl=59 id=7549 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1376 S ttl=58 id=38398 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:277 S ttl=50 id=9135 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1454 S ttl=38 id=53626 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:461 S ttl=55 id=26542 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:895 S ttl=38 id=4386 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.0710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:944 S ttl=47 id=57699 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.2390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:368 S ttl=45 id=38756 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.2390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:682 S ttl=42 id=24355 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.2390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:475 S ttl=44 id=50063 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1456 S ttl=41 id=26292 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:770 S ttl=40 id=60064 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1483 S ttl=39 id=220 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1425 S ttl=56 id=35676 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1424 S ttl=52 id=35162 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:607 S ttl=54 id=28651 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6145 S ttl=56 id=2354 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:156 S ttl=53 id=38215 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:611 S ttl=47 id=31920 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:449 S ttl=38 id=46431 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1987 S ttl=43 id=57758 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:15151 S ttl=47 id=9623 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:311 S ttl=49 id=48390 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:746 S ttl=46 id=6821 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:301 S ttl=59 id=25385 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32773 S ttl=46 id=38197 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27374 S ttl=56 id=54704 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1670 S ttl=50 id=54469 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1418 S ttl=49 id=30654 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:334 S ttl=46 id=5785 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:982 S ttl=37 id=10852 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:16 S ttl=56 id=35305 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:503 S ttl=49 id=17811 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:599 S ttl=41 id=51109 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:583 S ttl=59 id=47370 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:553 S ttl=43 id=4475 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:886 S ttl=51 id=50613 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:556 S ttl=57 id=1803 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:227 S ttl=57 id=61463 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2307 S ttl=38 id=63798 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:77 S ttl=38 id=12458 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5800 S ttl=46 id=51165 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5 S ttl=40 id=21155 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:764 S ttl=52 id=44410 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1458 S ttl=50 id=7540 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:741 S ttl=52 id=13488 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:836 S ttl=52 id=18905 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1009 S ttl=38 id=36798 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:911 S ttl=51 id=24538 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:446 S ttl=54 id=39639 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:50002 S ttl=43 id=64271 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.3150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:147 S ttl=45 id=52954 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1503 S ttl=40 id=53476 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:183 S ttl=41 id=53916 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1083 S ttl=52 id=23624 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.3260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:150 S ttl=53 id=28744 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1473 S ttl=57 id=50116 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:944 S ttl=58 id=2730 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:895 S ttl=37 id=43480 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:461 S ttl=57 id=6464 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1454 S ttl=38 id=51566 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:277 S ttl=45 id=16236 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1376 S ttl=41 id=57522 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.3380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3045 S ttl=40 id=23405 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1543 S ttl=59 id=16219 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:97 S ttl=57 id=11841 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1545 S ttl=59 id=28217 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32773 S ttl=55 id=65375 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:301 S ttl=48 id=31772 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:746 S ttl=46 id=4656 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:311 S ttl=59 id=37105 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:15151 S ttl=45 id=43082 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1987 S ttl=47 id=42664 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:449 S ttl=54 id=28328 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:611 S ttl=48 id=5308 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:156 S ttl=52 id=56378 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6145 S ttl=44 id=43001 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:607 S ttl=40 id=8764 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1424 S ttl=48 id=62930 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1425 S ttl=54 id=9876 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1483 S ttl=51 id=57657 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:770 S ttl=41 id=10874 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1456 S ttl=38 id=37976 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:886 S ttl=55 id=55306 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:553 S ttl=51 id=49162 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:583 S ttl=41 id=31665 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:599 S ttl=58 id=38234 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:503 S ttl=51 id=8298 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:16 S ttl=41 id=55544 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:982 S ttl=44 id=41084 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:334 S ttl=41 id=58109 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1418 S ttl=56 id=48650 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1670 S ttl=55 id=9746 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27374 S ttl=59 id=56414 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:147 S ttl=56 id=2450 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:50002 S ttl=47 id=3244 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:446 S ttl=50 id=22391 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:911 S ttl=54 id=49564 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1009 S ttl=52 id=13181 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:836 S ttl=42 id=34734 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:741 S ttl=52 id=27485 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1458 S ttl=47 id=9940 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:764 S ttl=57 id=8542 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5 S ttl=51 id=54640 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5800 S ttl=44 id=55791 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:77 S ttl=52 id=65444 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2307 S ttl=50 id=16194 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:227 S ttl=49 id=18760 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:556 S ttl=59 id=10648 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5900s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1473 S ttl=49 id=57894 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.5900s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:150 S ttl=54 id=52639 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.5900s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1083 S ttl=51 id=9766 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.5900s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:183 S ttl=56 id=50241 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.5900s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1503 S ttl=53 id=9270 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:516 S ttl=45 id=46146 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:683 S ttl=54 id=61718 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:17007 S ttl=52 id=52989 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:365 S ttl=56 id=2670 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:231 S ttl=57 id=47811 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:453 S ttl=47 id=33976 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (40.6030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:983 S ttl=52 id=46612 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (40.7670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1545 S ttl=49 id=49926 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (40.7670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:97 S ttl=38 id=17243 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.7670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1543 S ttl=54 id=63825 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1456 S ttl=51 id=58070 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:770 S ttl=44 id=24422 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1483 S ttl=57 id=8858 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1425 S ttl=40 id=31363 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1424 S ttl=37 id=37281 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:607 S ttl=44 id=14131 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6145 S ttl=40 id=38197 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:156 S ttl=42 id=40559 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:611 S ttl=45 id=51863 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:449 S ttl=45 id=4561 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1987 S ttl=39 id=42273 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:15151 S ttl=51 id=61491 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:311 S ttl=37 id=48974 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:746 S ttl=37 id=22501 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:301 S ttl=59 id=19005 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32773 S ttl=56 id=50771 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27374 S ttl=44 id=36663 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1670 S ttl=48 id=42248 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1418 S ttl=47 id=13960 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:334 S ttl=46 id=11972 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:982 S ttl=47 id=56537 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:16 S ttl=54 id=53583 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:503 S ttl=37 id=3522 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:599 S ttl=58 id=3542 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:583 S ttl=55 id=32761 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:553 S ttl=57 id=30984 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:886 S ttl=55 id=9660 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:556 S ttl=55 id=65391 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:227 S ttl=40 id=47637 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2307 S ttl=58 id=7900 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:77 S ttl=38 id=23571 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5800 S ttl=50 id=61027 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5 S ttl=45 id=64193 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:764 S ttl=44 id=679 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1458 S ttl=38 id=29897 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:741 S ttl=37 id=32828 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:836 S ttl=44 id=55658 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1009 S ttl=51 id=46801 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:911 S ttl=53 id=17020 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8490s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:446 S ttl=56 id=52167 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8490s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:50002 S ttl=41 id=61647 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8490s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:147 S ttl=52 id=30403 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1503 S ttl=58 id=47263 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:183 S ttl=49 id=29026 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (40.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1083 S ttl=56 id=53964 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:150 S ttl=59 id=60069 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1473 S ttl=59 id=64451 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:983 S ttl=58 id=12406 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:453 S ttl=46 id=16971 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:231 S ttl=55 id=9369 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:365 S ttl=59 id=60885 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:17007 S ttl=47 id=47327 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:683 S ttl=48 id=30121 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (40.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:516 S ttl=47 id=28986 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1543 S ttl=45 id=5398 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.0310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:97 S ttl=37 id=63902 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.0310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1545 S ttl=38 id=60862 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:198 S ttl=54 id=35970 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:961 S ttl=55 id=30588 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1003 S ttl=54 id=51989 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5998 S ttl=39 id=40489 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:950 S ttl=59 id=805 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:594 S ttl=49 id=20352 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:597 S ttl=58 id=23455 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:210 S ttl=50 id=35877 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:250 S ttl=45 id=39082 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:719 S ttl=39 id=26708 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6701 S ttl=46 id=28131 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9100 S ttl=51 id=60347 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:889 S ttl=51 id=13744 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:434 S ttl=48 id=19626 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:299 S ttl=38 id=26355 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.0990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5903 S ttl=47 id=46566 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1020s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:379 S ttl=41 id=9315 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9051 S ttl=54 id=40976 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:22305 S ttl=41 id=63651 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5405 S ttl=55 id=54792 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:56 S ttl=51 id=9951 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:538 S ttl=49 id=40440 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:381 S ttl=44 id=62285 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:481 S ttl=57 id=59823 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6001 S ttl=48 id=21441 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1383 S ttl=38 id=29180 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1241 S ttl=42 id=39258 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1248 S ttl=58 id=35403 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1387 S ttl=52 id=48822 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5190 S ttl=39 id=24455 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2433 S ttl=58 id=56902 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:137 S ttl=41 id=31996 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:66 S ttl=47 id=15136 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4133 S ttl=47 id=26633 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:415 S ttl=55 id=3377 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:352 S ttl=56 id=59675 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:213 S ttl=41 id=25444 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:288 S ttl=50 id=18902 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:527 S ttl=41 id=60407 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:245 S ttl=40 id=48738 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:998 S ttl=41 id=60183 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18182 S ttl=53 id=3553 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:456 S ttl=41 id=31932 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:745 S ttl=43 id=20846 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1180s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:52 S ttl=45 id=30705 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5003 S ttl=53 id=52470 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:977 S ttl=49 id=10721 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:516 S ttl=47 id=51348 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:683 S ttl=54 id=26189 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:17007 S ttl=39 id=1315 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:365 S ttl=48 id=39437 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:231 S ttl=39 id=1667 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:453 S ttl=42 id=20285 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.1340s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:983 S ttl=59 id=29285 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.2950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:924 S ttl=53 id=41157 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.2950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9106 S ttl=46 id=61324 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.2950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:821 S ttl=43 id=28319 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:719 S ttl=46 id=60163 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:250 S ttl=38 id=56344 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:210 S ttl=56 id=7188 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:597 S ttl=42 id=877 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:594 S ttl=37 id=6562 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:950 S ttl=54 id=2360 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5998 S ttl=46 id=25317 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1003 S ttl=44 id=34430 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:961 S ttl=45 id=51695 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:198 S ttl=44 id=36709 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:379 S ttl=49 id=42432 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5903 S ttl=41 id=55499 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:299 S ttl=46 id=65497 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:434 S ttl=48 id=23667 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:889 S ttl=44 id=44852 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9100 S ttl=38 id=12092 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6701 S ttl=59 id=1934 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1241 S ttl=54 id=63142 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1383 S ttl=52 id=61701 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6001 S ttl=43 id=21024 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:481 S ttl=42 id=4407 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:381 S ttl=58 id=19256 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:538 S ttl=46 id=23213 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:56 S ttl=40 id=12763 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5405 S ttl=43 id=19597 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:22305 S ttl=41 id=26957 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9051 S ttl=48 id=19301 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18182 S ttl=50 id=12436 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:998 S ttl=46 id=47141 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:245 S ttl=41 id=40211 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:527 S ttl=51 id=46752 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:288 S ttl=57 id=52294 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:213 S ttl=58 id=57818 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:352 S ttl=40 id=1452 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:415 S ttl=40 id=1073 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4133 S ttl=38 id=15902 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:66 S ttl=45 id=55764 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:137 S ttl=42 id=2793 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2433 S ttl=56 id=60147 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5190 S ttl=54 id=5749 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1387 S ttl=45 id=22315 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1248 S ttl=56 id=5661 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:52 S ttl=54 id=8073 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:745 S ttl=52 id=25403 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:456 S ttl=48 id=8580 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:977 S ttl=42 id=6231 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5003 S ttl=53 id=44113 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.3980s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:433 S ttl=48 id=29640 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.3980s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1996 S ttl=55 id=49300 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3980s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1551 S ttl=59 id=22087 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3980s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:413 S ttl=50 id=25049 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.3990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1441 S ttl=51 id=62172 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:699 S ttl=59 id=23657 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.3990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1014 S ttl=54 id=22082 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.5620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:821 S ttl=40 id=50415 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (41.5620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9106 S ttl=50 id=630 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.5620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:924 S ttl=50 id=11389 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:198 S ttl=50 id=9848 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:961 S ttl=48 id=3373 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1003 S ttl=41 id=14586 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5998 S ttl=51 id=6307 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:950 S ttl=37 id=45485 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:594 S ttl=39 id=29683 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:597 S ttl=53 id=54931 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:210 S ttl=44 id=60965 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:250 S ttl=38 id=4799 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:719 S ttl=57 id=37745 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6701 S ttl=42 id=10478 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9100 S ttl=51 id=48160 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:889 S ttl=47 id=50105 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:434 S ttl=45 id=2395 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:299 S ttl=53 id=18685 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5903 S ttl=59 id=39379 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:379 S ttl=48 id=17534 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9051 S ttl=59 id=25222 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:22305 S ttl=49 id=7 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5405 S ttl=43 id=42760 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:56 S ttl=41 id=63842 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:538 S ttl=54 id=56782 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:381 S ttl=48 id=12985 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:481 S ttl=47 id=59903 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6001 S ttl=43 id=6762 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1383 S ttl=54 id=64586 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1241 S ttl=42 id=37899 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1248 S ttl=42 id=47788 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1387 S ttl=53 id=13657 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5190 S ttl=48 id=15778 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2433 S ttl=54 id=1557 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:137 S ttl=46 id=64230 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:66 S ttl=37 id=59684 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4133 S ttl=37 id=54956 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:415 S ttl=49 id=4175 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:352 S ttl=56 id=13969 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:213 S ttl=42 id=47692 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:288 S ttl=59 id=7323 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:527 S ttl=47 id=59249 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:245 S ttl=50 id=30898 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:998 S ttl=51 id=14399 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18182 S ttl=54 id=53000 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:456 S ttl=45 id=62034 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:745 S ttl=54 id=36515 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:52 S ttl=44 id=18363 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.6510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5003 S ttl=51 id=37499 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:977 S ttl=51 id=52807 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1014 S ttl=59 id=53083 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:699 S ttl=47 id=41578 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1441 S ttl=43 id=49201 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:413 S ttl=58 id=9514 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1551 S ttl=38 id=45769 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1996 S ttl=41 id=55192 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (41.6630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:433 S ttl=46 id=43889 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:924 S ttl=38 id=5342 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9106 S ttl=49 id=23677 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.8270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:821 S ttl=46 id=49860 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1547 S ttl=52 id=62292 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:71 S ttl=42 id=49286 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:808 S ttl=55 id=7378 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:690 S ttl=53 id=32031 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:22289 S ttl=53 id=65355 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:321 S ttl=41 id=1269 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7938 S ttl=42 id=17076 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:263 S ttl=58 id=9962 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:862 S ttl=48 id=24102 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.8910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3000 S ttl=38 id=53805 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1515 S ttl=53 id=48460 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:859 S ttl=46 id=46035 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1016 S ttl=48 id=33263 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13720 S ttl=54 id=14873 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:57 S ttl=43 id=30656 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:251 S ttl=55 id=16737 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.8990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:575 S ttl=51 id=61281 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:774 S ttl=41 id=33102 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:138 S ttl=46 id=13870 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3689 S ttl=54 id=5331 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:975 S ttl=52 id=22284 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1032 S ttl=55 id=61418 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6670 S ttl=49 id=41348 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1478 S ttl=49 id=52432 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:685 S ttl=44 id=13809 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:267 S ttl=45 id=41077 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:496 S ttl=37 id=26002 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1984 S ttl=39 id=39044 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:940 S ttl=52 id=51909 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:17 S ttl=46 id=45666 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7004 S ttl=56 id=61604 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:208 S ttl=45 id=11464 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13710 S ttl=49 id=50273 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:632 S ttl=56 id=32300 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:890 S ttl=43 id=37915 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1422 S ttl=43 id=38354 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:892 S ttl=53 id=38286 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1992 S ttl=44 id=3008 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5002 S ttl=50 id=11807 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (41.9090s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:132 S ttl=40 id=62956 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9090s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3456 S ttl=41 id=3768 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9090s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1463 S ttl=37 id=8760 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:794 S ttl=59 id=15236 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:974 S ttl=44 id=9399 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:408 S ttl=48 id=4286 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8080 S ttl=47 id=6784 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1058 S ttl=43 id=35310 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:433 S ttl=56 id=15901 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1996 S ttl=56 id=8938 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1551 S ttl=49 id=8055 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:413 S ttl=54 id=63559 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1441 S ttl=57 id=46910 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:699 S ttl=55 id=57036 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (41.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1014 S ttl=50 id=57149 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.0910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7070 S ttl=42 id=50360 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.0910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:570 S ttl=41 id=26843 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.0910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:494 S ttl=40 id=38418 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3000 S ttl=44 id=1580 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:862 S ttl=58 id=24640 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:263 S ttl=40 id=11885 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7938 S ttl=48 id=7263 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:321 S ttl=59 id=35108 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:22289 S ttl=39 id=39457 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:690 S ttl=43 id=23249 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:808 S ttl=42 id=47063 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:71 S ttl=40 id=17312 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1547 S ttl=58 id=19827 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:575 S ttl=43 id=769 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:251 S ttl=50 id=41547 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:57 S ttl=57 id=19616 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13720 S ttl=42 id=26214 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1016 S ttl=58 id=42186 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:859 S ttl=44 id=58017 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1515 S ttl=43 id=57426 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:496 S ttl=53 id=1300 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:267 S ttl=44 id=13110 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:685 S ttl=57 id=8461 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1478 S ttl=50 id=16619 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6670 S ttl=54 id=27667 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1032 S ttl=55 id=38586 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:975 S ttl=41 id=24706 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3689 S ttl=54 id=60588 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:138 S ttl=48 id=17215 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:774 S ttl=54 id=49305 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1463 S ttl=40 id=49188 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3456 S ttl=49 id=55878 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:132 S ttl=42 id=19710 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5002 S ttl=39 id=14552 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1992 S ttl=45 id=8079 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:892 S ttl=43 id=34234 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1422 S ttl=54 id=6748 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:890 S ttl=40 id=8415 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:632 S ttl=41 id=12780 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13710 S ttl=59 id=59649 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:208 S ttl=52 id=47452 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7004 S ttl=43 id=45546 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:17 S ttl=47 id=41600 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:940 S ttl=40 id=33874 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1984 S ttl=37 id=18902 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:408 S ttl=58 id=45925 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:974 S ttl=49 id=44014 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:794 S ttl=58 id=21719 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1058 S ttl=57 id=32804 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.1790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8080 S ttl=55 id=22808 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6969 S ttl=50 id=22231 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1395 S ttl=55 id=27214 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:100 S ttl=39 id=64401 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8770 S ttl=47 id=9173 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:995 S ttl=54 id=59760 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4045 S ttl=51 id=44161 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:93 S ttl=50 id=40541 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.3550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:494 S ttl=38 id=19443 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.3550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:570 S ttl=39 id=834 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.3550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7070 S ttl=42 id=26567 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59935 &gt; 64.13.134.52:113 S ttl=51 id=6087 iplen=44  seq=3597034750 win=4096 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1547 S ttl=58 id=16307 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:71 S ttl=42 id=12698 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:808 S ttl=59 id=6569 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:690 S ttl=49 id=43984 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:22289 S ttl=58 id=14009 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:321 S ttl=50 id=27126 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7938 S ttl=41 id=47661 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:263 S ttl=52 id=40439 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:862 S ttl=46 id=54483 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1515 S ttl=38 id=51392 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:859 S ttl=42 id=44736 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1016 S ttl=41 id=31253 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13720 S ttl=40 id=17561 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:57 S ttl=53 id=8564 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:251 S ttl=45 id=58912 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:575 S ttl=38 id=31414 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:774 S ttl=45 id=33285 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:138 S ttl=57 id=15887 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3689 S ttl=58 id=570 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:975 S ttl=48 id=27357 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1032 S ttl=43 id=36409 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6670 S ttl=52 id=48586 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1478 S ttl=45 id=2665 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:685 S ttl=58 id=57251 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:267 S ttl=57 id=58803 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:496 S ttl=49 id=53821 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1984 S ttl=49 id=53539 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:940 S ttl=45 id=51935 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:17 S ttl=47 id=60859 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7004 S ttl=58 id=20144 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:208 S ttl=53 id=52700 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13710 S ttl=46 id=33585 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:632 S ttl=57 id=26485 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:890 S ttl=59 id=11989 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1422 S ttl=45 id=14002 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:892 S ttl=46 id=7287 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1992 S ttl=48 id=52344 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5002 S ttl=49 id=32278 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:132 S ttl=45 id=17301 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3456 S ttl=58 id=51305 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1463 S ttl=56 id=47556 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:794 S ttl=40 id=6312 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:974 S ttl=41 id=53462 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:408 S ttl=55 id=36085 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (42.4430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8080 S ttl=46 id=43344 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1058 S ttl=38 id=31511 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:93 S ttl=52 id=9910 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4045 S ttl=48 id=28443 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:995 S ttl=50 id=9079 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8770 S ttl=48 id=33489 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:100 S ttl=38 id=24865 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1395 S ttl=53 id=7533 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6969 S ttl=41 id=38677 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;RCVD (42.6210s) TCP 64.13.134.52:113 &gt; 156.17.238.83:59935 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3597034751 &#10;SENT (42.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7070 S ttl=55 id=22457 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:570 S ttl=38 id=35865 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:494 S ttl=54 id=44281 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3000 S ttl=52 id=24381 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:914 S ttl=51 id=36366 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:867 S ttl=39 id=19851 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1444 S ttl=59 id=5098 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:153 S ttl=52 id=58272 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2112 S ttl=45 id=15948 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1015 S ttl=46 id=17853 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4321 S ttl=48 id=33853 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32779 S ttl=38 id=43340 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1522 S ttl=48 id=46112 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5305 S ttl=47 id=28150 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:61440 S ttl=58 id=64924 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:675 S ttl=40 id=10670 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2120 S ttl=37 id=41458 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:234 S ttl=53 id=12720 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:754 S ttl=54 id=28901 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:387 S ttl=52 id=29265 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:897 S ttl=37 id=63572 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:592 S ttl=52 id=20927 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8081 S ttl=46 id=29716 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:333 S ttl=52 id=15218 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6400 S ttl=45 id=169 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1472 S ttl=51 id=17124 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:39 S ttl=57 id=65366 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27008 S ttl=50 id=155 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:791 S ttl=44 id=63618 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:459 S ttl=44 id=1750 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:347 S ttl=52 id=60144 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:217 S ttl=50 id=26727 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:483 S ttl=55 id=5982 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:35 S ttl=39 id=17308 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1486 S ttl=38 id=29357 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2043 S ttl=44 id=52408 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3421 S ttl=52 id=6918 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:999 S ttl=53 id=65343 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27665 S ttl=40 id=46137 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:466 S ttl=55 id=54986 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6050 S ttl=37 id=63552 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:972 S ttl=41 id=28951 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:567 S ttl=51 id=24459 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13721 S ttl=52 id=32796 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:973 S ttl=45 id=28159 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:95 S ttl=52 id=7618 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:174 S ttl=55 id=2746 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:881 S ttl=46 id=8974 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:697 S ttl=42 id=22253 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3025 S ttl=59 id=17553 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:499 S ttl=50 id=28334 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2500 S ttl=38 id=30501 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:61441 S ttl=54 id=59842 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.6920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:207 S ttl=57 id=38556 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.6920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:159 S ttl=38 id=7614 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6969 S ttl=41 id=26727 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1395 S ttl=52 id=49676 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:100 S ttl=53 id=53846 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8770 S ttl=40 id=54669 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:995 S ttl=48 id=58852 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4045 S ttl=48 id=44499 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:93 S ttl=56 id=39816 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (42.8800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5901 S ttl=41 id=39344 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2112 S ttl=41 id=11737 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:153 S ttl=37 id=58678 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1444 S ttl=38 id=9745 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:867 S ttl=41 id=3133 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:914 S ttl=49 id=29164 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:992 S ttl=46 id=34215 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:55 S ttl=41 id=15626 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.8840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:450 S ttl=37 id=31858 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9200s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32779 S ttl=51 id=44707 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9200s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4321 S ttl=48 id=33357 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9200s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1015 S ttl=52 id=57048 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:387 S ttl=56 id=14139 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:754 S ttl=38 id=11257 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:234 S ttl=38 id=1004 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2120 S ttl=57 id=59112 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:675 S ttl=44 id=54300 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:61440 S ttl=52 id=23930 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5305 S ttl=52 id=25946 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1522 S ttl=57 id=43401 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27665 S ttl=58 id=15255 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:999 S ttl=48 id=46055 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3421 S ttl=41 id=5958 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2043 S ttl=51 id=58465 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1486 S ttl=38 id=7625 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:35 S ttl=41 id=20000 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:483 S ttl=48 id=29766 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:217 S ttl=43 id=52636 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:347 S ttl=45 id=50794 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:459 S ttl=58 id=49124 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:791 S ttl=41 id=4063 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27008 S ttl=44 id=13437 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:39 S ttl=48 id=62082 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1472 S ttl=41 id=34659 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6400 S ttl=39 id=64426 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:333 S ttl=56 id=52562 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8081 S ttl=38 id=44165 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:592 S ttl=40 id=3112 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:897 S ttl=39 id=52354 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:973 S ttl=46 id=22715 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13721 S ttl=39 id=59859 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:567 S ttl=39 id=26450 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:972 S ttl=44 id=43702 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6050 S ttl=39 id=54953 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:466 S ttl=59 id=24145 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:207 S ttl=37 id=22232 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:61441 S ttl=47 id=64912 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2500 S ttl=46 id=6052 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:499 S ttl=58 id=21473 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3025 S ttl=58 id=57656 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:697 S ttl=53 id=32591 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:881 S ttl=41 id=6974 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:174 S ttl=46 id=53269 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:95 S ttl=53 id=22873 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:159 S ttl=41 id=11831 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:622 S ttl=39 id=14040 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:60 S ttl=45 id=15393 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:851 S ttl=58 id=3361 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:37 S ttl=48 id=53825 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1415 S ttl=49 id=34499 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:673 S ttl=51 id=42029 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (42.9560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2604 S ttl=54 id=30574 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5901 S ttl=41 id=64747 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1444 S ttl=38 id=29900 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:153 S ttl=42 id=25851 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2112 S ttl=51 id=42391 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:450 S ttl=56 id=36407 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:55 S ttl=50 id=10578 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:992 S ttl=59 id=44953 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:914 S ttl=51 id=6113 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:867 S ttl=37 id=24003 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1015 S ttl=47 id=13738 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4321 S ttl=58 id=22979 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32779 S ttl=50 id=13658 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5305 S ttl=45 id=58020 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:61440 S ttl=48 id=45141 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:675 S ttl=47 id=62992 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2120 S ttl=55 id=8980 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:234 S ttl=56 id=52013 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:754 S ttl=44 id=40405 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:387 S ttl=50 id=44795 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1522 S ttl=56 id=35261 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2043 S ttl=45 id=49076 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3421 S ttl=39 id=64989 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:999 S ttl=57 id=1923 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27665 S ttl=46 id=52520 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:897 S ttl=46 id=22201 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:592 S ttl=41 id=63604 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8081 S ttl=50 id=16689 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:333 S ttl=44 id=40349 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6400 S ttl=59 id=47402 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1472 S ttl=53 id=3764 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:39 S ttl=54 id=21348 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27008 S ttl=37 id=28105 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:791 S ttl=38 id=65525 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:459 S ttl=43 id=5063 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:347 S ttl=38 id=35952 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:217 S ttl=59 id=30149 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:483 S ttl=52 id=29327 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:35 S ttl=59 id=51349 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1486 S ttl=39 id=31224 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2500 S ttl=44 id=39409 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:61441 S ttl=52 id=5203 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:207 S ttl=40 id=51894 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:466 S ttl=46 id=56741 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6050 S ttl=58 id=21200 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:972 S ttl=57 id=8216 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:567 S ttl=56 id=41393 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13721 S ttl=44 id=43521 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:973 S ttl=55 id=43181 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:159 S ttl=52 id=5911 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:95 S ttl=42 id=35142 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:174 S ttl=38 id=10883 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:881 S ttl=51 id=64062 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:697 S ttl=56 id=63808 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3025 S ttl=56 id=50591 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:499 S ttl=39 id=19943 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2604 S ttl=44 id=4209 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:673 S ttl=40 id=31844 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1415 S ttl=53 id=24860 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:37 S ttl=38 id=46193 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:851 S ttl=52 id=54730 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:60 S ttl=38 id=27165 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:622 S ttl=53 id=12031 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.3750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5901 S ttl=46 id=39961 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.3790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5302 S ttl=51 id=29823 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.3790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:815 S ttl=37 id=41246 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.3790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2013 S ttl=56 id=21334 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.3830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:992 S ttl=52 id=42257 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.3830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:55 S ttl=43 id=44336 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.3830s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:450 S ttl=50 id=573 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.3830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:187 S ttl=57 id=6359 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.3830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5500 S ttl=43 id=10222 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1428 S ttl=58 id=62604 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2241 S ttl=38 id=7380 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1509 S ttl=42 id=336 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:618 S ttl=56 id=19217 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:493 S ttl=49 id=34919 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:595 S ttl=37 id=29580 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2023 S ttl=37 id=56919 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:953 S ttl=57 id=55324 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1550 S ttl=54 id=48741 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:855 S ttl=58 id=39036 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:802 S ttl=59 id=4451 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1399 S ttl=51 id=1122 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1997 S ttl=51 id=64511 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:302 S ttl=56 id=2746 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7007 S ttl=51 id=24847 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1764 S ttl=57 id=38203 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6103 S ttl=53 id=29733 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:514 S ttl=56 id=29352 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:498 S ttl=44 id=8258 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1517 S ttl=37 id=62010 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:484 S ttl=51 id=22297 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:298 S ttl=59 id=40057 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:811 S ttl=54 id=30886 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3397 S ttl=52 id=20718 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:826 S ttl=41 id=20348 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:921 S ttl=39 id=25001 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:916 S ttl=55 id=63476 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:715 S ttl=45 id=37211 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:110 S ttl=57 id=62964 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:27009 S ttl=43 id=58466 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6002 S ttl=55 id=43984 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7009 S ttl=37 id=53092 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1423 S ttl=43 id=15008 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:300 S ttl=49 id=31146 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1994 S ttl=48 id=36228 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32 S ttl=51 id=46251 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1401 S ttl=40 id=51068 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:248 S ttl=54 id=41819 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:614 S ttl=46 id=53348 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1762 S ttl=58 id=16166 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2046 S ttl=37 id=49359 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:659 S ttl=53 id=25267 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:812 S ttl=42 id=7896 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1397 S ttl=56 id=11597 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:604 S ttl=42 id=4051 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13716 S ttl=48 id=32474 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2604 S ttl=51 id=33343 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:622 S ttl=47 id=2843 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:60 S ttl=42 id=31085 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:851 S ttl=54 id=17962 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.4580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:37 S ttl=47 id=64447 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1415 S ttl=43 id=63047 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.4580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:673 S ttl=43 id=47581 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1348 S ttl=44 id=38850 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2013 S ttl=59 id=34564 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:815 S ttl=52 id=61203 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5302 S ttl=59 id=63846 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6330s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5500 S ttl=40 id=30516 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6330s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:187 S ttl=55 id=48353 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:612 S ttl=45 id=8425 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6147 S ttl=45 id=57128 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:870 S ttl=46 id=59791 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1428 S ttl=52 id=4325 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1509 S ttl=54 id=19230 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2241 S ttl=53 id=3920 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6103 S ttl=51 id=55562 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1764 S ttl=59 id=27096 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7007 S ttl=39 id=18575 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:302 S ttl=41 id=39627 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1997 S ttl=38 id=61855 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1399 S ttl=50 id=36734 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:802 S ttl=46 id=13935 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:855 S ttl=55 id=21724 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1550 S ttl=54 id=6335 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:953 S ttl=48 id=34234 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2023 S ttl=52 id=44248 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:595 S ttl=58 id=64690 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:493 S ttl=44 id=14351 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:618 S ttl=59 id=33421 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:614 S ttl=52 id=61342 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:248 S ttl=57 id=44698 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1401 S ttl=42 id=42966 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32 S ttl=50 id=9097 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1994 S ttl=39 id=62497 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:300 S ttl=40 id=56444 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1423 S ttl=39 id=38731 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7009 S ttl=57 id=56583 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6002 S ttl=37 id=34619 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:27009 S ttl=38 id=17544 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:110 S ttl=42 id=28978 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:715 S ttl=40 id=56011 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:916 S ttl=58 id=18155 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:921 S ttl=39 id=38870 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:826 S ttl=54 id=58400 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3397 S ttl=41 id=3549 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:811 S ttl=57 id=33338 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:298 S ttl=41 id=56994 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:484 S ttl=54 id=33997 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1517 S ttl=43 id=9586 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:498 S ttl=57 id=19729 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:514 S ttl=45 id=64387 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13716 S ttl=47 id=63367 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:604 S ttl=55 id=52786 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1397 S ttl=53 id=4003 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:812 S ttl=44 id=29701 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:659 S ttl=56 id=6759 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2046 S ttl=49 id=45355 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.6930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1762 S ttl=50 id=50187 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:222 S ttl=54 id=41845 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:641 S ttl=40 id=52259 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:168 S ttl=45 id=23590 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1482 S ttl=44 id=56042 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:375 S ttl=52 id=52347 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (43.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13717 S ttl=53 id=42785 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (43.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:987 S ttl=38 id=51581 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (43.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1348 S ttl=48 id=28946 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.8760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2013 S ttl=56 id=28630 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.8800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5302 S ttl=46 id=17859 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.8800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:815 S ttl=58 id=61633 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:870 S ttl=52 id=51156 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6147 S ttl=54 id=60236 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:612 S ttl=48 id=32289 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (43.8840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:187 S ttl=37 id=35921 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.8840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5500 S ttl=50 id=25336 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1428 S ttl=39 id=16585 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1509 S ttl=38 id=17327 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1399 S ttl=54 id=881 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1997 S ttl=45 id=38259 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:302 S ttl=55 id=31339 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7007 S ttl=55 id=3575 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1764 S ttl=43 id=60386 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6103 S ttl=43 id=18984 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9290s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2241 S ttl=48 id=57733 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:618 S ttl=41 id=49809 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:493 S ttl=54 id=52848 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:595 S ttl=49 id=5452 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2023 S ttl=57 id=47978 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:953 S ttl=48 id=55980 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1550 S ttl=44 id=48749 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:855 S ttl=48 id=19882 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:802 S ttl=39 id=18112 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:248 S ttl=51 id=62014 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:614 S ttl=38 id=45438 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:514 S ttl=52 id=37153 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:498 S ttl=45 id=16173 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1517 S ttl=55 id=975 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:484 S ttl=43 id=23408 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:298 S ttl=59 id=41484 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:811 S ttl=43 id=5309 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3397 S ttl=57 id=28446 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:826 S ttl=43 id=9294 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:921 S ttl=58 id=41955 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:916 S ttl=38 id=56054 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:715 S ttl=53 id=35290 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:110 S ttl=51 id=3527 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:27009 S ttl=41 id=9621 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6002 S ttl=37 id=26823 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7009 S ttl=41 id=12909 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1423 S ttl=52 id=9675 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:300 S ttl=51 id=62117 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1994 S ttl=55 id=5879 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32 S ttl=37 id=30521 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1401 S ttl=37 id=46698 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1762 S ttl=42 id=30013 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2046 S ttl=57 id=7317 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:659 S ttl=48 id=29298 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:812 S ttl=53 id=87 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1397 S ttl=57 id=20919 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:604 S ttl=58 id=40108 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13716 S ttl=44 id=43009 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (43.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:222 S ttl=45 id=7952 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (43.9560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:641 S ttl=47 id=58229 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:987 S ttl=42 id=14235 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (43.9600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13717 S ttl=55 id=54941 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:375 S ttl=55 id=16062 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1482 S ttl=59 id=34591 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (43.9600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:168 S ttl=58 id=333 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1348 S ttl=56 id=56234 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:220 S ttl=57 id=61547 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:12000 S ttl=44 id=5306 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:610 S ttl=52 id=38045 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:870 S ttl=37 id=2177 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:612 S ttl=41 id=13759 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6147 S ttl=54 id=55261 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1365 S ttl=57 id=243 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1429 S ttl=45 id=38649 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:938 S ttl=44 id=64446 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:112 S ttl=48 id=45224 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:140 S ttl=40 id=48118 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:605 S ttl=49 id=6270 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:544 S ttl=37 id=33893 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7100 S ttl=43 id=41843 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:733 S ttl=40 id=23882 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1485 S ttl=53 id=23608 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:262 S ttl=57 id=60810 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:598 S ttl=50 id=45851 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3457 S ttl=50 id=48465 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:603 S ttl=38 id=2965 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1405 S ttl=50 id=26919 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2105 S ttl=37 id=28970 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:467 S ttl=42 id=48612 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:204 S ttl=37 id=66 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4199 S ttl=44 id=43577 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:978 S ttl=44 id=34601 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:94 S ttl=37 id=50650 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1407 S ttl=43 id=29472 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2024 S ttl=54 id=28057 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:601 S ttl=52 id=11425 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1521 S ttl=44 id=64258 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:838 S ttl=37 id=34161 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1393 S ttl=41 id=32788 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1139 S ttl=39 id=56482 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6700 S ttl=58 id=46688 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:671 S ttl=40 id=43489 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7000 S ttl=38 id=64759 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:65 S ttl=49 id=57372 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4559 S ttl=52 id=4295 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:896 S ttl=51 id=61924 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:854 S ttl=58 id=3628 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:46 S ttl=45 id=58341 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:725 S ttl=47 id=51957 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:193 S ttl=40 id=47849 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:785 S ttl=37 id=51677 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:390 S ttl=43 id=21168 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:362 S ttl=53 id=41268 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4125 S ttl=58 id=57258 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18181 S ttl=58 id=485 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2065 S ttl=47 id=39701 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4144 S ttl=59 id=58775 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:30 S ttl=52 id=52669 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:134 S ttl=57 id=46833 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.1920s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:355 S ttl=55 id=37508 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:222 S ttl=40 id=52075 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:641 S ttl=39 id=1179 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.2110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:168 S ttl=40 id=30863 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.2110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1482 S ttl=49 id=8490 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.2110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:375 S ttl=45 id=65272 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.2110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13717 S ttl=42 id=12611 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.2110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:987 S ttl=37 id=58868 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.3670s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:79 S ttl=51 id=10737 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:220 S ttl=40 id=20292 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.3790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:610 S ttl=47 id=17780 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.3790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:12000 S ttl=50 id=56962 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.3790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:649 S ttl=59 id=17094 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.3830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1429 S ttl=55 id=4052 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.3830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1365 S ttl=57 id=44234 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.3830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5680 S ttl=51 id=47375 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.3830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1668 S ttl=50 id=63057 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:938 S ttl=37 id=60297 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:112 S ttl=55 id=870 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:140 S ttl=43 id=2759 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:733 S ttl=44 id=60962 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7100 S ttl=56 id=50097 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:544 S ttl=41 id=30654 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:605 S ttl=59 id=55955 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:467 S ttl=38 id=22704 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2105 S ttl=55 id=62872 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1405 S ttl=50 id=51361 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:603 S ttl=58 id=48532 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3457 S ttl=40 id=64068 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:598 S ttl=57 id=36989 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:262 S ttl=48 id=4494 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1485 S ttl=42 id=46697 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2024 S ttl=49 id=48514 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1407 S ttl=44 id=48949 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:94 S ttl=41 id=65232 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:978 S ttl=47 id=1635 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4199 S ttl=41 id=45582 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:204 S ttl=55 id=38079 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:601 S ttl=51 id=3125 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:355 S ttl=43 id=26967 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:134 S ttl=47 id=56376 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:30 S ttl=59 id=58021 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4144 S ttl=56 id=19325 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2065 S ttl=55 id=37598 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18181 S ttl=51 id=40141 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4125 S ttl=41 id=34640 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:362 S ttl=49 id=39967 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:390 S ttl=43 id=36554 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:785 S ttl=50 id=14032 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:193 S ttl=50 id=48605 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:725 S ttl=45 id=53971 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:46 S ttl=50 id=35391 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:854 S ttl=57 id=53855 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:896 S ttl=50 id=58775 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4559 S ttl=43 id=2477 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:65 S ttl=56 id=46105 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7000 S ttl=49 id=1014 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:671 S ttl=49 id=56873 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6700 S ttl=59 id=21687 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1139 S ttl=38 id=36042 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1393 S ttl=54 id=24148 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:838 S ttl=43 id=29983 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1521 S ttl=54 id=64334 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:490 S ttl=41 id=38810 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:531 S ttl=55 id=24240 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:64 S ttl=50 id=1388 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:44442 S ttl=38 id=11677 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1410 S ttl=53 id=45643 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1005 S ttl=55 id=57478 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.4630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:88 S ttl=45 id=61026 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:220 S ttl=59 id=42705 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6200s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:79 S ttl=55 id=47745 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:649 S ttl=57 id=60707 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:12000 S ttl=59 id=56268 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:610 S ttl=44 id=35068 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5680 S ttl=42 id=65142 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1365 S ttl=45 id=14674 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1429 S ttl=54 id=3385 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1668 S ttl=53 id=18394 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:938 S ttl=44 id=64104 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:112 S ttl=49 id=56255 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:733 S ttl=38 id=16594 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:140 S ttl=42 id=49772 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1405 S ttl=51 id=11757 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2105 S ttl=45 id=30087 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:467 S ttl=42 id=35545 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:605 S ttl=55 id=46772 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:544 S ttl=43 id=31936 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7100 S ttl=59 id=12175 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:978 S ttl=57 id=61995 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:94 S ttl=39 id=14877 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1407 S ttl=40 id=35848 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2024 S ttl=43 id=18734 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1485 S ttl=57 id=27297 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:262 S ttl=50 id=43664 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:598 S ttl=52 id=53564 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3457 S ttl=59 id=36094 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:603 S ttl=59 id=57726 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:601 S ttl=48 id=45922 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:204 S ttl=42 id=40126 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4199 S ttl=46 id=29895 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:30 S ttl=48 id=10077 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:134 S ttl=37 id=37521 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:355 S ttl=37 id=58974 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:490 S ttl=43 id=19649 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1521 S ttl=40 id=63038 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:838 S ttl=47 id=65494 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1393 S ttl=57 id=53104 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1139 S ttl=42 id=1509 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6700 S ttl=43 id=39767 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:671 S ttl=59 id=51992 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7000 S ttl=48 id=37135 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:65 S ttl=45 id=19748 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4559 S ttl=48 id=49314 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:896 S ttl=49 id=31321 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:854 S ttl=59 id=54592 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:46 S ttl=40 id=6320 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:725 S ttl=48 id=41525 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:193 S ttl=51 id=22875 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:785 S ttl=46 id=59398 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:390 S ttl=50 id=26052 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:362 S ttl=52 id=23501 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4125 S ttl=38 id=4506 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18181 S ttl=45 id=51023 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2065 S ttl=50 id=28424 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4144 S ttl=47 id=50743 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.7000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:531 S ttl=37 id=54339 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.7080s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:64 S ttl=43 id=13107 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (44.7120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1410 S ttl=50 id=63690 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.7120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:44442 S ttl=58 id=12817 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (44.7160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:88 S ttl=56 id=60603 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (44.7160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1005 S ttl=53 id=20777 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (44.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:79 S ttl=57 id=43860 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.8680s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5714 S ttl=37 id=13376 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.8760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:649 S ttl=54 id=20434 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.8760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1427 S ttl=57 id=57216 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.8800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5680 S ttl=52 id=12207 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.8800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4480 S ttl=58 id=25516 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.8800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4343 S ttl=51 id=47223 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.8800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:585 S ttl=45 id=8926 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.8840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1668 S ttl=44 id=45058 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:518 S ttl=45 id=1866 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9200s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:15 S ttl=47 id=35220 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1389 S ttl=58 id=43384 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1664 S ttl=49 id=47617 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9280s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:739 S ttl=43 id=19098 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9280s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9992 S ttl=46 id=18072 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9280s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:162 S ttl=39 id=21472 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2038 S ttl=38 id=47594 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:874 S ttl=45 id=16034 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:786 S ttl=53 id=5510 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1448 S ttl=55 id=47037 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:74 S ttl=38 id=48233 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:539 S ttl=39 id=9433 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1359 S ttl=39 id=64119 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:648 S ttl=38 id=35943 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:718 S ttl=50 id=6359 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:423 S ttl=41 id=13993 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3333 S ttl=51 id=32239 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:177 S ttl=39 id=18599 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:876 S ttl=53 id=16441 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2232 S ttl=47 id=63647 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1368 S ttl=45 id=30788 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:237 S ttl=38 id=10775 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:546 S ttl=45 id=57536 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:490 S ttl=37 id=56437 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:738 S ttl=43 id=22083 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:970 S ttl=55 id=16760 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2027 S ttl=54 id=10992 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:233 S ttl=40 id=33188 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:708 S ttl=54 id=9737 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1755 S ttl=43 id=5644 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:388 S ttl=53 id=26407 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:146 S ttl=38 id=34629 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:26 S ttl=52 id=22295 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1513 S ttl=44 id=39591 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1535 S ttl=59 id=36125 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9440s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:949 S ttl=55 id=61464 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:531 S ttl=38 id=26271 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5000 S ttl=53 id=54383 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1662 S ttl=59 id=7284 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:196 S ttl=49 id=24067 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:571 S ttl=42 id=20514 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:651 S ttl=39 id=1895 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2605 S ttl=38 id=44508 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1457 S ttl=56 id=27165 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6007 S ttl=52 id=47901 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:497 S ttl=44 id=62725 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (44.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1487 S ttl=57 id=13834 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:64 S ttl=47 id=18713 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (44.9600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:44442 S ttl=50 id=35921 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1410 S ttl=54 id=53192 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (44.9640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1005 S ttl=53 id=15467 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (44.9640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:88 S ttl=58 id=25357 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:131 S ttl=37 id=43032 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5714 S ttl=53 id=26817 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1427 S ttl=47 id=42310 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:152 S ttl=52 id=46079 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:585 S ttl=52 id=61564 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4343 S ttl=47 id=38113 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4480 S ttl=44 id=49279 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6009 S ttl=49 id=37804 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:294 S ttl=46 id=55793 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:518 S ttl=51 id=3795 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1670s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:15 S ttl=38 id=32702 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1664 S ttl=51 id=4987 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1389 S ttl=56 id=14449 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:162 S ttl=51 id=14983 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9992 S ttl=54 id=41487 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:739 S ttl=49 id=42079 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:786 S ttl=57 id=44457 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:874 S ttl=57 id=51177 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1790s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2038 S ttl=54 id=58823 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2232 S ttl=38 id=59608 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:876 S ttl=57 id=11574 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:177 S ttl=51 id=18387 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3333 S ttl=59 id=21980 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:423 S ttl=46 id=29821 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:718 S ttl=54 id=16548 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:648 S ttl=57 id=40863 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1359 S ttl=57 id=35951 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:539 S ttl=52 id=1717 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:74 S ttl=51 id=21815 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1448 S ttl=53 id=33717 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:546 S ttl=56 id=14948 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:237 S ttl=50 id=6970 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1368 S ttl=56 id=50063 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1487 S ttl=58 id=7595 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:497 S ttl=44 id=7262 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6007 S ttl=54 id=18504 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1457 S ttl=54 id=7202 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2605 S ttl=58 id=29265 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:651 S ttl=55 id=6004 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:571 S ttl=40 id=14389 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:196 S ttl=46 id=59467 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1662 S ttl=38 id=51664 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5000 S ttl=40 id=31841 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:949 S ttl=51 id=2524 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1535 S ttl=42 id=27566 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1513 S ttl=59 id=40099 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1950s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:26 S ttl=39 id=59482 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:146 S ttl=42 id=11937 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:388 S ttl=49 id=36650 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1755 S ttl=46 id=44686 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:708 S ttl=37 id=64785 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:233 S ttl=39 id=14943 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2027 S ttl=45 id=39797 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:970 S ttl=59 id=16943 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:738 S ttl=57 id=42238 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.1970s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5301 S ttl=39 id=46580 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.1970s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:135 S ttl=50 id=61751 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.2060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:913 S ttl=54 id=26629 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32787 S ttl=39 id=42778 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:149 S ttl=58 id=26866 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.2150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:642 S ttl=47 id=24770 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.2150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:75 S ttl=50 id=65074 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.3630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:131 S ttl=50 id=26999 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.3670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5714 S ttl=56 id=19434 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:152 S ttl=50 id=45324 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.3710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1427 S ttl=56 id=4344 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.3790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4480 S ttl=51 id=16858 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.3790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4343 S ttl=54 id=18825 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.3790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:585 S ttl=44 id=23157 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.3830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:294 S ttl=43 id=19880 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.3830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6009 S ttl=43 id=552 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.3990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:518 S ttl=49 id=32995 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4150s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:15 S ttl=51 id=43294 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1664 S ttl=55 id=11342 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:739 S ttl=54 id=372 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9992 S ttl=54 id=18288 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:162 S ttl=54 id=8514 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1389 S ttl=37 id=49842 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:874 S ttl=56 id=55337 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4270s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:786 S ttl=41 id=58760 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2038 S ttl=52 id=16309 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1368 S ttl=37 id=48649 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:237 S ttl=45 id=58134 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:546 S ttl=58 id=20896 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1448 S ttl=40 id=65527 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:74 S ttl=43 id=48887 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:539 S ttl=57 id=27352 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1359 S ttl=50 id=10951 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:648 S ttl=45 id=849 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:718 S ttl=54 id=19803 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:423 S ttl=58 id=1560 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3333 S ttl=51 id=29984 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:177 S ttl=50 id=34991 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:876 S ttl=40 id=53920 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2232 S ttl=57 id=4721 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:135 S ttl=48 id=48974 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5301 S ttl=37 id=61330 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:738 S ttl=37 id=63983 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:970 S ttl=50 id=41227 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2027 S ttl=44 id=17464 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:233 S ttl=45 id=21693 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:708 S ttl=46 id=52201 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1755 S ttl=55 id=58337 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:388 S ttl=54 id=20264 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:146 S ttl=45 id=26588 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:26 S ttl=47 id=53502 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1513 S ttl=39 id=34127 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1535 S ttl=45 id=8341 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:949 S ttl=52 id=59685 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5000 S ttl=52 id=29499 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1662 S ttl=44 id=57477 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:196 S ttl=49 id=58630 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:571 S ttl=44 id=7686 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:651 S ttl=56 id=846 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2605 S ttl=43 id=19663 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1457 S ttl=49 id=22726 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6007 S ttl=50 id=45074 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:497 S ttl=58 id=63126 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4470s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1487 S ttl=47 id=47885 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:149 S ttl=45 id=57704 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32787 S ttl=58 id=30613 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:913 S ttl=59 id=8245 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.4630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:75 S ttl=52 id=33638 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.4630s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:642 S ttl=41 id=45043 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:131 S ttl=38 id=31294 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:511 S ttl=47 id=41301 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.6200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:152 S ttl=50 id=50061 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6200s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:845 S ttl=57 id=25810 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:948 S ttl=39 id=63116 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:325 S ttl=48 id=18524 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:853 S ttl=54 id=25423 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6009 S ttl=40 id=41266 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:294 S ttl=47 id=38093 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.6480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:344 S ttl=51 id=11221 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.6640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:83 S ttl=40 id=35960 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6690s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:765 S ttl=48 id=22376 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:957 S ttl=55 id=33682 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:309 S ttl=49 id=12966 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:727 S ttl=38 id=19943 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:752 S ttl=37 id=41763 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:688 S ttl=46 id=61374 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:813 S ttl=54 id=21054 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1471 S ttl=37 id=28741 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5490 S ttl=53 id=24275 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:195 S ttl=42 id=42550 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:435 S ttl=46 id=45557 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:833 S ttl=54 id=11209 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:634 S ttl=56 id=54875 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:835 S ttl=46 id=27836 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:856 S ttl=56 id=14372 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:668 S ttl=53 id=48105 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6880s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:631 S ttl=38 id=33866 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6890s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1400 S ttl=42 id=26306 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6890s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1375 S ttl=44 id=21397 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6890s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1022 S ttl=56 id=3647 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6890s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:266 S ttl=48 id=59250 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.6890s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:990 S ttl=57 id=56782 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5301 S ttl=42 id=31078 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:135 S ttl=47 id=32186 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:942 S ttl=57 id=30487 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.6960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2002 S ttl=48 id=63272 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:686 S ttl=45 id=20924 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:244 S ttl=56 id=65013 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:807 S ttl=37 id=32495 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2005 S ttl=42 id=4040 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1390 S ttl=37 id=12467 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1270 S ttl=57 id=9966 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2041 S ttl=54 id=10647 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1024 S ttl=50 id=13571 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:655 S ttl=37 id=57970 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:771 S ttl=43 id=19098 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:720 S ttl=46 id=1661 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:10082 S ttl=49 id=2775 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2035 S ttl=56 id=42729 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:264 S ttl=54 id=13441 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2047 S ttl=57 id=53981 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:823 S ttl=44 id=38156 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:684 S ttl=44 id=64330 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:805 S ttl=40 id=16218 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:335 S ttl=55 id=2868 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.7000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:842 S ttl=54 id=50854 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:913 S ttl=43 id=2837 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32787 S ttl=47 id=713 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (45.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:149 S ttl=54 id=54234 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:642 S ttl=45 id=19103 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (45.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:75 S ttl=46 id=16904 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (45.8600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1665 S ttl=46 id=52387 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.8640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:511 S ttl=57 id=39392 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:845 S ttl=59 id=6408 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.8720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1552 S ttl=59 id=60163 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:853 S ttl=55 id=54270 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:325 S ttl=53 id=14109 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:948 S ttl=43 id=53466 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.8840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:804 S ttl=43 id=64517 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.8840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8076 S ttl=58 id=41053 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.8960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:344 S ttl=43 id=6088 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:83 S ttl=43 id=25206 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:765 S ttl=50 id=21780 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:813 S ttl=38 id=32416 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:688 S ttl=50 id=8803 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:752 S ttl=44 id=50167 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:727 S ttl=41 id=38460 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:309 S ttl=43 id=844 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:957 S ttl=51 id=17326 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1471 S ttl=43 id=44636 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:435 S ttl=53 id=45192 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:195 S ttl=37 id=20604 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5490 S ttl=52 id=42679 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:990 S ttl=57 id=44535 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:266 S ttl=37 id=39117 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1022 S ttl=56 id=23101 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1375 S ttl=37 id=28912 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1400 S ttl=57 id=18237 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:631 S ttl=50 id=7335 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:668 S ttl=47 id=43078 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:856 S ttl=43 id=1603 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:835 S ttl=39 id=3123 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:634 S ttl=44 id=50457 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:833 S ttl=54 id=55153 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2005 S ttl=50 id=44642 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:807 S ttl=53 id=29560 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:244 S ttl=45 id=28425 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:686 S ttl=44 id=47717 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2002 S ttl=44 id=36411 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:942 S ttl=45 id=31369 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6548 S ttl=40 id=51129 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:980 S ttl=53 id=63845 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:842 S ttl=40 id=32712 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:335 S ttl=37 id=43063 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:805 S ttl=56 id=35920 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:684 S ttl=47 id=52132 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:823 S ttl=48 id=31618 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2047 S ttl=41 id=33175 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:264 S ttl=52 id=55451 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2035 S ttl=39 id=44748 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:10082 S ttl=55 id=18261 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:720 S ttl=59 id=35918 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:771 S ttl=55 id=54201 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:655 S ttl=50 id=35839 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1024 S ttl=40 id=34860 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2041 S ttl=38 id=40721 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1270 S ttl=53 id=13005 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1390 S ttl=43 id=36061 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1672 S ttl=44 id=51211 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5978 S ttl=54 id=58423 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (45.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:331 S ttl=37 id=33364 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (45.9600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:625 S ttl=39 id=15667 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (45.9640s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:515 S ttl=51 id=62856 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1665 S ttl=37 id=11162 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:511 S ttl=50 id=13389 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1552 S ttl=40 id=64231 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:845 S ttl=41 id=33877 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:853 S ttl=46 id=27138 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8076 S ttl=46 id=6869 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:804 S ttl=38 id=61516 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:948 S ttl=37 id=19607 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:325 S ttl=42 id=64296 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:344 S ttl=53 id=1670 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:83 S ttl=44 id=54500 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:765 S ttl=53 id=17831 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1710s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:813 S ttl=54 id=53991 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1471 S ttl=46 id=46926 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:957 S ttl=46 id=26592 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:309 S ttl=55 id=6256 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:727 S ttl=39 id=46473 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:752 S ttl=44 id=40696 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:688 S ttl=50 id=4764 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5490 S ttl=46 id=4123 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:195 S ttl=53 id=59052 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1790s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:435 S ttl=40 id=251 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1400 S ttl=40 id=33929 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1375 S ttl=53 id=51348 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1022 S ttl=44 id=19414 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:266 S ttl=42 id=14771 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:990 S ttl=37 id=19353 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:833 S ttl=59 id=8545 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:634 S ttl=41 id=49466 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:835 S ttl=50 id=56374 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:856 S ttl=37 id=61968 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:668 S ttl=37 id=31115 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1910s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:631 S ttl=45 id=5451 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1950s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2005 S ttl=54 id=5179 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2047 S ttl=38 id=16985 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:823 S ttl=41 id=9010 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:684 S ttl=38 id=23329 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:805 S ttl=51 id=13306 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:335 S ttl=59 id=64093 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:842 S ttl=42 id=21812 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:980 S ttl=41 id=31461 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6548 S ttl=43 id=29063 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:942 S ttl=57 id=56318 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2002 S ttl=44 id=31345 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:686 S ttl=37 id=65356 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:244 S ttl=46 id=44820 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:807 S ttl=53 id=45328 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:331 S ttl=53 id=13827 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5978 S ttl=49 id=13335 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1672 S ttl=53 id=45652 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1390 S ttl=56 id=64533 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1270 S ttl=43 id=18782 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2041 S ttl=53 id=15866 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1024 S ttl=58 id=26393 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:655 S ttl=40 id=294 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:771 S ttl=54 id=47010 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:720 S ttl=57 id=43511 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:10082 S ttl=41 id=35405 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2035 S ttl=37 id=5022 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:264 S ttl=56 id=26588 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.2110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:515 S ttl=42 id=64761 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.2110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:625 S ttl=54 id=39379 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.3590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1665 S ttl=42 id=35761 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.3590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:10000 S ttl=41 id=51618 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.3670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1552 S ttl=43 id=13640 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.3670s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1465 S ttl=43 id=13408 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.3790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:734 S ttl=55 id=23905 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.3870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:804 S ttl=51 id=60284 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.3870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8076 S ttl=54 id=39654 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:206 S ttl=40 id=63086 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:422 S ttl=56 id=47480 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.3910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1000 S ttl=50 id=47219 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6547 S ttl=55 id=19987 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2121 S ttl=58 id=48998 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4190s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:297 S ttl=47 id=47318 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:278 S ttl=39 id=55151 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8123 S ttl=58 id=59033 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:184 S ttl=59 id=29762 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:906 S ttl=48 id=60714 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7010 S ttl=50 id=40019 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2020 S ttl=55 id=35250 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:438 S ttl=46 id=30882 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:200 S ttl=42 id=59997 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:252 S ttl=50 id=23116 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:653 S ttl=37 id=1943 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8021 S ttl=47 id=62376 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:218 S ttl=43 id=54253 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:437 S ttl=50 id=667 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:158 S ttl=40 id=1694 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1527 S ttl=37 id=64723 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:19150 S ttl=37 id=22702 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:123 S ttl=43 id=35152 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:396 S ttl=39 id=62170 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3128 S ttl=43 id=65372 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32775 S ttl=47 id=41313 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4430s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6006 S ttl=52 id=26150 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:757 S ttl=50 id=7513 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:331 S ttl=55 id=41848 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6548 S ttl=55 id=18414 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:980 S ttl=41 id=61184 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2301 S ttl=57 id=29385 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:312 S ttl=39 id=47641 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:59 S ttl=58 id=35539 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7 S ttl=40 id=15324 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:660 S ttl=46 id=18811 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:394 S ttl=53 id=710 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:281 S ttl=51 id=47742 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1012 S ttl=43 id=52378 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:993 S ttl=43 id=35323 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1158 S ttl=40 id=3142 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1672 S ttl=56 id=11776 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5978 S ttl=54 id=41841 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5400 S ttl=38 id=1018 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:457 S ttl=42 id=46198 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1514 S ttl=38 id=16854 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5193 S ttl=46 id=57477 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:912 S ttl=49 id=4719 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:793 S ttl=53 id=22196 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:997 S ttl=48 id=35445 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2600 S ttl=42 id=63527 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:926 S ttl=47 id=27153 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.4550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:952 S ttl=41 id=51124 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:625 S ttl=57 id=36670 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.4590s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:515 S ttl=48 id=20096 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6080s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:10000 S ttl=44 id=3610 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:621 S ttl=45 id=11507 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.6160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1465 S ttl=48 id=31587 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:411 S ttl=57 id=7913 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.6280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:734 S ttl=38 id=21026 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1000 S ttl=44 id=36723 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:422 S ttl=51 id=64833 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:206 S ttl=38 id=61095 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:530 S ttl=44 id=65239 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:769 S ttl=42 id=27796 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6547 S ttl=49 id=37571 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.6640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2121 S ttl=53 id=14262 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.6680s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:297 S ttl=59 id=47482 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:184 S ttl=42 id=22591 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8123 S ttl=42 id=12552 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:278 S ttl=48 id=27803 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6800s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:252 S ttl=40 id=55850 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:200 S ttl=39 id=43611 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:438 S ttl=39 id=4081 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2020 S ttl=43 id=50263 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7010 S ttl=58 id=47802 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6810s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:906 S ttl=59 id=17325 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:653 S ttl=53 id=64008 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3128 S ttl=39 id=43886 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:396 S ttl=58 id=34557 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:123 S ttl=43 id=64902 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:19150 S ttl=48 id=37290 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1527 S ttl=51 id=54370 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:158 S ttl=50 id=44232 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:437 S ttl=43 id=55500 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:218 S ttl=40 id=31024 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.6880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8021 S ttl=54 id=28857 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.6920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6006 S ttl=57 id=46386 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.6920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32775 S ttl=43 id=58272 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.6960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:757 S ttl=38 id=5809 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1158 S ttl=41 id=52510 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:993 S ttl=59 id=60771 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1012 S ttl=45 id=47372 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:281 S ttl=46 id=27070 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:394 S ttl=49 id=56425 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:660 S ttl=59 id=13740 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7 S ttl=46 id=10460 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:59 S ttl=50 id=25607 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:312 S ttl=37 id=14936 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2301 S ttl=59 id=63932 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:863 S ttl=38 id=960 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2201 S ttl=44 id=62293 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (46.7010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2068 S ttl=55 id=33981 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:952 S ttl=59 id=6849 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:926 S ttl=42 id=8614 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2600 S ttl=37 id=4077 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:997 S ttl=46 id=34071 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:793 S ttl=55 id=5015 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:912 S ttl=53 id=62028 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5193 S ttl=48 id=64551 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1514 S ttl=50 id=6313 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:457 S ttl=49 id=7464 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5400 S ttl=46 id=49984 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1426 S ttl=43 id=23091 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (46.7060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1008 S ttl=41 id=2177 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:706 S ttl=54 id=18788 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (46.7080s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13713 S ttl=37 id=62635 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (46.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:10000 S ttl=54 id=53251 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.8600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:621 S ttl=48 id=13915 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.8640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:411 S ttl=37 id=48887 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.8640s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1465 S ttl=59 id=48202 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.8760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:734 S ttl=40 id=8355 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.8880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:769 S ttl=48 id=50190 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.8880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:530 S ttl=39 id=5042 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.8880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:206 S ttl=59 id=57596 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.8880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:422 S ttl=54 id=29939 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.8880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1000 S ttl=55 id=37955 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6547 S ttl=42 id=62381 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2121 S ttl=53 id=57450 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9160s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:297 S ttl=52 id=1341 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9240s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:184 S ttl=51 id=12884 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:200 S ttl=46 id=1714 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:252 S ttl=51 id=59517 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:278 S ttl=56 id=21444 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9280s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8123 S ttl=44 id=32059 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:653 S ttl=53 id=53524 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:906 S ttl=47 id=56389 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7010 S ttl=53 id=8241 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2020 S ttl=54 id=31231 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:438 S ttl=45 id=12837 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:396 S ttl=47 id=30202 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3128 S ttl=46 id=34249 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6006 S ttl=50 id=23520 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8021 S ttl=44 id=28850 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:218 S ttl=41 id=42228 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:437 S ttl=47 id=13252 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:158 S ttl=39 id=27563 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1527 S ttl=46 id=1992 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:19150 S ttl=52 id=10148 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:123 S ttl=46 id=60916 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:757 S ttl=46 id=6503 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32775 S ttl=45 id=55210 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2068 S ttl=48 id=24684 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2201 S ttl=42 id=44583 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:863 S ttl=59 id=3608 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2301 S ttl=56 id=23246 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:312 S ttl=54 id=57177 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:59 S ttl=53 id=35534 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7 S ttl=53 id=11954 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:660 S ttl=40 id=15748 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:394 S ttl=50 id=56597 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:281 S ttl=38 id=65258 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1012 S ttl=50 id=61912 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:993 S ttl=40 id=51277 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1158 S ttl=44 id=20115 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13713 S ttl=56 id=49041 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:706 S ttl=58 id=29025 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1008 S ttl=45 id=8702 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1426 S ttl=56 id=38100 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5400 S ttl=43 id=52061 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:457 S ttl=59 id=16414 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1514 S ttl=39 id=27587 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5193 S ttl=43 id=54807 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:912 S ttl=45 id=23351 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:793 S ttl=47 id=61510 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:997 S ttl=44 id=4148 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2600 S ttl=40 id=50123 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:926 S ttl=50 id=1372 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (46.9560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:952 S ttl=37 id=44023 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:722 S ttl=42 id=23636 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:621 S ttl=46 id=12799 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1110s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:411 S ttl=45 id=58829 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:343 S ttl=43 id=23547 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1439 S ttl=38 id=26084 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1350s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:769 S ttl=49 id=524 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1390s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:530 S ttl=53 id=3189 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6142 S ttl=55 id=59327 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4660 S ttl=45 id=35232 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1390s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:40 S ttl=41 id=49793 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:893 S ttl=42 id=11190 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:923 S ttl=51 id=60828 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:559 S ttl=52 id=4838 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9991 S ttl=50 id=19882 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1434 S ttl=58 id=9289 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1372 S ttl=49 id=50360 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:756 S ttl=47 id=19347 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:16959 S ttl=51 id=22629 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:92 S ttl=57 id=12632 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:384 S ttl=49 id=27348 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1178 S ttl=56 id=30822 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2015 S ttl=51 id=50786 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1790s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:272 S ttl=52 id=47298 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2004 S ttl=40 id=12497 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:763 S ttl=42 id=63273 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:317 S ttl=40 id=33136 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2903 S ttl=50 id=7833 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6141 S ttl=51 id=17350 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1548 S ttl=38 id=12406 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:181 S ttl=50 id=44560 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6003 S ttl=46 id=32994 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1357 S ttl=51 id=12023 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:547 S ttl=39 id=63949 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:669 S ttl=38 id=61090 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1950s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4333 S ttl=56 id=23489 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:863 S ttl=56 id=48073 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2201 S ttl=51 id=61628 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.1990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2068 S ttl=50 id=11320 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.1990s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:296 S ttl=47 id=34916 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1426 S ttl=50 id=36053 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1008 S ttl=44 id=31867 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:706 S ttl=37 id=23974 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13713 S ttl=56 id=51870 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6148 S ttl=51 id=4169 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:371 S ttl=38 id=7953 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2766 S ttl=46 id=57035 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5801 S ttl=41 id=10712 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2021 S ttl=42 id=7767 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:971 S ttl=48 id=23105 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2048 S ttl=46 id=30209 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:852 S ttl=56 id=64748 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2007 S ttl=55 id=55799 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.2030s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5540 S ttl=40 id=9414 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:243 S ttl=43 id=47607 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4002 S ttl=37 id=23381 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:857 S ttl=39 id=9634 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2602 S ttl=52 id=6023 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:471 S ttl=37 id=35563 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:31 S ttl=43 id=50117 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:99 S ttl=37 id=34213 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:69 S ttl=46 id=57566 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.2070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:382 S ttl=57 id=40365 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.3510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:722 S ttl=57 id=38586 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.3550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:398 S ttl=46 id=52299 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.3590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:343 S ttl=47 id=52389 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.3590s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2011 S ttl=38 id=5287 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.3710s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1439 S ttl=39 id=26867 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.3830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:491 S ttl=51 id=58511 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.3870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:40 S ttl=52 id=14779 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.3870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4660 S ttl=55 id=2951 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.3870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6142 S ttl=51 id=10853 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1493 S ttl=46 id=51472 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:923 S ttl=57 id=63019 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4070s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:893 S ttl=50 id=44812 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4110s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:559 S ttl=41 id=26081 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9991 S ttl=39 id=58775 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1434 S ttl=57 id=8515 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2015 S ttl=51 id=33285 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1178 S ttl=42 id=36318 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:384 S ttl=45 id=40774 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:92 S ttl=41 id=43159 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:16959 S ttl=58 id=57353 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:756 S ttl=59 id=13985 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4270s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1372 S ttl=46 id=17770 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:763 S ttl=56 id=56913 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2004 S ttl=42 id=12380 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:272 S ttl=49 id=30716 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4350s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:317 S ttl=57 id=27166 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:669 S ttl=42 id=12922 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:547 S ttl=53 id=17917 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1357 S ttl=40 id=56740 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6003 S ttl=52 id=30411 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:181 S ttl=53 id=30276 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1548 S ttl=50 id=9867 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6141 S ttl=54 id=30711 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4390s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2903 S ttl=42 id=36781 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4470s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4333 S ttl=49 id=48194 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1031 S ttl=54 id=1963 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:226 S ttl=44 id=1611 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4470s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:224 S ttl=55 id=17712 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:296 S ttl=58 id=58652 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:767 S ttl=46 id=6629 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1995 S ttl=44 id=48044 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:414 S ttl=43 id=20468 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4510s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:26208 S ttl=58 id=50445 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5540 S ttl=47 id=5583 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2007 S ttl=56 id=8476 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:852 S ttl=40 id=8037 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2048 S ttl=38 id=14922 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:971 S ttl=52 id=22232 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2021 S ttl=53 id=46026 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5801 S ttl=44 id=14819 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2766 S ttl=55 id=42522 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:371 S ttl=46 id=45136 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6148 S ttl=54 id=2368 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:382 S ttl=46 id=47610 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:69 S ttl=52 id=62467 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:99 S ttl=38 id=31359 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:31 S ttl=44 id=19226 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:471 S ttl=57 id=34150 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2602 S ttl=52 id=43845 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:857 S ttl=49 id=23636 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4002 S ttl=42 id=12903 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.4590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:243 S ttl=56 id=10738 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.5990s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:722 S ttl=47 id=13558 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6030s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:398 S ttl=45 id=2320 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (47.6080s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2011 S ttl=52 id=25419 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:343 S ttl=54 id=39190 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1439 S ttl=37 id=18148 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.6320s) TCP 156.17.238.83:59936 &gt; 64.13.134.52:113 S ttl=59 id=9984 iplen=44  seq=3647368190 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:40 S ttl=44 id=47766 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6400s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1493 S ttl=52 id=14455 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6142 S ttl=40 id=15506 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4660 S ttl=58 id=58498 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:893 S ttl=47 id=20871 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:923 S ttl=42 id=37268 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6600s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:559 S ttl=53 id=9863 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.6680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9991 S ttl=46 id=28840 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1434 S ttl=50 id=53107 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1372 S ttl=38 id=7104 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:756 S ttl=57 id=30201 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:16959 S ttl=44 id=57118 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:92 S ttl=51 id=3495 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:384 S ttl=58 id=64528 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1178 S ttl=54 id=8779 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2015 S ttl=55 id=12917 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:272 S ttl=45 id=20544 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2004 S ttl=39 id=10657 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:763 S ttl=50 id=27251 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:317 S ttl=52 id=26673 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6880s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:669 S ttl=43 id=23671 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2903 S ttl=38 id=6437 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6141 S ttl=53 id=21936 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1548 S ttl=39 id=773 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:181 S ttl=48 id=10098 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6003 S ttl=52 id=39379 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1357 S ttl=58 id=39251 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:547 S ttl=54 id=16491 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.6960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:224 S ttl=51 id=23962 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:226 S ttl=40 id=44951 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (47.6960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1031 S ttl=47 id=33129 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.6960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4333 S ttl=47 id=5288 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1995 S ttl=42 id=28143 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.7000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:767 S ttl=59 id=26057 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:296 S ttl=45 id=11213 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:852 S ttl=42 id=30152 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2007 S ttl=41 id=39548 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.7040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5540 S ttl=57 id=19573 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.7040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:26208 S ttl=42 id=23789 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (47.7040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:414 S ttl=51 id=46338 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:99 S ttl=55 id=39662 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:69 S ttl=56 id=1945 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:382 S ttl=40 id=59620 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6148 S ttl=43 id=53507 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:371 S ttl=44 id=26481 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2766 S ttl=55 id=40136 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5801 S ttl=40 id=47508 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2021 S ttl=42 id=53015 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:971 S ttl=49 id=13337 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.7080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2048 S ttl=51 id=49277 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:243 S ttl=47 id=10919 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4002 S ttl=37 id=43755 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:857 S ttl=50 id=19258 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2602 S ttl=52 id=58017 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:471 S ttl=52 id=8805 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.7120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:31 S ttl=54 id=46692 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;RCVD (47.8330s) TCP 64.13.134.52:113 &gt; 156.17.238.83:59936 RA ttl=49 id=0 iplen=40  seq=0 win=0 ack=3647368191 &#10;SENT (47.8360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:491 S ttl=51 id=41271 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (47.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:476 S ttl=53 id=20883 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:724 S ttl=50 id=35952 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:401 S ttl=44 id=20778 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9999 S ttl=48 id=60348 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.8360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:661 S ttl=56 id=41689 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.8400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13782 S ttl=40 id=52515 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.8440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:398 S ttl=39 id=22692 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.8480s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2011 S ttl=39 id=11311 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.8480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:41 S ttl=43 id=39438 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.8600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:877 S ttl=57 id=1755 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.8760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:850 S ttl=40 id=65343 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.8850s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1493 S ttl=53 id=25350 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.8850s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:729 S ttl=56 id=29231 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.8850s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6346 S ttl=46 id=22122 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.8940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:354 S ttl=37 id=33987 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.8940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:20 S ttl=39 id=26565 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9000s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1353 S ttl=46 id=51964 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:122 S ttl=44 id=36264 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:646 S ttl=56 id=15794 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:215 S ttl=45 id=38735 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:945 S ttl=43 id=59673 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:436 S ttl=50 id=21341 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1363 S ttl=37 id=60504 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:796 S ttl=47 id=4709 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:464 S ttl=42 id=17802 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:107 S ttl=59 id=51806 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7003 S ttl=59 id=11182 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:543 S ttl=51 id=1737 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9200s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:762 S ttl=38 id=8140 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9240s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1525 S ttl=45 id=30892 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9280s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1414 S ttl=47 id=16150 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8892 S ttl=51 id=24969 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1435 S ttl=43 id=52016 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:925 S ttl=52 id=39326 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13708 S ttl=58 id=17332 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2033 S ttl=55 id=55340 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:370 S ttl=37 id=24104 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:866 S ttl=57 id=37479 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1031 S ttl=55 id=54567 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:226 S ttl=53 id=14565 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:224 S ttl=38 id=40495 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3086 S ttl=53 id=30816 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:767 S ttl=59 id=59904 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1995 S ttl=52 id=4045 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9400s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:225 S ttl=52 id=41941 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:414 S ttl=38 id=10954 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:26208 S ttl=59 id=31690 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1506 S ttl=49 id=6113 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:777 S ttl=45 id=48505 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:593 S ttl=48 id=36894 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:578 S ttl=58 id=57046 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1523 S ttl=43 id=21607 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:868 S ttl=58 id=64919 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:955 S ttl=52 id=20976 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:541 S ttl=45 id=3825 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8000 S ttl=53 id=32267 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1109 S ttl=52 id=45528 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:47557 S ttl=38 id=53523 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5560 S ttl=44 id=64689 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:908 S ttl=48 id=33200 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:568 S ttl=40 id=15424 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (47.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1362 S ttl=37 id=8342 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (47.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:827 S ttl=55 id=13735 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (47.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:269 S ttl=54 id=58883 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5304 S ttl=38 id=6772 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (47.9520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:540 S ttl=54 id=18960 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13782 S ttl=52 id=60990 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:661 S ttl=40 id=22622 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9999 S ttl=57 id=63576 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:401 S ttl=51 id=10432 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:724 S ttl=47 id=34441 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:476 S ttl=55 id=48768 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.0780s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:491 S ttl=43 id=39726 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.0820s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1360 S ttl=43 id=31578 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.0870s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:41 S ttl=37 id=52693 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.0870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:782 S ttl=55 id=30092 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.0990s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:877 S ttl=37 id=48250 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1150s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:850 S ttl=40 id=60460 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6346 S ttl=55 id=36297 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1230s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:729 S ttl=41 id=25236 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1230s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:792 S ttl=50 id=53437 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:20 S ttl=41 id=58974 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:354 S ttl=39 id=48022 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1353 S ttl=41 id=37837 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:122 S ttl=59 id=16091 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:646 S ttl=43 id=42864 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1610s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1525 S ttl=39 id=57544 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1610s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:762 S ttl=43 id=41000 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1610s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:543 S ttl=43 id=48621 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1610s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7003 S ttl=51 id=41156 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1610s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:107 S ttl=55 id=49217 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1610s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:464 S ttl=55 id=19058 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:796 S ttl=44 id=54004 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1363 S ttl=55 id=93 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:436 S ttl=48 id=44448 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:945 S ttl=57 id=55913 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:215 S ttl=58 id=27839 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1414 S ttl=38 id=4729 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:866 S ttl=46 id=18656 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:370 S ttl=58 id=14910 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2033 S ttl=49 id=52836 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13708 S ttl=47 id=4421 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:925 S ttl=37 id=62474 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1435 S ttl=40 id=34090 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8892 S ttl=57 id=51737 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:225 S ttl=39 id=13729 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3086 S ttl=42 id=55887 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:261 S ttl=40 id=27867 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:22321 S ttl=50 id=11988 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:22273 S ttl=37 id=44871 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1029 S ttl=56 id=25920 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:284 S ttl=53 id=19053 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:578 S ttl=40 id=46657 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:593 S ttl=37 id=36888 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:777 S ttl=49 id=268 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1830s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1506 S ttl=59 id=58678 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3141 S ttl=48 id=15330 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1830s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5011 S ttl=54 id=4484 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:908 S ttl=43 id=42173 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5560 S ttl=49 id=19571 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:47557 S ttl=41 id=11170 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1109 S ttl=39 id=35163 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8000 S ttl=48 id=46116 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:541 S ttl=58 id=40762 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:955 S ttl=39 id=44244 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:868 S ttl=57 id=64797 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1523 S ttl=45 id=14480 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:540 S ttl=44 id=33490 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5304 S ttl=57 id=24412 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.1920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:269 S ttl=54 id=28652 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:827 S ttl=44 id=49595 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.1920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1362 S ttl=42 id=43639 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.1920s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:568 S ttl=58 id=25957 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3150s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:724 S ttl=58 id=28828 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3150s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:401 S ttl=42 id=11849 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3150s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9999 S ttl=38 id=5840 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3150s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:661 S ttl=47 id=33527 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.3150s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13782 S ttl=46 id=13258 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3200s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1360 S ttl=49 id=29933 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.3200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:476 S ttl=40 id=6928 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.3200s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2008 S ttl=48 id=49541 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.3260s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:782 S ttl=50 id=57646 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:41 S ttl=42 id=16115 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:877 S ttl=54 id=33260 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3540s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:850 S ttl=38 id=27907 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3660s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:792 S ttl=54 id=23588 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:729 S ttl=50 id=28638 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6346 S ttl=54 id=27632 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:354 S ttl=46 id=59701 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3700s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:20 S ttl=56 id=27627 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.3740s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1353 S ttl=46 id=19745 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.3820s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:122 S ttl=56 id=54080 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.3940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:646 S ttl=46 id=42113 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:215 S ttl=43 id=10221 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:945 S ttl=56 id=20909 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:436 S ttl=54 id=10214 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1363 S ttl=40 id=65234 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:796 S ttl=38 id=57432 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:464 S ttl=52 id=40370 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:107 S ttl=56 id=53507 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7003 S ttl=58 id=18357 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:543 S ttl=48 id=20814 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:762 S ttl=41 id=63504 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4000s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1525 S ttl=52 id=21463 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1414 S ttl=57 id=63340 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8892 S ttl=52 id=42944 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1435 S ttl=51 id=34834 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:925 S ttl=42 id=29468 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13708 S ttl=39 id=10097 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2033 S ttl=44 id=27280 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:370 S ttl=44 id=60387 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:866 S ttl=53 id=61410 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:284 S ttl=54 id=36044 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1029 S ttl=55 id=15844 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:22273 S ttl=47 id=65377 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:22321 S ttl=42 id=61362 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:261 S ttl=41 id=44011 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3086 S ttl=46 id=14378 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:225 S ttl=57 id=11724 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1523 S ttl=38 id=19710 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:868 S ttl=58 id=29330 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:955 S ttl=45 id=62520 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:541 S ttl=50 id=6757 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8000 S ttl=51 id=57630 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1109 S ttl=42 id=40396 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:47557 S ttl=58 id=45483 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5560 S ttl=59 id=58326 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:908 S ttl=58 id=6708 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5011 S ttl=59 id=27060 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3141 S ttl=54 id=2908 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1506 S ttl=49 id=30734 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:777 S ttl=43 id=22657 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:593 S ttl=40 id=24393 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:578 S ttl=38 id=37820 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.4320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:568 S ttl=53 id=34257 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.4320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1362 S ttl=47 id=25816 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:827 S ttl=47 id=19380 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:269 S ttl=48 id=41611 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.4320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5304 S ttl=51 id=48309 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.4320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:540 S ttl=53 id=31299 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.5560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:969 S ttl=46 id=19461 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.5560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:579 S ttl=50 id=46658 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.5560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:963 S ttl=49 id=37262 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.5560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1467 S ttl=55 id=62722 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.5560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2998 S ttl=42 id=32459 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.5620s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2008 S ttl=52 id=23830 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1360 S ttl=44 id=21096 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.5620s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1652 S ttl=41 id=22014 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.5660s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:782 S ttl=58 id=37298 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.5660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:609 S ttl=38 id=19130 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.5740s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:257 S ttl=41 id=25464 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.5940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:326 S ttl=53 id=38963 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6070s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:792 S ttl=44 id=25942 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1358 S ttl=48 id=29026 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1827 S ttl=51 id=61541 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3049 S ttl=44 id=8981 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6110s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:119 S ttl=58 id=23110 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5145 S ttl=39 id=8705 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6210s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:674 S ttl=55 id=22073 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6330s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:694 S ttl=48 id=4374 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18000 S ttl=38 id=9130 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1480 S ttl=51 id=11596 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5632 S ttl=46 id=52034 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:24 S ttl=49 id=25626 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1386 S ttl=53 id=57783 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:887 S ttl=47 id=54485 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:689 S ttl=42 id=25322 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1364 S ttl=39 id=41782 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:139 S ttl=44 id=28725 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:482 S ttl=48 id=61158 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6410s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:582 S ttl=48 id=41777 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6450s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:929 S ttl=38 id=33022 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:728 S ttl=57 id=27451 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5555 S ttl=51 id=37322 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:533 S ttl=40 id=22647 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:517 S ttl=46 id=35380 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:157 S ttl=39 id=64736 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:342 S ttl=45 id=40987 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5520 S ttl=47 id=29762 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:261 S ttl=45 id=48789 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:22321 S ttl=41 id=21000 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:22273 S ttl=51 id=60476 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1029 S ttl=45 id=62010 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:284 S ttl=50 id=61152 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1385 S ttl=40 id=54090 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6570s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4557 S ttl=41 id=60544 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3141 S ttl=52 id=18433 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5011 S ttl=42 id=47255 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:574 S ttl=40 id=19635 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:460 S ttl=48 id=36964 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:465 S ttl=37 id=62103 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32786 S ttl=39 id=39829 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:118 S ttl=40 id=51409 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:588 S ttl=42 id=53745 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:48 S ttl=37 id=26556 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:681 S ttl=54 id=20474 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:463 S ttl=48 id=17256 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:500 S ttl=40 id=20859 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:199 S ttl=40 id=58649 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5999 S ttl=43 id=39648 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6660s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:470 S ttl=58 id=25046 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6730s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:960 S ttl=42 id=61539 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.6730s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1988 S ttl=44 id=26989 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6730s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5303 S ttl=39 id=34018 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (48.6730s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5102 S ttl=45 id=20898 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.6730s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:314 S ttl=48 id=14812 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.6730s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:907 S ttl=40 id=51558 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.7970s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2998 S ttl=48 id=42364 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.7970s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1467 S ttl=51 id=19037 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.7970s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:963 S ttl=54 id=16293 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.7970s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:579 S ttl=45 id=55997 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.7970s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:969 S ttl=56 id=14157 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1652 S ttl=49 id=49884 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8010s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2008 S ttl=46 id=6388 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1436 S ttl=44 id=33699 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:609 S ttl=55 id=10054 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:747 S ttl=56 id=28545 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:257 S ttl=43 id=34549 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:326 S ttl=56 id=60739 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1827 S ttl=37 id=46197 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1358 S ttl=49 id=9498 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8450s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:864 S ttl=54 id=36983 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:119 S ttl=57 id=32405 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8480s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3049 S ttl=52 id=3490 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5145 S ttl=55 id=30390 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8590s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:674 S ttl=42 id=13484 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:694 S ttl=40 id=28228 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:582 S ttl=38 id=47298 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:482 S ttl=58 id=54799 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:139 S ttl=48 id=1631 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1364 S ttl=41 id=55520 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:689 S ttl=48 id=43000 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:887 S ttl=52 id=47529 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1386 S ttl=44 id=14986 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:24 S ttl=39 id=53667 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5632 S ttl=45 id=25348 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1480 S ttl=54 id=42977 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18000 S ttl=51 id=26677 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8840s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:929 S ttl=51 id=24236 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5520 S ttl=59 id=49815 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:342 S ttl=59 id=33781 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:157 S ttl=48 id=60352 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:517 S ttl=55 id=42832 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:533 S ttl=50 id=18699 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5555 S ttl=37 id=29540 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:728 S ttl=51 id=53453 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4557 S ttl=59 id=8774 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1385 S ttl=43 id=23423 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1021 S ttl=49 id=4567 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1373 S ttl=42 id=32945 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1438 S ttl=58 id=20679 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:12346 S ttl=58 id=18238 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.8960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3632 S ttl=46 id=35577 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:470 S ttl=53 id=2346 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5999 S ttl=42 id=17025 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:199 S ttl=45 id=42382 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:500 S ttl=41 id=20555 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:463 S ttl=52 id=58344 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:681 S ttl=50 id=45892 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:48 S ttl=54 id=51473 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:588 S ttl=43 id=8860 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:118 S ttl=39 id=4972 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32786 S ttl=40 id=11625 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:465 S ttl=39 id=45320 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:460 S ttl=49 id=4288 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:574 S ttl=58 id=7939 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:14141 S ttl=38 id=9607 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9050s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:572 S ttl=44 id=27581 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (48.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:907 S ttl=50 id=49247 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:314 S ttl=58 id=18971 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5102 S ttl=44 id=41544 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5303 S ttl=44 id=13817 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (48.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1988 S ttl=38 id=39070 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (48.9120s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:960 S ttl=56 id=54159 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1436 S ttl=47 id=21884 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1652 S ttl=45 id=873 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:969 S ttl=59 id=16641 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:579 S ttl=45 id=12809 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:963 S ttl=47 id=52831 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1467 S ttl=47 id=43819 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2998 S ttl=55 id=50150 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0380s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:587 S ttl=56 id=41326 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.0400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:609 S ttl=40 id=1902 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.0430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:747 S ttl=41 id=57183 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.0510s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:257 S ttl=58 id=60190 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.0740s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:326 S ttl=52 id=12023 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.0820s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:864 S ttl=51 id=9652 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0820s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1358 S ttl=49 id=10062 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.0820s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1827 S ttl=59 id=19674 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3049 S ttl=51 id=42447 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0870s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:119 S ttl=59 id=56567 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5145 S ttl=43 id=10990 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.0980s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:674 S ttl=57 id=59996 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:694 S ttl=37 id=37310 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18000 S ttl=48 id=32465 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1480 S ttl=55 id=18495 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5632 S ttl=47 id=28382 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:24 S ttl=40 id=11450 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1386 S ttl=56 id=19826 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:887 S ttl=59 id=8743 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:689 S ttl=45 id=171 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1364 S ttl=42 id=41066 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.1200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:139 S ttl=57 id=46829 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:482 S ttl=43 id=20492 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1200s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:582 S ttl=45 id=30279 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1230s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:929 S ttl=44 id=10030 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:728 S ttl=58 id=33618 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5555 S ttl=42 id=64349 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:533 S ttl=55 id=16972 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:517 S ttl=45 id=687 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:157 S ttl=51 id=24302 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:342 S ttl=53 id=62589 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5520 S ttl=48 id=47393 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3632 S ttl=53 id=3228 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:12346 S ttl=43 id=61622 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1438 S ttl=48 id=45963 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1373 S ttl=52 id=22216 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1021 S ttl=54 id=25174 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1385 S ttl=42 id=57419 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.1360s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4557 S ttl=57 id=63995 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:572 S ttl=59 id=15928 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:14141 S ttl=37 id=47359 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:574 S ttl=51 id=55875 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:460 S ttl=56 id=58556 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:465 S ttl=41 id=11077 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32786 S ttl=51 id=36802 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1430s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:118 S ttl=57 id=2903 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:588 S ttl=49 id=21488 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:48 S ttl=52 id=56745 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:681 S ttl=41 id=45268 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:463 S ttl=39 id=14087 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:500 S ttl=51 id=23305 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:199 S ttl=44 id=14387 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5999 S ttl=59 id=64367 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1450s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:470 S ttl=55 id=1914 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.1500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:960 S ttl=53 id=57615 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1988 S ttl=53 id=39306 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5303 S ttl=41 id=31245 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.1500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5102 S ttl=44 id=6641 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.1500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:314 S ttl=46 id=38521 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.1500s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:907 S ttl=50 id=15816 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:587 S ttl=48 id=44212 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1436 S ttl=54 id=8766 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:271 S ttl=50 id=36855 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7937 S ttl=48 id=32398 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1379 S ttl=50 id=57310 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:480 S ttl=57 id=43181 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:448 S ttl=50 id=60415 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.2750s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:959 S ttl=44 id=46305 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.2800s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:747 S ttl=56 id=37846 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.2800s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1989 S ttl=58 id=53891 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.2910s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:829 S ttl=51 id=37130 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4899 S ttl=51 id=51186 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3190s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:864 S ttl=46 id=10238 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3190s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:412 S ttl=54 id=53828 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3190s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3985 S ttl=58 id=6924 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3280s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2067 S ttl=54 id=7832 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3280s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:339 S ttl=37 id=866 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:282 S ttl=52 id=33598 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3350s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:172 S ttl=59 id=17453 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3520s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:10005 S ttl=52 id=38185 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:445 S ttl=47 id=58560 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:116 S ttl=38 id=42586 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:505 S ttl=53 id=64781 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1023 S ttl=45 id=17612 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1526 S ttl=41 id=62202 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6543 S ttl=46 id=50555 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1531 S ttl=39 id=61668 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7597 S ttl=49 id=32353 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1413 S ttl=48 id=20313 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:211 S ttl=59 id=51071 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:633 S ttl=49 id=33507 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3630s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1391 S ttl=53 id=29230 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:577 S ttl=38 id=19283 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:847 S ttl=50 id=12010 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:279 S ttl=49 id=23479 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:713 S ttl=52 id=49 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:858 S ttl=37 id=34674 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2018 S ttl=38 id=44075 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3710s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:108 S ttl=48 id=2801 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1021 S ttl=52 id=29823 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1373 S ttl=51 id=53514 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1438 S ttl=55 id=51076 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:12346 S ttl=44 id=41386 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3632 S ttl=49 id=8268 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:869 S ttl=56 id=15101 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:563 S ttl=45 id=43267 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:14141 S ttl=48 id=56661 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:572 S ttl=56 id=33992 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:316 S ttl=57 id=60353 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:214 S ttl=52 id=630 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:315 S ttl=44 id=57111 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2032 S ttl=50 id=118 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:759 S ttl=53 id=37852 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:429 S ttl=47 id=28587 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:936 S ttl=45 id=51317 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9152 S ttl=55 id=43535 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2016 S ttl=51 id=56810 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1935 S ttl=57 id=60746 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6000 S ttl=45 id=61892 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6143 S ttl=54 id=16716 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3840s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:663 S ttl=59 id=27354 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:744 S ttl=39 id=40505 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:647 S ttl=52 id=34216 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5717 S ttl=37 id=15611 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1421 S ttl=44 id=51133 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:780 S ttl=50 id=48232 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.3870s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:504 S ttl=48 id=3386 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:959 S ttl=37 id=48958 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:448 S ttl=43 id=31040 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:480 S ttl=59 id=28370 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1379 S ttl=43 id=34096 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7937 S ttl=55 id=26334 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:271 S ttl=58 id=24369 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:587 S ttl=49 id=53611 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.5160s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:268 S ttl=48 id=31244 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.5190s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1989 S ttl=53 id=15327 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.5190s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:120 S ttl=58 id=8413 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:829 S ttl=42 id=34693 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5510s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4899 S ttl=43 id=45533 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.5600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3985 S ttl=50 id=60553 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5600s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:412 S ttl=38 id=32143 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5600s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1452 S ttl=50 id=9493 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5690s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:282 S ttl=42 id=56664 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5690s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:339 S ttl=41 id=20846 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.5690s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2067 S ttl=46 id=58413 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:172 S ttl=58 id=62273 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.5910s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:10005 S ttl=39 id=32900 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1391 S ttl=53 id=51608 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:633 S ttl=58 id=22402 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:211 S ttl=59 id=56663 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1413 S ttl=56 id=41587 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7597 S ttl=45 id=40490 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1531 S ttl=49 id=35966 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6543 S ttl=50 id=40212 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1526 S ttl=38 id=15544 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1023 S ttl=37 id=37965 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:505 S ttl=41 id=5955 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:116 S ttl=54 id=5162 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6000s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:445 S ttl=44 id=12167 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:108 S ttl=42 id=48874 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2018 S ttl=42 id=56713 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:858 S ttl=45 id=835 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:713 S ttl=53 id=5445 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:279 S ttl=57 id=43661 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:847 S ttl=56 id=15425 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.6130s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:577 S ttl=57 id=2532 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:563 S ttl=37 id=3015 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:869 S ttl=46 id=7151 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13702 S ttl=59 id=30 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:962 S ttl=59 id=29358 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:307 S ttl=49 id=16055 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:766 S ttl=58 id=35592 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6170s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:143 S ttl=42 id=13495 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:663 S ttl=37 id=17619 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6143 S ttl=49 id=32856 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6000 S ttl=38 id=3834 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1935 S ttl=43 id=23548 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2016 S ttl=46 id=59947 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9152 S ttl=55 id=51761 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:936 S ttl=47 id=7744 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:429 S ttl=40 id=1032 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:759 S ttl=39 id=61388 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2032 S ttl=46 id=59064 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:315 S ttl=37 id=34393 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:214 S ttl=50 id=63473 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:316 S ttl=41 id=28532 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:522 S ttl=45 id=24562 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1494 S ttl=43 id=53694 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:504 S ttl=49 id=15851 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:780 S ttl=59 id=47967 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1421 S ttl=49 id=1797 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5717 S ttl=40 id=64592 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:647 S ttl=37 id=24294 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.6310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:744 S ttl=50 id=47728 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:268 S ttl=46 id=13911 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:271 S ttl=44 id=38790 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7937 S ttl=38 id=13240 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1379 S ttl=49 id=43254 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:480 S ttl=41 id=20570 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:448 S ttl=40 id=28340 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:959 S ttl=55 id=9065 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.7550s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:635 S ttl=47 id=45340 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.7580s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:120 S ttl=47 id=20825 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.7580s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1989 S ttl=56 id=15360 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.7670s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:829 S ttl=39 id=5801 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.7930s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4899 S ttl=58 id=10647 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8010s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1452 S ttl=39 id=5425 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8010s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:412 S ttl=56 id=51034 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8010s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3985 S ttl=43 id=7376 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2067 S ttl=41 id=26349 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:339 S ttl=41 id=38511 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8080s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:282 S ttl=40 id=36911 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:172 S ttl=57 id=7168 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:10005 S ttl=53 id=16377 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:445 S ttl=45 id=15477 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:116 S ttl=50 id=30448 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:505 S ttl=58 id=30815 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1023 S ttl=57 id=56002 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1526 S ttl=43 id=31517 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6543 S ttl=45 id=11383 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1531 S ttl=58 id=45249 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7597 S ttl=47 id=43948 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8400s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1413 S ttl=49 id=21876 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8410s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:211 S ttl=59 id=59759 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8410s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:633 S ttl=45 id=60375 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8410s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1391 S ttl=46 id=30316 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:577 S ttl=55 id=22412 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:847 S ttl=54 id=2326 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:279 S ttl=56 id=55874 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:713 S ttl=41 id=54793 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:858 S ttl=59 id=42064 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2018 S ttl=49 id=36832 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8520s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:108 S ttl=59 id=13499 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:143 S ttl=44 id=38873 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:766 S ttl=50 id=3405 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:307 S ttl=58 id=48521 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:962 S ttl=43 id=28976 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13702 S ttl=53 id=21976 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:869 S ttl=46 id=44471 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:563 S ttl=39 id=61617 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1494 S ttl=57 id=2080 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:522 S ttl=39 id=4347 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:316 S ttl=53 id=28776 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:214 S ttl=48 id=30260 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:315 S ttl=42 id=4262 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2032 S ttl=43 id=3025 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:759 S ttl=48 id=10415 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:429 S ttl=57 id=56080 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:936 S ttl=58 id=40673 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9152 S ttl=50 id=49979 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2016 S ttl=55 id=65394 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1935 S ttl=42 id=52332 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6000 S ttl=38 id=35715 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6143 S ttl=52 id=52503 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8650s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:663 S ttl=48 id=28361 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:744 S ttl=43 id=10460 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:647 S ttl=56 id=12992 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5717 S ttl=44 id=58483 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1421 S ttl=53 id=53375 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (49.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:780 S ttl=46 id=12636 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (49.8680s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:504 S ttl=51 id=42279 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (49.9930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:635 S ttl=40 id=48075 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (49.9930s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:268 S ttl=56 id=4819 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.9930s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:98 S ttl=44 id=50920 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (49.9930s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:420 S ttl=47 id=49211 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.9940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5236 S ttl=59 id=55660 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (49.9940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:18183 S ttl=49 id=61773 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.9940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:495 S ttl=57 id=61532 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.9940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1409 S ttl=45 id=49573 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (49.9960s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:120 S ttl=48 id=21466 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (49.9960s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:875 S ttl=39 id=20874 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.0040s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:405 S ttl=56 id=27608 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0340s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:9102 S ttl=43 id=17700 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.0380s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1452 S ttl=51 id=58180 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.0380s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1671 S ttl=41 id=29515 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0380s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:260 S ttl=44 id=1127 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:397 S ttl=53 id=45489 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6502 S ttl=57 id=702 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:937 S ttl=55 id=38101 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.0480s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:319 S ttl=37 id=33715 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0700s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:589 S ttl=53 id=9161 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2 S ttl=53 id=61133 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5060 S ttl=40 id=57925 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:564 S ttl=48 id=38571 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:395 S ttl=49 id=23979 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1417 S ttl=50 id=62821 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:742 S ttl=58 id=15085 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:104 S ttl=43 id=11615 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:8888 S ttl=52 id=31333 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:931 S ttl=44 id=55588 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1761 S ttl=40 id=11963 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1505 S ttl=58 id=42923 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0780s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1412 S ttl=42 id=58505 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1516 S ttl=50 id=54703 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:90 S ttl=54 id=52614 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:535 S ttl=53 id=41559 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:576 S ttl=46 id=62615 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13 S ttl=41 id=7075 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1544 S ttl=54 id=29227 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0900s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:580 S ttl=49 id=51183 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13702 S ttl=42 id=6076 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:962 S ttl=37 id=27548 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:307 S ttl=41 id=34111 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:766 S ttl=53 id=38876 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:143 S ttl=42 id=35942 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:374 S ttl=59 id=22324 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.0940s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1431 S ttl=51 id=4754 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:522 S ttl=58 id=39923 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1494 S ttl=41 id=14106 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1110 S ttl=49 id=41492 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:67 S ttl=51 id=5220 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6667 S ttl=39 id=22837 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:814 S ttl=53 id=12424 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:721 S ttl=41 id=823 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:428 S ttl=44 id=18147 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:573 S ttl=50 id=37335 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1491 S ttl=53 id=53180 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5300 S ttl=55 id=61129 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6111 S ttl=46 id=36977 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1519 S ttl=58 id=6185 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5530 S ttl=53 id=9818 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:657 S ttl=48 id=6721 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5977 S ttl=47 id=10985 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:425 S ttl=51 id=35071 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:656 S ttl=43 id=25676 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1447 S ttl=41 id=62065 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1060s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:643 S ttl=45 id=27372 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.1070s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2638 S ttl=45 id=38270 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1409 S ttl=51 id=56728 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:495 S ttl=39 id=43041 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:18183 S ttl=39 id=28164 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5236 S ttl=50 id=12171 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:420 S ttl=58 id=65190 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:98 S ttl=55 id=9855 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:635 S ttl=44 id=38303 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.2310s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:372 S ttl=44 id=20378 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.2360s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:875 S ttl=53 id=62070 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.2360s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:259 S ttl=47 id=14894 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:405 S ttl=59 id=38163 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:9102 S ttl=59 id=59891 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:260 S ttl=59 id=64743 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2760s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1671 S ttl=55 id=26898 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.2760s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1419 S ttl=49 id=16912 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.2880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:319 S ttl=57 id=50323 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.2880s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:937 S ttl=50 id=52916 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.2890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6502 S ttl=42 id=59270 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.2890s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:397 S ttl=38 id=31795 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3080s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:589 S ttl=45 id=44525 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1412 S ttl=55 id=32839 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1505 S ttl=59 id=5169 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1761 S ttl=45 id=22233 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:931 S ttl=40 id=6153 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:8888 S ttl=47 id=34819 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:104 S ttl=55 id=29074 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:742 S ttl=41 id=53160 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1417 S ttl=49 id=45612 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:395 S ttl=58 id=18756 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:564 S ttl=43 id=21424 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5060 S ttl=58 id=55437 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3160s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2 S ttl=42 id=61205 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:580 S ttl=45 id=55602 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1544 S ttl=45 id=9133 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13 S ttl=59 id=25832 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:576 S ttl=43 id=6289 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:535 S ttl=42 id=28614 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:90 S ttl=53 id=9619 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3280s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1516 S ttl=44 id=50646 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1431 S ttl=46 id=54515 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:374 S ttl=41 id=10373 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:620 S ttl=37 id=6722 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:726 S ttl=43 id=16956 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1010 S ttl=40 id=24354 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1352 S ttl=53 id=11630 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3320s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:532 S ttl=53 id=10638 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2638 S ttl=57 id=44298 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:643 S ttl=38 id=6067 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1447 S ttl=57 id=41628 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:656 S ttl=40 id=42982 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:425 S ttl=38 id=25853 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5977 S ttl=59 id=63287 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:657 S ttl=43 id=60693 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5530 S ttl=37 id=40182 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1519 S ttl=55 id=58231 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3440s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6111 S ttl=44 id=54020 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5300 S ttl=44 id=30877 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1491 S ttl=43 id=48615 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:573 S ttl=53 id=55037 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:428 S ttl=55 id=28711 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3450s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:721 S ttl=37 id=11971 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3460s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:814 S ttl=45 id=11163 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3460s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6667 S ttl=42 id=55457 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.3460s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:67 S ttl=57 id=12952 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.3460s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1110 S ttl=44 id=46812 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.3460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:205 S ttl=39 id=1154 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.3460s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:861 S ttl=57 id=2934 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:372 S ttl=51 id=21031 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:98 S ttl=52 id=30643 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:420 S ttl=47 id=60184 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5236 S ttl=54 id=1192 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:18183 S ttl=56 id=41323 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:495 S ttl=46 id=30585 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1409 S ttl=55 id=20232 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.4720s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:72 S ttl=37 id=7488 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.4750s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:259 S ttl=56 id=22535 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.4750s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:875 S ttl=45 id=38363 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.4840s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:405 S ttl=57 id=2089 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:9102 S ttl=59 id=45469 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5180s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1419 S ttl=47 id=37990 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1671 S ttl=42 id=31009 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5180s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:260 S ttl=56 id=2335 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:397 S ttl=37 id=39549 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6502 S ttl=48 id=35336 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:937 S ttl=58 id=48410 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5260s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:319 S ttl=52 id=47813 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5460s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:589 S ttl=53 id=4207 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2 S ttl=45 id=50129 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5060 S ttl=57 id=4233 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:564 S ttl=59 id=855 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:395 S ttl=38 id=60089 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1417 S ttl=55 id=14833 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:742 S ttl=56 id=41238 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:104 S ttl=48 id=20546 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:8888 S ttl=50 id=13406 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:931 S ttl=58 id=32549 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1761 S ttl=47 id=47123 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1505 S ttl=53 id=62210 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5620s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1412 S ttl=38 id=56901 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:532 S ttl=51 id=8567 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1352 S ttl=52 id=46339 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1010 S ttl=52 id=9974 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:726 S ttl=45 id=46517 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:620 S ttl=44 id=26396 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:374 S ttl=47 id=22395 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1431 S ttl=55 id=17674 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1516 S ttl=42 id=57644 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:90 S ttl=58 id=44834 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:535 S ttl=56 id=55027 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5730s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:576 S ttl=48 id=20927 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5740s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13 S ttl=54 id=57334 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5740s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1544 S ttl=42 id=4847 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5740s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:580 S ttl=53 id=60096 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:861 S ttl=55 id=37899 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:205 S ttl=39 id=34906 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1110 S ttl=55 id=49978 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:67 S ttl=58 id=43347 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6667 S ttl=41 id=7707 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:814 S ttl=49 id=57958 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:721 S ttl=43 id=50996 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:428 S ttl=56 id=3438 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:573 S ttl=46 id=7973 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1491 S ttl=56 id=7811 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5300 S ttl=47 id=38534 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6111 S ttl=37 id=15989 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1519 S ttl=47 id=39802 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5530 S ttl=40 id=52987 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:657 S ttl=39 id=28667 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5977 S ttl=41 id=50748 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:425 S ttl=51 id=45740 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:656 S ttl=50 id=50226 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1447 S ttl=57 id=50711 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:643 S ttl=53 id=7981 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.5860s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2638 S ttl=47 id=6950 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.7140s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:259 S ttl=39 id=3163 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.7140s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:72 S ttl=53 id=4818 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7140s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:372 S ttl=53 id=20510 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1600 S ttl=55 id=52079 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:778 S ttl=37 id=39386 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:487 S ttl=49 id=46146 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:672 S ttl=58 id=33250 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:310 S ttl=49 id=43265 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4672 S ttl=49 id=17448 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7150s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:994 S ttl=45 id=38058 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7270s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:7326 S ttl=53 id=57933 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7530s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:50 S ttl=54 id=59847 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.7560s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1419 S ttl=50 id=33398 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.7560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:714 S ttl=44 id=55217 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.7560s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:84 S ttl=41 id=31021 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.7650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:58 S ttl=54 id=2311 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.7650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6669 S ttl=46 id=61056 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.7650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:474 S ttl=48 id=4 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.7650s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:779 S ttl=50 id=27511 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.7860s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:376 S ttl=49 id=8436 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:687 S ttl=54 id=31043 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:349 S ttl=46 id=50953 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:197 S ttl=40 id=19393 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:772 S ttl=43 id=33897 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1040 S ttl=40 id=29826 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:103 S ttl=56 id=13300 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:545 S ttl=37 id=53513 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1443 S ttl=55 id=44511 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1378 S ttl=57 id=52668 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:900 S ttl=43 id=15395 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:616 S ttl=50 id=35728 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8010s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:736 S ttl=57 id=4404 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:620 S ttl=47 id=45057 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:726 S ttl=52 id=911 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1010 S ttl=41 id=55116 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1352 S ttl=56 id=49937 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:532 S ttl=52 id=36853 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:32772 S ttl=41 id=56723 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:888 S ttl=58 id=56889 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:4444 S ttl=45 id=8838 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:615 S ttl=53 id=57598 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:86 S ttl=40 id=6025 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:254 S ttl=50 id=51115 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2045 S ttl=57 id=63872 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6017 S ttl=37 id=41858 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8120s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:255 S ttl=38 id=10172 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:205 S ttl=57 id=26143 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:861 S ttl=45 id=63689 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:788 S ttl=51 id=5940 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:596 S ttl=53 id=15558 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:584 S ttl=39 id=52653 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:332 S ttl=37 id=20113 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:232 S ttl=46 id=15142 iplen=44  seq=3513148414 win=3072 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:366 S ttl=49 id=14632 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:5432 S ttl=41 id=2393 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1392 S ttl=40 id=64328 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8250s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:258 S ttl=41 id=2223 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:6008 S ttl=56 id=57216 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:590 S ttl=41 id=36155 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1442 S ttl=53 id=50899 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:3531 S ttl=43 id=50925 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:410 S ttl=51 id=31187 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:629 S ttl=48 id=17195 iplen=44  seq=3513148414 win=1024 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:2034 S ttl=57 id=22772 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:806 S ttl=53 id=16825 iplen=44  seq=3513148414 win=2048 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:1533 S ttl=47 id=14861 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.8260s) TCP 156.17.238.83:59922 &gt; 64.13.134.52:13715 S ttl=55 id=53044 iplen=44  seq=3513148414 win=4096 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:994 S ttl=38 id=29525 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4672 S ttl=39 id=43270 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:310 S ttl=39 id=21912 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:672 S ttl=44 id=4905 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:487 S ttl=52 id=65511 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:778 S ttl=55 id=60467 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1600 S ttl=37 id=54086 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.9530s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:72 S ttl=42 id=44992 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (50.9650s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:7326 S ttl=47 id=64681 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (50.9930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:84 S ttl=49 id=35531 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.9930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:714 S ttl=57 id=44744 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (50.9930s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:50 S ttl=45 id=15437 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:779 S ttl=53 id=19400 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:474 S ttl=48 id=16692 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6669 S ttl=53 id=61084 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0040s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:58 S ttl=51 id=51394 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0240s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:376 S ttl=40 id=47203 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:736 S ttl=45 id=29901 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:616 S ttl=46 id=38074 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:900 S ttl=41 id=63835 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1378 S ttl=59 id=44252 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1443 S ttl=43 id=14472 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:545 S ttl=56 id=43819 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:103 S ttl=58 id=37617 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1040 S ttl=48 id=468 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:772 S ttl=45 id=38938 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:197 S ttl=49 id=61971 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:349 S ttl=45 id=12927 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0380s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:687 S ttl=52 id=32564 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:255 S ttl=42 id=13146 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6017 S ttl=57 id=41681 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2045 S ttl=37 id=956 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:254 S ttl=46 id=49750 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:86 S ttl=59 id=43229 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:615 S ttl=45 id=49197 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:4444 S ttl=52 id=14626 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0520s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:888 S ttl=57 id=55269 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0530s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:32772 S ttl=57 id=6602 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:13715 S ttl=52 id=39422 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1533 S ttl=42 id=47559 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:806 S ttl=47 id=39662 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:2034 S ttl=45 id=890 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:629 S ttl=52 id=55504 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:410 S ttl=52 id=63187 iplen=44  seq=3513213951 win=1024 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:3531 S ttl=47 id=61300 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1442 S ttl=58 id=49822 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:590 S ttl=43 id=37768 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:6008 S ttl=54 id=15775 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:258 S ttl=41 id=10956 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:1392 S ttl=42 id=6758 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:5432 S ttl=45 id=24230 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:366 S ttl=57 id=54000 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:232 S ttl=47 id=49165 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:332 S ttl=57 id=54754 iplen=44  seq=3513213951 win=2048 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:584 S ttl=50 id=43522 iplen=44  seq=3513213951 win=3072 &lt;mss 1460&gt;&#10;SENT (51.0640s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:596 S ttl=39 id=37215 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.0650s) TCP 156.17.238.83:59923 &gt; 64.13.134.52:788 S ttl=51 id=58594 iplen=44  seq=3513213951 win=4096 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1600 S ttl=56 id=31860 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:778 S ttl=51 id=5346 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:487 S ttl=48 id=18324 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:672 S ttl=45 id=791 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:310 S ttl=38 id=49208 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4672 S ttl=55 id=50385 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.1920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:994 S ttl=50 id=56301 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:7326 S ttl=48 id=6905 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.2320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:50 S ttl=49 id=16398 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:714 S ttl=46 id=16133 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2320s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:84 S ttl=46 id=12358 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:58 S ttl=41 id=34116 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6669 S ttl=51 id=8749 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.2440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:474 S ttl=48 id=9839 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.2440s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:779 S ttl=38 id=38448 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2630s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:376 S ttl=38 id=59981 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:687 S ttl=54 id=50924 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:349 S ttl=53 id=54550 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:197 S ttl=59 id=33283 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:772 S ttl=39 id=49760 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1040 S ttl=55 id=43738 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:103 S ttl=49 id=34739 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:545 S ttl=57 id=4601 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1443 S ttl=46 id=59458 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2760s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1378 S ttl=51 id=50075 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.2770s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:900 S ttl=45 id=50606 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2770s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:616 S ttl=46 id=41698 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2770s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:736 S ttl=38 id=40646 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:32772 S ttl=47 id=22249 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:888 S ttl=56 id=51142 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:4444 S ttl=40 id=11454 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:615 S ttl=57 id=64484 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:86 S ttl=44 id=32071 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:254 S ttl=58 id=3556 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2045 S ttl=46 id=23849 iplen=44  seq=3513017340 win=3072 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6017 S ttl=53 id=47633 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.2920s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:255 S ttl=57 id=768 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:788 S ttl=43 id=21968 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:596 S ttl=56 id=51402 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:584 S ttl=55 id=9568 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:332 S ttl=40 id=49708 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:232 S ttl=44 id=48582 iplen=44  seq=3513017340 win=1024 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:366 S ttl=45 id=60786 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:5432 S ttl=47 id=13011 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1392 S ttl=43 id=35883 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:258 S ttl=43 id=39765 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:6008 S ttl=49 id=18119 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:590 S ttl=39 id=48181 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1442 S ttl=51 id=39631 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:3531 S ttl=37 id=40496 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:410 S ttl=47 id=52731 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:629 S ttl=51 id=16923 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;SENT (51.3030s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:2034 S ttl=49 id=42568 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:806 S ttl=49 id=54932 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:1533 S ttl=37 id=61879 iplen=44  seq=3513017340 win=2048 &lt;mss 1460&gt;&#10;SENT (51.3040s) TCP 156.17.238.83:59924 &gt; 64.13.134.52:13715 S ttl=43 id=8865 iplen=44  seq=3513017340 win=4096 &lt;mss 1460&gt;&#10;Completed SYN Stealth Scan at 23:12, 51.25s elapsed (1714 total ports)&#10;Host 64.13.134.52 appears to be up ... good.&#10;Interesting ports on 64.13.134.52:&#10;Not shown: 1708 filtered ports&#10;Reason: 1708 no-responses&#10;PORT    STATE  SERVICE REASON&#10;22/tcp  open   ssh     syn-ack&#10;25/tcp  closed smtp    reset&#10;53/tcp  open   domain  syn-ack&#10;70/tcp  closed gopher  reset&#10;80/tcp  open   http    syn-ack&#10;113/tcp closed auth    reset&#10;Final times for host: srtt: 201480 rttvar: 8829  to: 236796&#10;&#10;Read from /usr/share/nmap: nmap-services.&#10;Nmap done: 1 IP address (1 host up) scanned in 51.559 seconds&#10;           Raw packets sent: 5141 (226.184KB) | Rcvd: 12 (552B)&#10;" version="4.53" target="scanme.nmap.org" annotation="" description=""><scaninfo services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" protocol="tcp" numservices="1714" type="syn"></scaninfo><verbose level="2"></verbose><debugging level="1"></debugging><host comment=""><status state="up"></status><address addrtype="ipv4" vendor="" addr="64.13.134.52"></address><address addrtype="" vendor="" addr=""></address><address addrtype="" vendor="" addr=""></address><hostnames></hostnames><ports><extraports count="1708" state="filtered"></extraports><port protocol="tcp" portid="22"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="25"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="53"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="70"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="80"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="113"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port></ports><os><osfingerprint fingerprint=""></osfingerprint></os><uptime lastboot="" seconds=""></uptime><tcpsequence index="" values="" class="" difficulty=""></tcpsequence><ipidsequence values="" class=""></ipidsequence><tcptssequence values="" class=""></tcptssequence></host><runstats><finished time="1231279932"></finished><hosts down="0" total="1" up="1"></hosts></runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/regular_scan__nonroot.xml
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/regular_scan__nonroot.xml (revision 3907)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/regular_scan__nonroot.xml (revision 3907)
@@ -0,0 +1,31 @@
+<?xml version="1.0" ?>
+<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
+<!-- Nmap 4.53 scan initiated Tue Jan  6 23:01:43 2009 as: nmap -v -oX /tmp/tmpyMEzTU -oN /tmp/tmp40udZ9 scanme.nmap.org -->
+<nmaprun scanner="nmap" args="nmap -v -oX /tmp/tmpyMEzTU -oN /tmp/tmp40udZ9 scanme.nmap.org" start="1231279303" startstr="Tue Jan  6 23:01:43 2009" version="4.53" xmloutputversion="1.01">
+<scaninfo type="connect" protocol="tcp" numservices="1714" services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" />
+<verbose level="1" />
+<debugging level="0" />
+<taskbegin task="Ping Scan" time="1231279303" />
+<taskend task="Ping Scan" time="1231279304" extrainfo="1 total hosts" />
+<taskbegin task="Parallel DNS resolution of 1 host." time="1231279304" />
+<taskend task="Parallel DNS resolution of 1 host." time="1231279305" />
+<taskbegin task="Connect Scan" time="1231279305" />
+<taskend task="Connect Scan" time="1231279330" extrainfo="1714 total ports" />
+<host><status state="up" reason="syn-ack"/>
+<address addr="64.13.134.52" addrtype="ipv4" />
+<hostnames><hostname name="scanme.nmap.org" type="PTR" /></hostnames>
+<ports><extraports state="filtered" count="1708">
+<extrareasons reason="no-responses" count="1708"/>
+</extraports>
+<port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="0"/><service name="ssh" method="table" conf="3" /></port>
+<port protocol="tcp" portid="25"><state state="closed" reason="conn-refused" reason_ttl="0"/><service name="smtp" method="table" conf="3" /></port>
+<port protocol="tcp" portid="53"><state state="open" reason="syn-ack" reason_ttl="0"/><service name="domain" method="table" conf="3" /></port>
+<port protocol="tcp" portid="70"><state state="closed" reason="conn-refused" reason_ttl="0"/><service name="gopher" method="table" conf="3" /></port>
+<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="0"/><service name="http" method="table" conf="3" /></port>
+<port protocol="tcp" portid="113"><state state="closed" reason="conn-refused" reason_ttl="0"/><service name="auth" method="table" conf="3" /></port>
+</ports>
+<times srtt="201521" rttvar="15375" to="263021" />
+</host>
+<runstats><finished time="1231279330" timestr="Tue Jan  6 23:02:10 2009"/><hosts up="1" down="0" total="1" />
+<!-- Nmap done at Tue Jan  6 23:02:10 2009; 1 IP address (1 host up) scanned in 26.571 seconds -->
+</runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_scan__root.xml
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_scan__root.xml (revision 3908)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_scan__root.xml (revision 3908)
@@ -0,0 +1,29 @@
+<?xml version="1.0" ?>
+<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
+<!-- Nmap 4.53 scan initiated Tue Jan  6 23:07:59 2009 as: nmap -T Aggressive -v -n -oX /tmp/tmpBdN7Fy -oN /tmp/tmpy2pv3i scanme.nmap.org -->
+<nmaprun scanner="nmap" args="nmap -T Aggressive -v -n -oX /tmp/tmpBdN7Fy -oN /tmp/tmpy2pv3i scanme.nmap.org" start="1231279679" startstr="Tue Jan  6 23:07:59 2009" version="4.53" xmloutputversion="1.01">
+<scaninfo type="syn" protocol="tcp" numservices="1714" services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" />
+<verbose level="1" />
+<debugging level="0" />
+<taskbegin task="Ping Scan" time="1231279679" />
+<taskend task="Ping Scan" time="1231279680" extrainfo="1 total hosts" />
+<taskbegin task="SYN Stealth Scan" time="1231279680" />
+<taskend task="SYN Stealth Scan" time="1231279702" extrainfo="1714 total ports" />
+<host><status state="up" reason="reset"/>
+<address addr="64.13.134.52" addrtype="ipv4" />
+<hostnames />
+<ports><extraports state="filtered" count="1708">
+<extrareasons reason="no-responses" count="1708"/>
+</extraports>
+<port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="ssh" method="table" conf="3" /></port>
+<port protocol="tcp" portid="25"><state state="closed" reason="reset" reason_ttl="49"/><service name="smtp" method="table" conf="3" /></port>
+<port protocol="tcp" portid="53"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="domain" method="table" conf="3" /></port>
+<port protocol="tcp" portid="70"><state state="closed" reason="reset" reason_ttl="49"/><service name="gopher" method="table" conf="3" /></port>
+<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="http" method="table" conf="3" /></port>
+<port protocol="tcp" portid="113"><state state="closed" reason="reset" reason_ttl="49"/><service name="auth" method="table" conf="3" /></port>
+</ports>
+<times srtt="201717" rttvar="15363" to="263169" />
+</host>
+<runstats><finished time="1231279702" timestr="Tue Jan  6 23:08:22 2009"/><hosts up="1" down="0" total="1" />
+<!-- Nmap done at Tue Jan  6 23:08:22 2009; 1 IP address (1 host up) scanned in 22.486 seconds -->
+</runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__nonroot.xml
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__nonroot.xml (revision 3907)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__nonroot.xml (revision 3907)
@@ -0,0 +1,29 @@
+<?xml version="1.0" ?>
+<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
+<!-- Nmap 4.53 scan initiated Tue Jan  6 22:58:22 2009 as: nmap -d -T Aggressive -&#45;packet_trace -v -n -oX /tmp/tmpE0htjZ -oN /tmp/tmp0LXhPa scanme.nmap.org -->
+<nmaprun scanner="nmap" args="nmap -d -T Aggressive --packet_trace -v -n -oX /tmp/tmpE0htjZ -oN /tmp/tmp0LXhPa scanme.nmap.org" start="1231279102" startstr="Tue Jan  6 22:58:22 2009" version="4.53" xmloutputversion="1.01">
+<scaninfo type="connect" protocol="tcp" numservices="1714" services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" />
+<verbose level="2" />
+<debugging level="1" />
+<taskbegin task="Ping Scan" time="1231279102" />
+<taskend task="Ping Scan" time="1231279102" extrainfo="1 total hosts" />
+<taskbegin task="Connect Scan" time="1231279102" />
+<taskend task="Connect Scan" time="1231279138" extrainfo="1714 total ports" />
+<host><status state="up" reason="syn-ack"/>
+<address addr="64.13.134.52" addrtype="ipv4" />
+<hostnames />
+<ports><extraports state="filtered" count="1708">
+<extrareasons reason="no-responses" count="1708"/>
+</extraports>
+<port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="0"/><service name="ssh" method="table" conf="3" /></port>
+<port protocol="tcp" portid="25"><state state="closed" reason="conn-refused" reason_ttl="0"/><service name="smtp" method="table" conf="3" /></port>
+<port protocol="tcp" portid="53"><state state="open" reason="syn-ack" reason_ttl="0"/><service name="domain" method="table" conf="3" /></port>
+<port protocol="tcp" portid="70"><state state="closed" reason="conn-refused" reason_ttl="0"/><service name="gopher" method="table" conf="3" /></port>
+<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="0"/><service name="http" method="table" conf="3" /></port>
+<port protocol="tcp" portid="113"><state state="closed" reason="conn-refused" reason_ttl="0"/><service name="auth" method="table" conf="3" /></port>
+</ports>
+<times srtt="202253" rttvar="7920" to="233933" />
+</host>
+<runstats><finished time="1231279138" timestr="Tue Jan  6 22:58:58 2009"/><hosts up="1" down="0" total="1" />
+<!-- Nmap done at Tue Jan  6 22:58:58 2009; 1 IP address (1 host up) scanned in 35.985 seconds -->
+</runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_operating_system_detection__root.xml
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_operating_system_detection__root.xml (revision 3910)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_operating_system_detection__root.xml (revision 3910)
@@ -0,0 +1,75 @@
+<?xml version="1.0" ?>
+<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
+<!-- Nmap 4.53 scan initiated Tue Jan  6 23:18:32 2009 as: nmap -T Aggressive -O -v -oX /tmp/tmpRyeAKT -oN /tmp/tmpGs3O8a scanme.nmap.org -->
+<nmaprun scanner="nmap" args="nmap -T Aggressive -O -v -oX /tmp/tmpRyeAKT -oN /tmp/tmpGs3O8a scanme.nmap.org" start="1231280312" startstr="Tue Jan  6 23:18:32 2009" version="4.53" xmloutputversion="1.01">
+<scaninfo type="syn" protocol="tcp" numservices="1714" services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" />
+<verbose level="1" />
+<debugging level="0" />
+<taskbegin task="Ping Scan" time="1231280312" />
+<taskend task="Ping Scan" time="1231280313" extrainfo="1 total hosts" />
+<taskbegin task="Parallel DNS resolution of 1 host." time="1231280313" />
+<taskend task="Parallel DNS resolution of 1 host." time="1231280313" />
+<taskbegin task="SYN Stealth Scan" time="1231280313" />
+<taskend task="SYN Stealth Scan" time="1231280353" extrainfo="1714 total ports" />
+<host><status state="up" reason="echo-reply"/>
+<address addr="64.13.134.52" addrtype="ipv4" />
+<hostnames><hostname name="scanme.nmap.org" type="PTR" /></hostnames>
+<ports><extraports state="filtered" count="1708">
+<extrareasons reason="no-responses" count="1708"/>
+</extraports>
+<port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="ssh" method="table" conf="3" /></port>
+<port protocol="tcp" portid="25"><state state="closed" reason="reset" reason_ttl="49"/><service name="smtp" method="table" conf="3" /></port>
+<port protocol="tcp" portid="53"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="domain" method="table" conf="3" /></port>
+<port protocol="tcp" portid="70"><state state="closed" reason="reset" reason_ttl="49"/><service name="gopher" method="table" conf="3" /></port>
+<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="http" method="table" conf="3" /></port>
+<port protocol="tcp" portid="113"><state state="closed" reason="reset" reason_ttl="49"/><service name="auth" method="table" conf="3" /></port>
+</ports>
+<os><portused state="open" proto="tcp" portid="22" />
+<portused state="closed" proto="tcp" portid="25" />
+<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.6.X" accuracy="99" />
+<osclass type="media device" vendor="Dream Multimedia" osfamily="Linux" osgen="2.6.X" accuracy="94" />
+<osclass type="storage-misc" vendor="Iomega" osfamily="Linux" osgen="2.6.X" accuracy="94" />
+<osclass type="VoIP gateway" vendor="Tandberg" osfamily="Linux" osgen="2.6.X" accuracy="94" />
+<osclass type="WAP" vendor="FON" osfamily="Linux" osgen="2.4.X" accuracy="92" />
+<osclass type="general purpose" vendor="Linux" osfamily="Linux" osgen="2.4.X" accuracy="92" />
+<osclass type="WAP" vendor="Siemens" osfamily="Linux" accuracy="91" />
+<osclass type="WAP" vendor="Linksys" osfamily="Linux" osgen="2.4.X" accuracy="91" />
+<osmatch name="Linux 2.6.17 - 2.6.21" accuracy="99" line="9847"/>
+<osmatch name="Linux 2.6.17 - 2.6.18" accuracy="96" line="9552"/>
+<osmatch name="Linux 2.6.17 - 2.6.18 (x86_64, SMP)" accuracy="95" line="9650"/>
+<osmatch name="Linux 2.6.18 (Gentoo, x86)" accuracy="95" line="10263"/>
+<osmatch name="Linux 2.6.9 - 2.6.11" accuracy="95" line="11675"/>
+<osmatch name="Linux 2.6.9 - 2.6.20 (Fedora Core 5 or 6)" accuracy="95" line="11777"/>
+<osmatch name="Linux 2.6.9 - 2.6.15" accuracy="95" line="11718"/>
+<osmatch name="Linux 2.6.20-1 (Fedora Core 5)" accuracy="94" line="10754"/>
+<osmatch name="Linux 2.6.9 - 2.6.19" accuracy="94" line="4200"/>
+<osmatch name="Linux 2.6.17 - 2.6.22" accuracy="94" line="10011"/>
+<osfingerprint fingerprint="
+SCAN(V=4.53%D=1/6%OT=22%CT=25%CU=%PV=N%G=N%TM=4963D8E6%P=i686-pc-linux-gnu)
+SEQ(SP=C6%GCD=1%ISR=C8%TI=Z%TS=A)
+SEQ(SP=C4%GCD=1%ISR=C2%TI=Z%II=I%TS=B)
+OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=M5B4ST11NW7%O5=M5B4ST11NW7%O6=M5B4ST11)
+OPS(O1=M5B4ST11NW7%O2=M5B4ST11NW7%O3=M5B4NNT11NW7%O4=NNT11%O5=M5B4ST11NW7%O6=M5B4ST11)
+WIN(W1=16A0%W2=16A0%W3=16A0%W4=16A0%W5=16A0%W6=16A0)
+ECN(R=Y%DF=Y%TG=40%W=16D0%O=M5B4NNSNW7%CC=N%Q=)
+T1(R=Y%DF=Y%TG=40%S=O%A=S+%F=AS%RD=0%Q=)
+T1(R=Y%DF=Y%TG=40%S=O%A=O%F=AS%RD=0%Q=)
+T2(R=N)
+T3(R=Y%DF=Y%TG=40%W=16A0%S=O%A=S+%F=AS%O=M5B4ST11NW7%RD=0%Q=)
+T4(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
+T5(R=Y%DF=Y%TG=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
+T6(R=Y%DF=Y%TG=40%W=0%S=A%A=Z%F=R%O=%RD=0%Q=)
+T7(R=Y%DF=Y%TG=40%W=0%S=Z%A=S+%F=AR%O=%RD=0%Q=)
+U1(R=N)
+IE(R=Y%DFI=N%TG=40%TOSI=Z%CD=S%SI=S%DLI=S)
+" />
+</os>
+<uptime seconds="377587" lastboot="Fri Jan  2 14:26:11 2009" />
+<tcpsequence index="196" class="unknown class" difficulty="Good luck!" values="4C78A353,4CCB4160,4CE497E3,4CC441E0,4CC56E20" />
+<ipidsequence class="All zeros" values="0,0,0,0,0" />
+<tcptssequence class="other" values="36EFD355,36EFD0A6,36EFD109,36EFD1D1,36EFD235" />
+<times srtt="201429" rttvar="299" to="202625" />
+</host>
+<runstats><finished time="1231280358" timestr="Tue Jan  6 23:19:18 2009"/><hosts up="1" down="0" total="1" />
+<!-- Nmap done at Tue Jan  6 23:19:18 2009; 1 IP address (1 host up) scanned in 45.627 seconds -->
+</runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/wassabi__root.xml
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/wassabi__root.xml (revision 3908)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/wassabi__root.xml (revision 3908)
@@ -0,0 +1,20 @@
+<?xml version="1.0" ?>
+<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
+<!-- Nmap 4.53 scan initiated Tue Jan  6 23:15:39 2009 as: nmap -v -v -v -v -v -p2000,2222 -n -&#45;packet-trace -d -d -d -d -d -T Aggressive -P0 -oX /tmp/tmptRAiQY -oN /tmp/tmptLJC0B scanme.nmap.org -->
+<nmaprun scanner="nmap" args="nmap -v -v -v -v -v -p2000,2222 -n --packet-trace -d -d -d -d -d -T Aggressive -P0 -oX /tmp/tmptRAiQY -oN /tmp/tmptLJC0B scanme.nmap.org" start="1231280139" startstr="Tue Jan  6 23:15:39 2009" version="4.53" xmloutputversion="1.01">
+<scaninfo type="syn" protocol="tcp" numservices="2" services="2000,2222" />
+<verbose level="10" />
+<debugging level="5" />
+<taskbegin task="SYN Stealth Scan" time="1231280139" />
+<taskend task="SYN Stealth Scan" time="1231280141" extrainfo="2 total ports" />
+<host><status state="up" reason="localhost-response"/>
+<address addr="64.13.134.52" addrtype="ipv4" />
+<hostnames />
+<ports><port protocol="tcp" portid="2000"><state state="filtered" reason="no-response" reason_ttl="0"/><service name="callbook" method="table" conf="3" /></port>
+<port protocol="tcp" portid="2222"><state state="filtered" reason="no-response" reason_ttl="0"/></port>
+</ports>
+<times srtt="-1" rttvar="-1" to="500000" />
+</host>
+<runstats><finished time="1231280141" timestr="Tue Jan  6 23:15:41 2009"/><hosts up="1" down="0" total="1" />
+<!-- Nmap done at Tue Jan  6 23:15:41 2009; 1 IP address (1 host up) scanned in 2.095 seconds -->
+</runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_scan__root.usr
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_scan__root.usr (revision 3908)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_scan__root.usr (revision 3908)
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<nmaprun profile="nmap -T Aggressive -v -n %s" scanner="nmap" hint="" scan_name="" args="nmap -T Aggressive -v -n scanme.nmap.org" profile_name="Quick Scan" startstr="Styczeń 6, 2009 - 23:07" options="Aggressive,Disable reverse DNS resolution,Verbose" start="1231279679" nmap_output="&#10;Starting Nmap 4.53 ( http://insecure.org ) at 2009-01-06 23:07 CET&#10;Initiating Ping Scan at 23:07&#10;Scanning 64.13.134.52 [2 ports]&#10;Completed Ping Scan at 23:08, 0.21s elapsed (1 total hosts)&#10;Initiating SYN Stealth Scan at 23:08&#10;Scanning 64.13.134.52 [1714 ports]&#10;Discovered open port 53/tcp on 64.13.134.52&#10;Discovered open port 22/tcp on 64.13.134.52&#10;Discovered open port 80/tcp on 64.13.134.52&#10;Completed SYN Stealth Scan at 23:08, 22.20s elapsed (1714 total ports)&#10;Host 64.13.134.52 appears to be up ... good.&#10;Interesting ports on 64.13.134.52:&#10;Not shown: 1708 filtered ports&#10;PORT    STATE  SERVICE&#10;22/tcp  open   ssh&#10;25/tcp  closed smtp&#10;53/tcp  open   domain&#10;70/tcp  closed gopher&#10;80/tcp  open   http&#10;113/tcp closed auth&#10;&#10;Read data files from: /usr/share/nmap&#10;Nmap done: 1 IP address (1 host up) scanned in 22.486 seconds&#10;           Raw packets sent: 3428 (150.812KB) | Rcvd: 11 (506B)&#10;" version="4.53" target="scanme.nmap.org" annotation="" description=""><scaninfo services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" protocol="tcp" numservices="1714" type="syn"></scaninfo><verbose level="1"></verbose><debugging level="0"></debugging><host comment=""><status state="up"></status><address addrtype="ipv4" vendor="" addr="64.13.134.52"></address><address addrtype="" vendor="" addr=""></address><address addrtype="" vendor="" addr=""></address><hostnames></hostnames><ports><extraports count="1708" state="filtered"></extraports><port protocol="tcp" portid="22"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="25"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="53"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="70"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="80"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port><port protocol="tcp" portid="113"><state state=""></state><service product="" version="" name="" conf="" extrainfo="" method=""></service></port></ports><os><osfingerprint fingerprint=""></osfingerprint></os><uptime lastboot="" seconds=""></uptime><tcpsequence index="" values="" class="" difficulty=""></tcpsequence><ipidsequence values="" class=""></ipidsequence><tcptssequence values="" class=""></tcptssequence></host><runstats><finished time="1231279702"></finished><hosts down="0" total="1" up="1"></hosts></runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_services_ver_detection__root.xml
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_services_ver_detection__root.xml (revision 3908)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_services_ver_detection__root.xml (revision 3908)
@@ -0,0 +1,33 @@
+<?xml version="1.0" ?>
+<?xml-stylesheet href="/usr/share/nmap/nmap.xsl" type="text/xsl"?>
+<!-- Nmap 4.53 scan initiated Tue Jan  6 23:09:18 2009 as: nmap -T Aggressive -sV -v -oX /tmp/tmp94pSPB -oN /tmp/tmpYywo6G scanme.nmap.org -->
+<nmaprun scanner="nmap" args="nmap -T Aggressive -sV -v -oX /tmp/tmp94pSPB -oN /tmp/tmpYywo6G scanme.nmap.org" start="1231279758" startstr="Tue Jan  6 23:09:18 2009" version="4.53" xmloutputversion="1.01">
+<scaninfo type="syn" protocol="tcp" numservices="1714" services="1-1027,1029-1033,1040,1043,1050,1058-1059,1067-1068,1076,1080,1083-1084,1103,1109-1110,1112,1127,1139,1155,1158,1178,1212,1214,1220,1222,1234,1241,1248,1270,1337,1346-1381,1383-1552,1600,1650-1652,1661-1672,1680,1720,1723,1755,1761-1764,1827,1900,1935,1984,1986-2028,2030,2032-2035,2038,2040-2049,2053,2064-2065,2067-2068,2105-2106,2108,2111-2112,2120-2121,2201,2232,2241,2301,2307,2401,2430-2433,2500-2501,2564,2600-2605,2627-2628,2638,2766,2784,2809,2903,2998,3000-3001,3005-3006,3025,3045,3049,3052,3064,3086,3128,3141,3264,3268-3269,3292,3299,3306,3333,3372,3389,3397-3399,3421,3455-3457,3462,3531,3632,3689,3900,3984-3986,3999-4000,4002,4008,4045,4125,4132-4133,4144,4199,4224,4321,4333,4343,4444,4480,4500,4557,4559,4660,4662,4672,4899,4987,4998,5000-5003,5009-5011,5050,5060,5100-5102,5145,5190-5193,5232,5236,5300-5305,5308,5400,5405,5432,5490,5500,5510,5520,5530,5540,5550,5555,5560,5631-5632,5679-5680,5713-5717,5800-5803,5900-5903,5977-5979,5997-6009,6017,6050,6101,6103,6105-6106,6110-6112,6141-6148,6222,6346-6347,6400-6401,6502,6543-6544,6547-6548,6558,6588,6662,6665-6670,6699-6701,6881,6969,7000-7010,7070,7100,7200-7201,7273,7326,7464,7597,7937-7938,8000,8007,8009,8021,8076,8080-8082,8118,8123,8443,8770,8888,8892,9040,9050-9051,9090,9100-9107,9111,9152,9535,9876,9991-9992,9999-10000,10005,10082-10083,11371,12000,12345-12346,13701-13702,13705-13706,13708-13718,13720-13722,13782-13783,14141,15126,15151,16080,16444,16959,17007,17300,18000,18181-18185,18187,19150,20005,22273,22289,22305,22321,22370,26208,27000-27010,27374,27665,31337,31416,32770-32780,32786-32787,38037,38292,43188,44334,44442-44443,47557,49400,50000,50002,54320,61439-61441,65301" />
+<verbose level="1" />
+<debugging level="0" />
+<taskbegin task="Ping Scan" time="1231279758" />
+<taskend task="Ping Scan" time="1231279758" extrainfo="1 total hosts" />
+<taskbegin task="Parallel DNS resolution of 1 host." time="1231279758" />
+<taskend task="Parallel DNS resolution of 1 host." time="1231279761" />
+<taskbegin task="SYN Stealth Scan" time="1231279761" />
+<taskend task="SYN Stealth Scan" time="1231279792" extrainfo="1714 total ports" />
+<taskbegin task="Service scan" time="1231279792" />
+<taskend task="Service scan" time="1231279806" extrainfo="3 services on 1 host" />
+<host><status state="up" reason="echo-reply"/>
+<address addr="64.13.134.52" addrtype="ipv4" />
+<hostnames><hostname name="scanme.nmap.org" type="PTR" /></hostnames>
+<ports><extraports state="filtered" count="1708">
+<extrareasons reason="no-responses" count="1708"/>
+</extraports>
+<port protocol="tcp" portid="22"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="ssh" product="OpenSSH" version="4.3" extrainfo="protocol 2.0" method="probed" conf="10" /></port>
+<port protocol="tcp" portid="25"><state state="closed" reason="reset" reason_ttl="49"/><service name="smtp" method="table" conf="3" /></port>
+<port protocol="tcp" portid="53"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="domain" method="probed" conf="10" /></port>
+<port protocol="tcp" portid="70"><state state="closed" reason="reset" reason_ttl="49"/><service name="gopher" method="table" conf="3" /></port>
+<port protocol="tcp" portid="80"><state state="open" reason="syn-ack" reason_ttl="49"/><service name="http" product="Apache httpd" version="2.2.2" extrainfo="(Fedora)" method="probed" conf="10" /></port>
+<port protocol="tcp" portid="113"><state state="closed" reason="reset" reason_ttl="49"/><service name="auth" method="table" conf="3" /></port>
+</ports>
+<times srtt="201342" rttvar="15675" to="264042" />
+</host>
+<runstats><finished time="1231279806" timestr="Tue Jan  6 23:10:06 2009"/><hosts up="1" down="0" total="1" />
+<!-- Nmap done at Tue Jan  6 23:10:06 2009; 1 IP address (1 host up) scanned in 48.465 seconds -->
+</runstats></nmaprun>
Index: /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__nonroot.usr
===================================================================
--- /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__nonroot.usr (revision 3907)
+++ /network-scanner/branches/nmapparser/test/samples/standard_profiles/quick_verbose_scan__nonroot.usr (revision 3907)
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<nmaprun profile="nmap -d -T Aggressive --packet_trace -v -n %s" scanner="nmap" hint="" scan_name="" args="nmap -d -T Aggressive --packet_trace -v -n scanme.nmap.org" profile_name="Quick and verbose scan" startstr="Styczeń 6, 2009 - 22:58" options="Debug,Aggressive,Watch packets,Verbose,Disable reverse DNS resolution" start="1231279102" nmap_output="&#10;Starting Nmap 4.53 ( http://insecure.org ) at 2009-01-06 22:58 CET&#10;--------------- Timing report ---------------&#10;  hostgroups: min 1, max 100000&#10;  rtt-timeouts: init 500, min 100, max 1250&#10;  max-scan-delay: TCP 10, UDP 1000&#10;  parallelism: min 0, max 0&#10;  max-retries: 6, host-timeout: 0&#10;---------------------------------------------&#10;Initiating Ping Scan at 22:58&#10;Scanning 64.13.134.52 [1 port]&#10;CONN (0.0770s) TCP localhost &gt; 64.13.134.52:80 =&gt; Operation now in progress&#10;Completed Ping Scan at 22:58, 0.20s elapsed (1 total hosts)&#10;Initiating Connect Scan at 22:58&#10;Scanning 64.13.134.52 [1714 ports]&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:1723 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:22 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:554 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:80 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:23 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:21 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:636 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:53 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:443 =&gt; Operation now in progress&#10;CONN (0.2830s) TCP localhost &gt; 64.13.134.52:389 =&gt; Operation now in progress&#10;Discovered open port 22/tcp on 64.13.134.52&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:113 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:256 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:25 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:3389 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:580 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:162 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:271 =&gt; Operation now in progress&#10;CONN (0.4850s) TCP localhost &gt; 64.13.134.52:3333 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:2025 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:892 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:121 =&gt; Operation now in progress&#10;Discovered open port 53/tcp on 64.13.134.52&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:2112 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:163 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:1030 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:1493 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:1984 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:1509 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:2605 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:1002 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:731 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:812 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:184 =&gt; Operation now in progress&#10;CONN (0.4860s) TCP localhost &gt; 64.13.134.52:9040 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:378 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:32777 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:1068 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:5977 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:83 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:3462 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:2048 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:2201 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:5009 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:592 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:880 =&gt; Operation now in progress&#10;CONN (0.6880s) TCP localhost &gt; 64.13.134.52:841 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:841 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:880 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:592 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:5009 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:2201 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:2048 =&gt; Operation now in progress&#10;CONN (1.8470s) TCP localhost &gt; 64.13.134.52:3462 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:83 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:5977 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:1068 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:32777 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:378 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:9040 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:184 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:812 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:731 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:1002 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:2605 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:1509 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:1984 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:1493 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:1030 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:163 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:2112 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:121 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:892 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:2025 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:3333 =&gt; Operation now in progress&#10;CONN (1.8480s) TCP localhost &gt; 64.13.134.52:271 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:162 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:580 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:3389 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:25 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:256 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:389 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:443 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:636 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:21 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:23 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:80 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:554 =&gt; Operation now in progress&#10;CONN (1.8490s) TCP localhost &gt; 64.13.134.52:1723 =&gt; Operation now in progress&#10;Increased max_successful_tryno for 64.13.134.52 to 1 (packet drop)&#10;Discovered open port 80/tcp on 64.13.134.52&#10;CONN (3.2540s) TCP localhost &gt; 64.13.134.52:1723 =&gt; Operation now in progress&#10;CONN (3.6630s) TCP localhost &gt; 64.13.134.52:554 =&gt; Operation now in progress&#10;CONN (4.0700s) TCP localhost &gt; 64.13.134.52:23 =&gt; Operation now in progress&#10;CONN (4.4790s) TCP localhost &gt; 64.13.134.52:21 =&gt; Operation now in progress&#10;CONN (4.8880s) TCP localhost &gt; 64.13.134.52:636 =&gt; Operation now in progress&#10;CONN (5.2950s) TCP localhost &gt; 64.13.134.52:443 =&gt; Operation now in progress&#10;CONN (5.7040s) TCP localhost &gt; 64.13.134.52:389 =&gt; Operation now in progress&#10;CONN (6.1110s) TCP localhost &gt; 64.13.134.52:256 =&gt; Operation now in progress&#10;CONN (6.5180s) TCP localhost &gt; 64.13.134.52:3389 =&gt; Operation now in progress&#10;CONN (6.9280s) TCP localhost &gt; 64.13.134.52:580 =&gt; Operation now in progress&#10;CONN (7.3350s) TCP localhost &gt; 64.13.134.52:113 =&gt; Operation now in progress&#10;CONN (7.5360s) TCP localhost &gt; 64.13.134.52:162 =&gt; Operation now in progress&#10;CONN (7.5360s) TCP localhost &gt; 64.13.134.52:271 =&gt; Operation now in progress&#10;CONN (7.5360s) TCP localhost &gt; 64.13.134.52:3333 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:2025 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:892 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:121 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:2112 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:163 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:1030 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:1493 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:1984 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:1509 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:2605 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:1002 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:731 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:812 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:184 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:9040 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:378 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:32777 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:1068 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:5977 =&gt; Operation now in progress&#10;CONN (7.5370s) TCP localhost &gt; 64.13.134.52:83 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:3462 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:2048 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:2201 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:5009 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:592 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:880 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:841 =&gt; Operation now in progress&#10;CONN (7.5380s) TCP localhost &gt; 64.13.134.52:926 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:145 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:6543 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:362 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:103 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:802 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:842 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:780 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:6346 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:1495 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:35 =&gt; Operation now in progress&#10;CONN (7.8960s) TCP localhost &gt; 64.13.134.52:6143 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:9050 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:1436 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:689 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:139 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:432 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:707 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:1158 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:32776 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:1040 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:2120 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:695 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:926 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:334 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:682 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:5802 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:5979 =&gt; Operation now in progress&#10;CONN (7.8970s) TCP localhost &gt; 64.13.134.52:905 =&gt; Operation now in progress&#10;CONN (7.8980s) TCP localhost &gt; 64.13.134.52:1337 =&gt; Operation now in progress&#10;CONN (7.8980s) TCP localhost &gt; 64.13.134.52:180 =&gt; Operation now in progress&#10;CONN (7.8980s) TCP localhost &gt; 64.13.134.52:5002 =&gt; Operation now in progress&#10;CONN (8.2550s) TCP localhost &gt; 64.13.134.52:5002 =&gt; Operation now in progress&#10;CONN (8.2550s) TCP localhost &gt; 64.13.134.52:180 =&gt; Operation now in progress&#10;CONN (8.2550s) TCP localhost &gt; 64.13.134.52:1337 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:905 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:5979 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:5802 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:682 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:334 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:926 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:695 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:2120 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:1040 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:32776 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:1158 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:707 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:432 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:139 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:689 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:1436 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:9050 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:6143 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:35 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:1495 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:6346 =&gt; Operation now in progress&#10;CONN (8.2560s) TCP localhost &gt; 64.13.134.52:780 =&gt; Operation now in progress&#10;CONN (8.2570s) TCP localhost &gt; 64.13.134.52:842 =&gt; Operation now in progress&#10;CONN (8.2570s) TCP localhost &gt; 64.13.134.52:802 =&gt; Operation now in progress&#10;CONN (8.2570s) TCP localhost &gt; 64.13.134.52:103 =&gt; Operation now in progress&#10;CONN (8.2570s) TCP localhost &gt; 64.13.134.52:362 =&gt; Operation now in progress&#10;CONN (8.2570s) TCP localhost &gt; 64.13.134.52:6543 =&gt; Operation now in progress&#10;CONN (8.2570s) TCP localhost &gt; 64.13.134.52:145 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:6346 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:1495 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:35 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:6143 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:9050 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:1436 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:689 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:139 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:432 =&gt; Operation now in progress&#10;CONN (8.6150s) TCP localhost &gt; 64.13.134.52:707 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:1158 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:32776 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:1040 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:2120 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:695 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:334 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:682 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:5802 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:5979 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:905 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:1337 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:180 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:5002 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:2043 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:145 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:6543 =&gt; Operation now in progress&#10;CONN (8.6160s) TCP localhost &gt; 64.13.134.52:362 =&gt; Operation now in progress&#10;CONN (8.6170s) TCP localhost &gt; 64.13.134.52:103 =&gt; Operation now in progress&#10;CONN (8.6170s) TCP localhost &gt; 64.13.134.52:802 =&gt; Operation now in progress&#10;CONN (8.6170s) TCP localhost &gt; 64.13.134.52:842 =&gt; Operation now in progress&#10;CONN (8.6170s) TCP localhost &gt; 64.13.134.52:780 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:2043 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:166 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:93 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:1545 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:3052 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:316 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:5631 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:228 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:1394 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:9111 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:209 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:1058 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:771 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:1352 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:896 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:502 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:808 =&gt; Operation now in progress&#10;CONN (8.9750s) TCP localhost &gt; 64.13.134.52:504 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:1420 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:6969 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:718 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:748 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:92 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:385 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:619 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:725 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:7003 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:511 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:279 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:3999 =&gt; Operation now in progress&#10;CONN (8.9760s) TCP localhost &gt; 64.13.134.52:220 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:220 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:3999 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:279 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:511 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:7003 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:725 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:619 =&gt; Operation now in progress&#10;CONN (9.3340s) TCP localhost &gt; 64.13.134.52:385 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:92 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:748 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:718 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:6969 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:1420 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:504 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:808 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:502 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:896 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:1352 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:771 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:1058 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:209 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:9111 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:1394 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:228 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:5631 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:316 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:3052 =&gt; Operation now in progress&#10;CONN (9.3350s) TCP localhost &gt; 64.13.134.52:1545 =&gt; Operation now in progress&#10;CONN (9.3360s) TCP localhost &gt; 64.13.134.52:93 =&gt; Operation now in progress&#10;CONN (9.3360s) TCP localhost &gt; 64.13.134.52:166 =&gt; Operation now in progress&#10;CONN (9.3360s) TCP localhost &gt; 64.13.134.52:2043 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:166 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:93 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:1545 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:3052 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:316 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:5631 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:228 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:1394 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:9111 =&gt; Operation now in progress&#10;CONN (9.6960s) TCP localhost &gt; 64.13.134.52:209 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:1058 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:771 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:1352 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:896 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:502 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:808 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:504 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:1420 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:6969 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:718 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:748 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:92 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:385 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:619 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:725 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:7003 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:511 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:279 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:3999 =&gt; Operation now in progress&#10;CONN (9.6970s) TCP localhost &gt; 64.13.134.52:220 =&gt; Operation now in progress&#10;CONN (9.6980s) TCP localhost &gt; 64.13.134.52:1405 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:1405 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:920 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:980 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:3045 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:1364 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:558 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:742 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:319 =&gt; Operation now in progress&#10;CONN (10.0550s) TCP localhost &gt; 64.13.134.52:530 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:1523 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:2000 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:708 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:5998 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:1987 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:930 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:47557 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:32778 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:181 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:1409 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:677 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:394 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:1417 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:800 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:837 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:893 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:383 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:617 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:1497 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:992 =&gt; Operation now in progress&#10;CONN (10.0560s) TCP localhost &gt; 64.13.134.52:2068 =&gt; Operation now in progress&#10;CONN (10.0570s) TCP localhost &gt; 64.13.134.52:293 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:293 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:2068 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:992 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:1497 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:617 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:383 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:893 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:837 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:800 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:1417 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:394 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:677 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:1409 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:181 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:32778 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:47557 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:930 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:1987 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:5998 =&gt; Operation now in progress&#10;CONN (10.4160s) TCP localhost &gt; 64.13.134.52:708 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:2000 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:1523 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:530 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:319 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:742 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:558 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:1364 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:3045 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:980 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:920 =&gt; Operation now in progress&#10;CONN (10.4170s) TCP localhost &gt; 64.13.134.52:1405 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:920 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:980 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:3045 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:1364 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:558 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:742 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:319 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:530 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:1523 =&gt; Operation now in progress&#10;CONN (10.7760s) TCP localhost &gt; 64.13.134.52:2000 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:708 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:5998 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:1987 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:930 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:47557 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:32778 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:181 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:1409 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:677 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:394 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:1417 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:800 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:837 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:893 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:383 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:617 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:1497 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:992 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:2068 =&gt; Operation now in progress&#10;CONN (10.7770s) TCP localhost &gt; 64.13.134.52:293 =&gt; Operation now in progress&#10;CONN (10.7780s) TCP localhost &gt; 64.13.134.52:136 =&gt; Operation now in progress&#10;CONN (11.1350s) TCP localhost &gt; 64.13.134.52:136 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:2026 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:675 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:1457 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:150 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:382 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:865 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:1470 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:7001 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:647 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:1000 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:795 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:27000 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:853 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:77 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:469 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:660 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:16959 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:439 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:943 =&gt; Operation now in progress&#10;CONN (11.1360s) TCP localhost &gt; 64.13.134.52:2628 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:188 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:1377 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:1490 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:4132 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:962 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:1990 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:785 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:777 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:665 =&gt; Operation now in progress&#10;CONN (11.1370s) TCP localhost &gt; 64.13.134.52:27001 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:27001 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:665 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:777 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:785 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:1990 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:962 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:4132 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:1490 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:1377 =&gt; Operation now in progress&#10;CONN (11.4950s) TCP localhost &gt; 64.13.134.52:188 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:2628 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:943 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:439 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:16959 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:660 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:469 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:77 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:853 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:27000 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:795 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:1000 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:647 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:7001 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:1470 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:865 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:382 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:150 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:1457 =&gt; Operation now in progress&#10;CONN (11.4960s) TCP localhost &gt; 64.13.134.52:675 =&gt; Operation now in progress&#10;CONN (11.4970s) TCP localhost &gt; 64.13.134.52:2026 =&gt; Operation now in progress&#10;CONN (11.4970s) TCP localhost &gt; 64.13.134.52:136 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:2026 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:675 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:1457 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:150 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:382 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:865 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:1470 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:7001 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:647 =&gt; Operation now in progress&#10;CONN (11.8560s) TCP localhost &gt; 64.13.134.52:1000 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:795 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:27000 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:853 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:77 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:469 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:660 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:16959 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:439 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:943 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:2628 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:188 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:1377 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:1490 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:4132 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:962 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:1990 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:785 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:777 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:665 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:27001 =&gt; Operation now in progress&#10;CONN (11.8570s) TCP localhost &gt; 64.13.134.52:2241 =&gt; Operation now in progress&#10;CONN (12.2140s) TCP localhost &gt; 64.13.134.52:2241 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:2603 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:32786 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:1668 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:1499 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:3141 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:721 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:872 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:1347 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:735 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:919 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:450 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:15126 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:497 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:460 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:944 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:1763 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:2033 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:402 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:838 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:253 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:344 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:211 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:4559 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:680 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:158 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:587 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:685 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:991 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:118 =&gt; Operation now in progress&#10;CONN (12.2150s) TCP localhost &gt; 64.13.134.52:1003 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:113 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:721 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:3141 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:1499 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:1668 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:32786 =&gt; Operation now in progress&#10;CONN (12.5720s) TCP localhost &gt; 64.13.134.52:2603 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:4559 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:211 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:344 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:253 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:838 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:402 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:2033 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:1763 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:944 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:460 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:497 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:15126 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:450 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:919 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:735 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:1347 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:872 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:1003 =&gt; Operation now in progress&#10;CONN (12.5730s) TCP localhost &gt; 64.13.134.52:118 =&gt; Operation now in progress&#10;CONN (12.5740s) TCP localhost &gt; 64.13.134.52:991 =&gt; Operation now in progress&#10;CONN (12.5740s) TCP localhost &gt; 64.13.134.52:685 =&gt; Operation now in progress&#10;CONN (12.5740s) TCP localhost &gt; 64.13.134.52:587 =&gt; Operation now in progress&#10;CONN (12.5740s) TCP localhost &gt; 64.13.134.52:158 =&gt; Operation now in progress&#10;CONN (12.5740s) TCP localhost &gt; 64.13.134.52:680 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:2241 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:3372 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:461 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:923 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:1518 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:221 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:656 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:613 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:2004 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:3531 =&gt; Operation now in progress&#10;CONN (12.7750s) TCP localhost &gt; 64.13.134.52:431 =&gt; Operation now in progress&#10;CONN (12.8930s) TCP localhost &gt; 64.13.134.52:721 =&gt; Operation now in progress&#10;CONN (12.8930s) TCP localhost &gt; 64.13.134.52:32786 =&gt; Operation now in progress&#10;CONN (12.8930s) TCP localhost &gt; 64.13.134.52:1668 =&gt; Operation now in progress&#10;CONN (12.8930s) TCP localhost &gt; 64.13.134.52:1499 =&gt; Operation now in progress&#10;CONN (12.8930s) TCP localhost &gt; 64.13.134.52:3141 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:4559 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:2603 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:253 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:344 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:211 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:944 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:1763 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:2033 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:402 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:838 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:1347 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:735 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:919 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:450 =&gt; Operation now in progress&#10;CONN (12.8940s) TCP localhost &gt; 64.13.134.52:15126 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:497 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:460 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:685 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:991 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:118 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:1003 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:872 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:680 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:158 =&gt; Operation now in progress&#10;CONN (12.8950s) TCP localhost &gt; 64.13.134.52:587 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:431 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:3531 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:2004 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:613 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:656 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:221 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:1518 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:923 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:461 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:3372 =&gt; Operation now in progress&#10;CONN (13.0950s) TCP localhost &gt; 64.13.134.52:645 =&gt; Operation now in progress&#10;CONN (13.2120s) TCP localhost &gt; 64.13.134.52:1442 =&gt; Operation now in progress&#10;CONN (13.2120s) TCP localhost &gt; 64.13.134.52:487 =&gt; Operation now in progress&#10;CONN (13.2120s) TCP localhost &gt; 64.13.134.52:528 =&gt; Operation now in progress&#10;CONN (13.2120s) TCP localhost &gt; 64.13.134.52:711 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:238 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:1015 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:997 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:583 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:336 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:193 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:599 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:1389 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:536 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:2010 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:770 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:887 =&gt; Operation now in progress&#10;CONN (13.2130s) TCP localhost &gt; 64.13.134.52:9051 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:6002 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:1025 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:1438 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:984 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:49400 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:564 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:32772 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:485 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:298 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:143 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:861 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:824 =&gt; Operation now in progress&#10;CONN (13.2140s) TCP localhost &gt; 64.13.134.52:1432 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:431 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:3531 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:656 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:613 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:2004 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:461 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:923 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:1518 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:221 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:645 =&gt; Operation now in progress&#10;CONN (13.4150s) TCP localhost &gt; 64.13.134.52:3372 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:1432 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:824 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:861 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:143 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:298 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:485 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:32772 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:564 =&gt; Operation now in progress&#10;CONN (13.5350s) TCP localhost &gt; 64.13.134.52:49400 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:984 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:1438 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:1025 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:6002 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:9051 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:887 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:770 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:2010 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:536 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:1389 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:599 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:193 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:336 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:583 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:997 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:1015 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:238 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:711 =&gt; Operation now in progress&#10;CONN (13.5360s) TCP localhost &gt; 64.13.134.52:528 =&gt; Operation now in progress&#10;CONN (13.5370s) TCP localhost &gt; 64.13.134.52:487 =&gt; Operation now in progress&#10;CONN (13.5370s) TCP localhost &gt; 64.13.134.52:1442 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:988 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:257 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:1084 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:292 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:15151 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:479 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:645 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:381 =&gt; Operation now in progress&#10;CONN (13.7360s) TCP localhost &gt; 64.13.134.52:745 =&gt; Operation now in progress&#10;CONN (13.7370s) TCP localhost &gt; 64.13.134.52:442 =&gt; Operation now in progress&#10;CONN (13.7370s) TCP localhost &gt; 64.13.134.52:821 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:1432 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:824 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:861 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:143 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:298 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:485 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:32772 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:564 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:49400 =&gt; Operation now in progress&#10;CONN (13.8560s) TCP localhost &gt; 64.13.134.52:984 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:1438 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:1025 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:6002 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:9051 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:887 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:770 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:2010 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:536 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:1389 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:599 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:336 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:193 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:583 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:997 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:1015 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:238 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:711 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:528 =&gt; Operation now in progress&#10;CONN (13.8570s) TCP localhost &gt; 64.13.134.52:487 =&gt; Operation now in progress&#10;CONN (13.8580s) TCP localhost &gt; 64.13.134.52:1442 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:988 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:257 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:1084 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:292 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:479 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:15151 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:62 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:381 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:745 =&gt; Operation now in progress&#10;CONN (14.0550s) TCP localhost &gt; 64.13.134.52:442 =&gt; Operation now in progress&#10;CONN (14.0560s) TCP localhost &gt; 64.13.134.52:821 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:934 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:5803 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:1399 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:37 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:5530 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:1357 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:1351 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:375 =&gt; Operation now in progress&#10;CONN (14.1750s) TCP localhost &gt; 64.13.134.52:276 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:8082 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:234 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:305 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:1473 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:8443 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:618 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:5680 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:5714 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:32 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:834 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:5303 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:452 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:367 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:440 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:615 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:153 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:884 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:395 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:5050 =&gt; Operation now in progress&#10;CONN (14.1760s) TCP localhost &gt; 64.13.134.52:27374 =&gt; Operation now in progress&#10;CONN (14.1770s) TCP localhost &gt; 64.13.134.52:201 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:988 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:257 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:1084 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:292 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:15151 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:479 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:62 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:381 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:745 =&gt; Operation now in progress&#10;CONN (14.3750s) TCP localhost &gt; 64.13.134.52:442 =&gt; Operation now in progress&#10;CONN (14.3760s) TCP localhost &gt; 64.13.134.52:821 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:934 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:5803 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:1399 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:37 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:5530 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:1351 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:1357 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:276 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:375 =&gt; Operation now in progress&#10;CONN (14.4950s) TCP localhost &gt; 64.13.134.52:8082 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:234 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:305 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:1473 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:8443 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:618 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:5680 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:5714 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:32 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:834 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:5303 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:452 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:367 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:440 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:615 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:153 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:884 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:395 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:5050 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:27374 =&gt; Operation now in progress&#10;CONN (14.4960s) TCP localhost &gt; 64.13.134.52:201 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:424 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:332 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:119 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:1991 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:286 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:1369 =&gt; Operation now in progress&#10;CONN (14.6960s) TCP localhost &gt; 64.13.134.52:62 =&gt; Operation now in progress&#10;CONN (14.6970s) TCP localhost &gt; 64.13.134.52:815 =&gt; Operation now in progress&#10;CONN (14.6970s) TCP localhost &gt; 64.13.134.52:236 =&gt; Operation now in progress&#10;CONN (14.6970s) TCP localhost &gt; 64.13.134.52:876 =&gt; Operation now in progress&#10;CONN (14.6970s) TCP localhost &gt; 64.13.134.52:593 =&gt; Operation now in progress&#10;CONN (14.8160s) TCP localhost &gt; 64.13.134.52:934 =&gt; Operation now in progress&#10;CONN (14.8160s) TCP localhost &gt; 64.13.134.52:1399 =&gt; Operation now in progress&#10;CONN (14.8160s) TCP localhost &gt; 64.13.134.52:5803 =&gt; Operation now in progress&#10;CONN (14.8160s) TCP localhost &gt; 64.13.134.52:1357 =&gt; Operation now in progress&#10;CONN (14.8160s) TCP localhost &gt; 64.13.134.52:1351 =&gt; Operation now in progress&#10;CONN (14.8160s) TCP localhost &gt; 64.13.134.52:5530 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:37 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:1473 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:305 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:234 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:8082 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:375 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:276 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:5303 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:834 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:32 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:5714 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:5680 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:618 =&gt; Operation now in progress&#10;CONN (14.8170s) TCP localhost &gt; 64.13.134.52:8443 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:201 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:27374 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:5050 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:395 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:884 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:153 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:615 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:440 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:367 =&gt; Operation now in progress&#10;CONN (14.8180s) TCP localhost &gt; 64.13.134.52:452 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:424 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:332 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:119 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:1991 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:286 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:1369 =&gt; Operation now in progress&#10;CONN (15.0150s) TCP localhost &gt; 64.13.134.52:1549 =&gt; Operation now in progress&#10;CONN (15.0160s) TCP localhost &gt; 64.13.134.52:236 =&gt; Operation now in progress&#10;CONN (15.0160s) TCP localhost &gt; 64.13.134.52:815 =&gt; Operation now in progress&#10;CONN (15.0160s) TCP localhost &gt; 64.13.134.52:593 =&gt; Operation now in progress&#10;CONN (15.0160s) TCP localhost &gt; 64.13.134.52:876 =&gt; Operation now in progress&#10;CONN (15.1350s) TCP localhost &gt; 64.13.134.52:61439 =&gt; Operation now in progress&#10;CONN (15.1350s) TCP localhost &gt; 64.13.134.52:67 =&gt; Operation now in progress&#10;CONN (15.1350s) TCP localhost &gt; 64.13.134.52:8080 =&gt; Operation now in progress&#10;CONN (15.1350s) TCP localhost &gt; 64.13.134.52:1476 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:206 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:639 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:807 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:245 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:995 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:996 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:899 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:34 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:856 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:6145 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:563 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:8770 =&gt; Operation now in progress&#10;CONN (15.1360s) TCP localhost &gt; 64.13.134.52:915 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:13702 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:9106 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:2501 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:374 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:444 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:569 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:642 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:6111 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:833 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:376 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:361 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:7005 =&gt; Operation now in progress&#10;CONN (15.1370s) TCP localhost &gt; 64.13.134.52:643 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:424 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:332 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:119 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:1991 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:286 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:1369 =&gt; Operation now in progress&#10;CONN (15.3350s) TCP localhost &gt; 64.13.134.52:1549 =&gt; Operation now in progress&#10;CONN (15.3360s) TCP localhost &gt; 64.13.134.52:236 =&gt; Operation now in progress&#10;CONN (15.3360s) TCP localhost &gt; 64.13.134.52:815 =&gt; Operation now in progress&#10;CONN (15.3360s) TCP localhost &gt; 64.13.134.52:876 =&gt; Operation now in progress&#10;CONN (15.3360s) TCP localhost &gt; 64.13.134.52:593 =&gt; Operation now in progress&#10;CONN (15.4550s) TCP localhost &gt; 64.13.134.52:61439 =&gt; Operation now in progress&#10;CONN (15.4550s) TCP localhost &gt; 64.13.134.52:67 =&gt; Operation now in progress&#10;CONN (15.4550s) TCP localhost &gt; 64.13.134.52:8080 =&gt; Operation now in progress&#10;CONN (15.4550s) TCP localhost &gt; 64.13.134.52:1476 =&gt; Operation now in progress&#10;CONN (15.4550s) TCP localhost &gt; 64.13.134.52:206 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:639 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:807 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:995 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:245 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:996 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:856 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:34 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:899 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:6145 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:8770 =&gt; Operation now in progress&#10;CONN (15.4560s) TCP localhost &gt; 64.13.134.52:563 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:13702 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:915 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:2501 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:9106 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:569 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:444 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:374 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:6111 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:642 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:7005 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:361 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:376 =&gt; Operation now in progress&#10;CONN (15.4570s) TCP localhost &gt; 64.13.134.52:833 =&gt; Operation now in progress&#10;CONN (15.4580s) TCP localhost &gt; 64.13.134.52:643 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:54320 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:182 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:1024 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:966 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:2500 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:457 =&gt; Operation now in progress&#10;CONN (15.6560s) TCP localhost &gt; 64.13.134.52:1549 =&gt; Operation now in progress&#10;CONN (15.6570s) TCP localhost &gt; 64.13.134.52:310 =&gt; Operation now in progress&#10;CONN (15.6570s) TCP localhost &gt; 64.13.134.52:322 =&gt; Operation now in progress&#10;CONN (15.6570s) TCP localhost &gt; 64.13.134.52:816 =&gt; Operation now in progress&#10;CONN (15.6570s) TCP localhost &gt; 64.13.134.52:741 =&gt; Operation now in progress&#10;CONN (15.7760s) TCP localhost &gt; 64.13.134.52:61439 =&gt; Operation now in progress&#10;CONN (15.7760s) TCP localhost &gt; 64.13.134.52:67 =&gt; Operation now in progress&#10;CONN (15.7760s) TCP localhost &gt; 64.13.134.52:8080 =&gt; Operation now in progress&#10;CONN (15.7760s) TCP localhost &gt; 64.13.134.52:1476 =&gt; Operation now in progress&#10;CONN (15.7760s) TCP localhost &gt; 64.13.134.52:206 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:639 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:807 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:995 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:245 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:996 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:34 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:856 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:6145 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:899 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:563 =&gt; Operation now in progress&#10;CONN (15.7770s) TCP localhost &gt; 64.13.134.52:8770 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:915 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:13702 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:9106 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:2501 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:444 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:569 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:6111 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:374 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:642 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:361 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:7005 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:833 =&gt; Operation now in progress&#10;CONN (15.7780s) TCP localhost &gt; 64.13.134.52:376 =&gt; Operation now in progress&#10;CONN (15.7790s) TCP localhost &gt; 64.13.134.52:643 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:457 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:2500 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:966 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:1024 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:182 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:54320 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:741 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:816 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:322 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:310 =&gt; Operation now in progress&#10;CONN (15.9770s) TCP localhost &gt; 64.13.134.52:488 =&gt; Operation now in progress&#10;CONN (16.0950s) TCP localhost &gt; 64.13.134.52:75 =&gt; Operation now in progress&#10;CONN (16.0950s) TCP localhost &gt; 64.13.134.52:847 =&gt; Operation now in progress&#10;CONN (16.0950s) TCP localhost &gt; 64.13.134.52:377 =&gt; Operation now in progress&#10;CONN (16.0950s) TCP localhost &gt; 64.13.134.52:1487 =&gt; Operation now in progress&#10;CONN (16.0950s) TCP localhost &gt; 64.13.134.52:1414 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:325 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:739 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:264 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:852 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:2301 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:208 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:9152 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:6142 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:670 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:27007 =&gt; Operation now in progress&#10;CONN (16.0960s) TCP localhost &gt; 64.13.134.52:894 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:9090 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:5405 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:99 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:1532 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:6141 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:5555 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:22305 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:152 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:27665 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:295 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:186 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:5011 =&gt; Operation now in progress&#10;CONN (16.0970s) TCP localhost &gt; 64.13.134.52:340 =&gt; Operation now in progress&#10;CONN (16.0980s) TCP localhost &gt; 64.13.134.52:672 =&gt; Operation now in progress&#10;CONN (16.2950s) TCP localhost &gt; 64.13.134.52:457 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:2500 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:966 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:1024 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:182 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:54320 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:741 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:816 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:322 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:310 =&gt; Operation now in progress&#10;CONN (16.2960s) TCP localhost &gt; 64.13.134.52:488 =&gt; Operation now in progress&#10;CONN (16.4150s) TCP localhost &gt; 64.13.134.52:75 =&gt; Operation now in progress&#10;CONN (16.4150s) TCP localhost &gt; 64.13.134.52:847 =&gt; Operation now in progress&#10;CONN (16.4150s) TCP localhost &gt; 64.13.134.52:377 =&gt; Operation now in progress&#10;CONN (16.4150s) TCP localhost &gt; 64.13.134.52:1487 =&gt; Operation now in progress&#10;CONN (16.4150s) TCP localhost &gt; 64.13.134.52:1414 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:325 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:739 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:264 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:852 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:2301 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:208 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:9152 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:6142 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:670 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:27007 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:894 =&gt; Operation now in progress&#10;CONN (16.4160s) TCP localhost &gt; 64.13.134.52:9090 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:5405 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:99 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:1532 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:6141 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:5555 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:22305 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:152 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:27665 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:295 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:186 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:5011 =&gt; Operation now in progress&#10;CONN (16.4170s) TCP localhost &gt; 64.13.134.52:340 =&gt; Operation now in progress&#10;CONN (16.4180s) TCP localhost &gt; 64.13.134.52:672 =&gt; Operation now in progress&#10;CONN (16.6160s) TCP localhost &gt; 64.13.134.52:4987 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:2022 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:6881 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:1010 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:1406 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:280 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:495 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:954 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:550 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:1393 =&gt; Operation now in progress&#10;CONN (16.6170s) TCP localhost &gt; 64.13.134.52:488 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:1414 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:1487 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:377 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:847 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:75 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:739 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:325 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:264 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:852 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:2301 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:208 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:9152 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:6142 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:670 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:27007 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:894 =&gt; Operation now in progress&#10;CONN (16.7370s) TCP localhost &gt; 64.13.134.52:9090 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:5405 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:99 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:1532 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:6141 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:5555 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:22305 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:152 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:27665 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:295 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:186 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:5011 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:340 =&gt; Operation now in progress&#10;CONN (16.7380s) TCP localhost &gt; 64.13.134.52:672 =&gt; Operation now in progress&#10;CONN (16.9360s) TCP localhost &gt; 64.13.134.52:4987 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:1010 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:6881 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:2022 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:280 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:1406 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:550 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:954 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:495 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:1393 =&gt; Operation now in progress&#10;CONN (16.9370s) TCP localhost &gt; 64.13.134.52:3456 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:407 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:1373 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:948 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:189 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:974 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:6701 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:290 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:5432 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:161 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:512 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:775 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:1475 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:9 =&gt; Operation now in progress&#10;CONN (17.0560s) TCP localhost &gt; 64.13.134.52:191 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:521 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:32775 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:44443 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:666 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:416 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:2108 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:459 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:870 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:2307 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:909 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:2019 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:638 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:194 =&gt; Operation now in progress&#10;CONN (17.0570s) TCP localhost &gt; 64.13.134.52:8081 =&gt; Operation now in progress&#10;CONN (17.0580s) TCP localhost &gt; 64.13.134.52:413 =&gt; Operation now in progress&#10;CONN (17.0580s) TCP localhost &gt; 64.13.134.52:428 =&gt; Operation now in progress&#10;CONN (17.2550s) TCP localhost &gt; 64.13.134.52:4987 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:1010 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:2022 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:6881 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:1406 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:280 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:954 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:550 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:1393 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:495 =&gt; Operation now in progress&#10;CONN (17.2560s) TCP localhost &gt; 64.13.134.52:3456 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:407 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:1373 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:974 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:189 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:948 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:290 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:6701 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:512 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:161 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:5432 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:191 =&gt; Operation now in progress&#10;CONN (17.3760s) TCP localhost &gt; 64.13.134.52:9 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:1475 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:775 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:44443 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:32775 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:521 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:2108 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:416 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:666 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:2307 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:870 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:459 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:638 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:2019 =&gt; Operation now in progress&#10;CONN (17.3770s) TCP localhost &gt; 64.13.134.52:909 =&gt; Operation now in progress&#10;CONN (17.3780s) TCP localhost &gt; 64.13.134.52:8081 =&gt; Operation now in progress&#10;CONN (17.3780s) TCP localhost &gt; 64.13.134.52:194 =&gt; Operation now in progress&#10;CONN (17.3780s) TCP localhost &gt; 64.13.134.52:428 =&gt; Operation now in progress&#10;CONN (17.3780s) TCP localhost &gt; 64.13.134.52:413 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:237 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:6669 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:410 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:384 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:1398 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:515 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:761 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:2044 =&gt; Operation now in progress&#10;CONN (17.5760s) TCP localhost &gt; 64.13.134.52:441 =&gt; Operation now in progress&#10;CONN (17.5770s) TCP localhost &gt; 64.13.134.52:566 =&gt; Operation now in progress&#10;CONN (17.5770s) TCP localhost &gt; 64.13.134.52:3456 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:407 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:1373 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:974 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:948 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:189 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:6701 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:290 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:161 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:512 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:191 =&gt; Operation now in progress&#10;CONN (17.6970s) TCP localhost &gt; 64.13.134.52:5432 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:775 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:1475 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:9 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:521 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:32775 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:44443 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:666 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:416 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:2108 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:459 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:870 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:2307 =&gt; Operation now in progress&#10;CONN (17.6980s) TCP localhost &gt; 64.13.134.52:909 =&gt; Operation now in progress&#10;CONN (17.6990s) TCP localhost &gt; 64.13.134.52:2019 =&gt; Operation now in progress&#10;CONN (17.6990s) TCP localhost &gt; 64.13.134.52:638 =&gt; Operation now in progress&#10;CONN (17.6990s) TCP localhost &gt; 64.13.134.52:428 =&gt; Operation now in progress&#10;CONN (17.6990s) TCP localhost &gt; 64.13.134.52:194 =&gt; Operation now in progress&#10;CONN (17.6990s) TCP localhost &gt; 64.13.134.52:8081 =&gt; Operation now in progress&#10;CONN (17.6990s) TCP localhost &gt; 64.13.134.52:413 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:113 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:6669 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:384 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:410 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:515 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:1398 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:2044 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:761 =&gt; Operation now in progress&#10;CONN (17.8970s) TCP localhost &gt; 64.13.134.52:441 =&gt; Operation now in progress&#10;CONN (17.8980s) TCP localhost &gt; 64.13.134.52:566 =&gt; Operation now in progress&#10;CONN (17.8980s) TCP localhost &gt; 64.13.134.52:237 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:9103 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:9107 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:303 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:333 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:871 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:1402 =&gt; Operation now in progress&#10;CONN (18.0180s) TCP localhost &gt; 64.13.134.52:849 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:641 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:232 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:4333 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:5301 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:146 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:371 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:829 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:105 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:706 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:520 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:299 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:588 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:1456 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:895 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:1404 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:1989 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:863 =&gt; Operation now in progress&#10;CONN (18.0190s) TCP localhost &gt; 64.13.134.52:449 =&gt; Operation now in progress&#10;CONN (18.0200s) TCP localhost &gt; 64.13.134.52:117 =&gt; Operation now in progress&#10;CONN (18.0200s) TCP localhost &gt; 64.13.134.52:10000 =&gt; Operation now in progress&#10;CONN (18.0200s) TCP localhost &gt; 64.13.134.52:933 =&gt; Operation now in progress&#10;CONN (18.0200s) TCP localhost &gt; 64.13.134.52:185 =&gt; Operation now in progress&#10;CONN (18.0200s) TCP localhost &gt; 64.13.134.52:219 =&gt; Operation now in progress&#10;CONN (18.0970s) TCP localhost &gt; 64.13.134.52:857 =&gt; Operation now in progress&#10;CONN (18.0970s) TCP localhost &gt; 64.13.134.52:749 =&gt; Operation now in progress&#10;CONN (18.0970s) TCP localhost &gt; 64.13.134.52:624 =&gt; Operation now in progress&#10;CONN (18.0970s) TCP localhost &gt; 64.13.134.52:510 =&gt; Operation now in progress&#10;CONN (18.0970s) TCP localhost &gt; 64.13.134.52:4008 =&gt; Operation now in progress&#10;CONN (18.0970s) TCP localhost &gt; 64.13.134.52:70 =&gt; Operation now in progress&#10;CONN (18.0980s) TCP localhost &gt; 64.13.134.52:8 =&gt; Operation now in progress&#10;CONN (18.0980s) TCP localhost &gt; 64.13.134.52:369 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:6669 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:384 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:410 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:515 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:1398 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:2044 =&gt; Operation now in progress&#10;CONN (18.1880s) TCP localhost &gt; 64.13.134.52:761 =&gt; Operation now in progress&#10;CONN (18.1890s) TCP localhost &gt; 64.13.134.52:441 =&gt; Operation now in progress&#10;CONN (18.1890s) TCP localhost &gt; 64.13.134.52:566 =&gt; Operation now in progress&#10;CONN (18.1890s) TCP localhost &gt; 64.13.134.52:237 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:219 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:185 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:933 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:10000 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:117 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:449 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:863 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:1989 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:1404 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:895 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:1456 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:588 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:299 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:520 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:706 =&gt; Operation now in progress&#10;CONN (18.2990s) TCP localhost &gt; 64.13.134.52:105 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:829 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:371 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:146 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:5301 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:4333 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:232 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:641 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:849 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:1402 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:871 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:333 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:303 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:9107 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:9103 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:529 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:346 =&gt; Operation now in progress&#10;CONN (18.3000s) TCP localhost &gt; 64.13.134.52:598 =&gt; Operation now in progress&#10;CONN (18.3680s) TCP localhost &gt; 64.13.134.52:857 =&gt; Operation now in progress&#10;CONN (18.3690s) TCP localhost &gt; 64.13.134.52:624 =&gt; Operation now in progress&#10;CONN (18.3690s) TCP localhost &gt; 64.13.134.52:749 =&gt; Operation now in progress&#10;CONN (18.3690s) TCP localhost &gt; 64.13.134.52:8 =&gt; Operation now in progress&#10;CONN (18.3690s) TCP localhost &gt; 64.13.134.52:4008 =&gt; Operation now in progress&#10;CONN (18.3690s) TCP localhost &gt; 64.13.134.52:510 =&gt; Operation now in progress&#10;CONN (18.3690s) TCP localhost &gt; 64.13.134.52:369 =&gt; Operation now in progress&#10;CONN (18.4590s) TCP localhost &gt; 64.13.134.52:942 =&gt; Operation now in progress&#10;CONN (18.4590s) TCP localhost &gt; 64.13.134.52:448 =&gt; Operation now in progress&#10;CONN (18.4590s) TCP localhost &gt; 64.13.134.52:1462 =&gt; Operation now in progress&#10;CONN (18.4590s) TCP localhost &gt; 64.13.134.52:214 =&gt; Operation now in progress&#10;CONN (18.4590s) TCP localhost &gt; 64.13.134.52:82 =&gt; Operation now in progress&#10;CONN (18.4590s) TCP localhost &gt; 64.13.134.52:399 =&gt; Operation now in progress&#10;CONN (18.4600s) TCP localhost &gt; 64.13.134.52:658 =&gt; Operation now in progress&#10;CONN (18.4600s) TCP localhost &gt; 64.13.134.52:972 =&gt; Operation now in progress&#10;CONN (18.4600s) TCP localhost &gt; 64.13.134.52:1514 =&gt; Operation now in progress&#10;CONN (18.4600s) TCP localhost &gt; 64.13.134.52:611 =&gt; Operation now in progress&#10;CONN (18.5700s) TCP localhost &gt; 64.13.134.52:219 =&gt; Operation now in progress&#10;CONN (18.5700s) TCP localhost &gt; 64.13.134.52:449 =&gt; Operation now in progress&#10;CONN (18.5700s) TCP localhost &gt; 64.13.134.52:117 =&gt; Operation now in progress&#10;CONN (18.5700s) TCP localhost &gt; 64.13.134.52:10000 =&gt; Operation now in progress&#10;CONN (18.5700s) TCP localhost &gt; 64.13.134.52:933 =&gt; Operation now in progress&#10;CONN (18.5700s) TCP localhost &gt; 64.13.134.52:185 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:299 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:588 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:1456 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:895 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:1404 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:1989 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:863 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:4333 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:5301 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:146 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:371 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:829 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:105 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:706 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:520 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:346 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:529 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:9103 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:9107 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:303 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:333 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:871 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:1402 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:849 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:641 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:232 =&gt; Operation now in progress&#10;CONN (18.5710s) TCP localhost &gt; 64.13.134.52:598 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:369 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:510 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:4008 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:8 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:749 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:624 =&gt; Operation now in progress&#10;CONN (18.6440s) TCP localhost &gt; 64.13.134.52:857 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:611 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:1514 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:972 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:658 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:399 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:82 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:214 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:1462 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:448 =&gt; Operation now in progress&#10;CONN (18.7350s) TCP localhost &gt; 64.13.134.52:942 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:598 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:529 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:346 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:196 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:612 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:6009 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:817 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:3985 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:1548 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:766 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:2030 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:106 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:2034 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:783 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:2809 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:582 =&gt; Operation now in progress&#10;CONN (18.8440s) TCP localhost &gt; 64.13.134.52:1522 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:793 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:1367 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:1270 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:1997 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:366 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:1241 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:423 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:5191 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:5500 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:3900 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:348 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:129 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:1019 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:26208 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:45 =&gt; Operation now in progress&#10;CONN (18.8450s) TCP localhost &gt; 64.13.134.52:1551 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:173 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:724 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:1762 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:758 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:225 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:940 =&gt; Operation now in progress&#10;CONN (18.9160s) TCP localhost &gt; 64.13.134.52:964 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:942 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:448 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:1462 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:214 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:82 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:399 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:658 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:972 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:1514 =&gt; Operation now in progress&#10;CONN (19.0060s) TCP localhost &gt; 64.13.134.52:611 =&gt; Operation now in progress&#10;CONN (19.1140s) TCP localhost &gt; 64.13.134.52:901 =&gt; Operation now in progress&#10;CONN (19.1140s) TCP localhost &gt; 64.13.134.52:196 =&gt; Operation now in progress&#10;CONN (19.1140s) TCP localhost &gt; 64.13.134.52:22370 =&gt; Operation now in progress&#10;CONN (19.1140s) TCP localhost &gt; 64.13.134.52:32771 =&gt; Operation now in progress&#10;CONN (19.1140s) TCP localhost &gt; 64.13.134.52:2030 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:766 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:1548 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:3985 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:817 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:6009 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:612 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:423 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:1241 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:366 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:1997 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:1270 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:1367 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:793 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:1522 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:582 =&gt; Operation now in progress&#10;CONN (19.1150s) TCP localhost &gt; 64.13.134.52:2809 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:783 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:2034 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:106 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:1551 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:45 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:26208 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:1019 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:129 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:348 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:3900 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:5500 =&gt; Operation now in progress&#10;CONN (19.1160s) TCP localhost &gt; 64.13.134.52:5191 =&gt; Operation now in progress&#10;CONN (19.1860s) TCP localhost &gt; 64.13.134.52:173 =&gt; Operation now in progress&#10;CONN (19.1860s) TCP localhost &gt; 64.13.134.52:1762 =&gt; Operation now in progress&#10;CONN (19.1860s) TCP localhost &gt; 64.13.134.52:724 =&gt; Operation now in progress&#10;CONN (19.1860s) TCP localhost &gt; 64.13.134.52:964 =&gt; Operation now in progress&#10;CONN (19.1860s) TCP localhost &gt; 64.13.134.52:940 =&gt; Operation now in progress&#10;CONN (19.1870s) TCP localhost &gt; 64.13.134.52:225 =&gt; Operation now in progress&#10;CONN (19.1870s) TCP localhost &gt; 64.13.134.52:758 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:5305 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:31416 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:7004 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:338 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:55 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:4321 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:500 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:1033 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:1032 =&gt; Operation now in progress&#10;CONN (19.2780s) TCP localhost &gt; 64.13.134.52:5801 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:5191 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:5500 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:3900 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:348 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:129 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:1019 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:26208 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:45 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:1551 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:106 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:2034 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:783 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:2809 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:582 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:1522 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:793 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:1367 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:1270 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:1997 =&gt; Operation now in progress&#10;CONN (19.3890s) TCP localhost &gt; 64.13.134.52:366 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:1241 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:423 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:612 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:6009 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:817 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:3985 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:1548 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:766 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:2030 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:32771 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:22370 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:196 =&gt; Operation now in progress&#10;CONN (19.3900s) TCP localhost &gt; 64.13.134.52:901 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:758 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:225 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:940 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:964 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:724 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:1762 =&gt; Operation now in progress&#10;CONN (19.4580s) TCP localhost &gt; 64.13.134.52:173 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:5801 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:1032 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:1033 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:500 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:4321 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:55 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:338 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:7004 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:31416 =&gt; Operation now in progress&#10;CONN (19.5510s) TCP localhost &gt; 64.13.134.52:5305 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:901 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:22370 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:32771 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:696 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:8007 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:4133 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:13715 =&gt; Operation now in progress&#10;CONN (19.6630s) TCP localhost &gt; 64.13.134.52:5903 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:38292 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:112 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1540 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1356 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:4998 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1496 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:818 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:772 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1501 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:123 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:32770 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:22273 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:477 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:205 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1050 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1755 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:989 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:1468 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:2600 =&gt; Operation now in progress&#10;CONN (19.6640s) TCP localhost &gt; 64.13.134.52:733 =&gt; Operation now in progress&#10;CONN (19.6650s) TCP localhost &gt; 64.13.134.52:73 =&gt; Operation now in progress&#10;CONN (19.6650s) TCP localhost &gt; 64.13.134.52:978 =&gt; Operation now in progress&#10;CONN (19.6650s) TCP localhost &gt; 64.13.134.52:717 =&gt; Operation now in progress&#10;CONN (19.6650s) TCP localhost &gt; 64.13.134.52:6 =&gt; Operation now in progress&#10;CONN (19.6650s) TCP localhost &gt; 64.13.134.52:946 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:952 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:635 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:3986 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:275 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:654 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:3632 =&gt; Operation now in progress&#10;CONN (19.7320s) TCP localhost &gt; 64.13.134.52:347 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:5305 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:31416 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:7004 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:338 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:55 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:4321 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:500 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:1033 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:1032 =&gt; Operation now in progress&#10;CONN (19.8240s) TCP localhost &gt; 64.13.134.52:5801 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:1540 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:112 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:38292 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:5903 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:13715 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:4133 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:8007 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:696 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:1994 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:1013 =&gt; Operation now in progress&#10;CONN (19.9350s) TCP localhost &gt; 64.13.134.52:723 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:1468 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:989 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:1755 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:1050 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:205 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:477 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:22273 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:32770 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:123 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:1501 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:772 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:818 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:1496 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:4998 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:1356 =&gt; Operation now in progress&#10;CONN (19.9360s) TCP localhost &gt; 64.13.134.52:946 =&gt; Operation now in progress&#10;CONN (19.9370s) TCP localhost &gt; 64.13.134.52:6 =&gt; Operation now in progress&#10;CONN (19.9370s) TCP localhost &gt; 64.13.134.52:717 =&gt; Operation now in progress&#10;CONN (19.9370s) TCP localhost &gt; 64.13.134.52:978 =&gt; Operation now in progress&#10;CONN (19.9370s) TCP localhost &gt; 64.13.134.52:73 =&gt; Operation now in progress&#10;CONN (19.9370s) TCP localhost &gt; 64.13.134.52:733 =&gt; Operation now in progress&#10;CONN (19.9370s) TCP localhost &gt; 64.13.134.52:2600 =&gt; Operation now in progress&#10;CONN (20.0020s) TCP localhost &gt; 64.13.134.52:952 =&gt; Operation now in progress&#10;CONN (20.0020s) TCP localhost &gt; 64.13.134.52:275 =&gt; Operation now in progress&#10;CONN (20.0020s) TCP localhost &gt; 64.13.134.52:3986 =&gt; Operation now in progress&#10;CONN (20.0020s) TCP localhost &gt; 64.13.134.52:635 =&gt; Operation now in progress&#10;CONN (20.0020s) TCP localhost &gt; 64.13.134.52:347 =&gt; Operation now in progress&#10;CONN (20.0030s) TCP localhost &gt; 64.13.134.52:3632 =&gt; Operation now in progress&#10;CONN (20.0030s) TCP localhost &gt; 64.13.134.52:654 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:144 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:115 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:17007 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:6001 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:421 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:5308 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:3049 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:65301 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:604 =&gt; Operation now in progress&#10;CONN (20.0950s) TCP localhost &gt; 64.13.134.52:503 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:123 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:32770 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:22273 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:477 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:205 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:1050 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:1755 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:989 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:1468 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:723 =&gt; Operation now in progress&#10;CONN (20.2060s) TCP localhost &gt; 64.13.134.52:1013 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:1994 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:696 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:8007 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:4133 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:13715 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:5903 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:38292 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:112 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:1540 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:717 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:6 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:946 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:1356 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:4998 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:1496 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:818 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:772 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:1501 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:2600 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:733 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:73 =&gt; Operation now in progress&#10;CONN (20.2070s) TCP localhost &gt; 64.13.134.52:978 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:654 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:3632 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:347 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:635 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:3986 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:275 =&gt; Operation now in progress&#10;CONN (20.2750s) TCP localhost &gt; 64.13.134.52:952 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:144 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:115 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:421 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:6001 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:17007 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:503 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:604 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:65301 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:3049 =&gt; Operation now in progress&#10;CONN (20.3660s) TCP localhost &gt; 64.13.134.52:5308 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1994 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1013 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:723 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:908 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1463 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:120 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:851 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1663 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:3457 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:5902 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:11371 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:986 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:575 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:102 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:7000 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:390 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:318 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:976 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1651 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:351 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:589 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:13712 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:762 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:662 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1434 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:2020 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:1662 =&gt; Operation now in progress&#10;CONN (20.4790s) TCP localhost &gt; 64.13.134.52:634 =&gt; Operation now in progress&#10;CONN (20.4800s) TCP localhost &gt; 64.13.134.52:567 =&gt; Operation now in progress&#10;CONN (20.4800s) TCP localhost &gt; 64.13.134.52:179 =&gt; Operation now in progress&#10;CONN (20.4800s) TCP localhost &gt; 64.13.134.52:18183 =&gt; Operation now in progress&#10;CONN (20.4800s) TCP localhost &gt; 64.13.134.52:350 =&gt; Operation now in progress&#10;CONN (20.4800s) TCP localhost &gt; 64.13.134.52:6147 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:94 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:1986 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:998 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:176 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:5232 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:1486 =&gt; Operation now in progress&#10;CONN (20.5470s) TCP localhost &gt; 64.13.134.52:100 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:5308 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:3049 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:65301 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:604 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:503 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:17007 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:6001 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:421 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:115 =&gt; Operation now in progress&#10;CONN (20.6400s) TCP localhost &gt; 64.13.134.52:144 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:854 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:120 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:1463 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:908 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:1008 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:1419 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:575 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:986 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:11371 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:5902 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:3457 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:1663 =&gt; Operation now in progress&#10;CONN (20.7510s) TCP localhost &gt; 64.13.134.52:851 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:762 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:13712 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:589 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:351 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:1651 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:976 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:318 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:390 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:7000 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:102 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:6147 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:350 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:18183 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:179 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:567 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:634 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:1662 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:2020 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:1434 =&gt; Operation now in progress&#10;CONN (20.7520s) TCP localhost &gt; 64.13.134.52:662 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:100 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:1486 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:5232 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:176 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:998 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:1986 =&gt; Operation now in progress&#10;CONN (20.8200s) TCP localhost &gt; 64.13.134.52:94 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:252 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:13 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:1431 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:1993 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:71 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:867 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:6400 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:18181 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:13783 =&gt; Operation now in progress&#10;CONN (20.9120s) TCP localhost &gt; 64.13.134.52:958 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1651 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:351 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:589 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:13712 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:762 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:851 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1663 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:3457 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:5902 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:11371 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:986 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:575 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1419 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1008 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:908 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1463 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:120 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:854 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:662 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1434 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:2020 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:1662 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:634 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:567 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:179 =&gt; Operation now in progress&#10;CONN (21.0220s) TCP localhost &gt; 64.13.134.52:18183 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:350 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:6147 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:102 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:7000 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:390 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:318 =&gt; Operation now in progress&#10;CONN (21.0230s) TCP localhost &gt; 64.13.134.52:976 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:100 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:1486 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:176 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:5232 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:94 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:1986 =&gt; Operation now in progress&#10;CONN (21.0900s) TCP localhost &gt; 64.13.134.52:998 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:958 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:13783 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:18181 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:6400 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:867 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:71 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:1993 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:1431 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:13 =&gt; Operation now in progress&#10;CONN (21.1830s) TCP localhost &gt; 64.13.134.52:252 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:854 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:1008 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:1419 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:1652 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:1112 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:1388 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:1031 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:231 =&gt; Operation now in progress&#10;CONN (21.2950s) TCP localhost &gt; 64.13.134.52:827 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:156 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:594 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:949 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:3005 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:650 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:8000 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:1482 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:1995 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:902 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:610 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:968 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:355 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:655 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:879 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:627 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:6222 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:1517 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:480 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:79 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:474 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:787 =&gt; Operation now in progress&#10;CONN (21.2960s) TCP localhost &gt; 64.13.134.52:1498 =&gt; Operation now in progress&#10;CONN (21.2970s) TCP localhost &gt; 64.13.134.52:216 =&gt; Operation now in progress&#10;CONN (21.2970s) TCP localhost &gt; 64.13.134.52:31337 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:1407 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:4672 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:16444 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:1381 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:1488 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:229 =&gt; Operation now in progress&#10;CONN (21.3620s) TCP localhost &gt; 64.13.134.52:3 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:958 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:18181 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:13783 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:71 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:867 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:6400 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:252 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:13 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:1431 =&gt; Operation now in progress&#10;CONN (21.4540s) TCP localhost &gt; 64.13.134.52:1993 =&gt; Operation now in progress&#10;CONN (21.5660s) TCP localhost &gt; 64.13.134.52:244 =&gt; Operation now in progress&#10;CONN (21.5660s) TCP localhost &gt; 64.13.134.52:1525 =&gt; Operation now in progress&#10;CONN (21.5660s) TCP localhost &gt; 64.13.134.52:590 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:231 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:1031 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:1388 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:1112 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:1652 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:8000 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:650 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:3005 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:949 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:594 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:156 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:827 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:6222 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:627 =&gt; Operation now in progress&#10;CONN (21.5670s) TCP localhost &gt; 64.13.134.52:879 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:655 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:355 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:968 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:610 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:902 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:1995 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:1482 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:31337 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:216 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:1498 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:787 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:474 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:79 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:480 =&gt; Operation now in progress&#10;CONN (21.5680s) TCP localhost &gt; 64.13.134.52:1517 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:3 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:229 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:1488 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:1381 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:16444 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:4672 =&gt; Operation now in progress&#10;CONN (21.6350s) TCP localhost &gt; 64.13.134.52:1407 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:352 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:518 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:1422 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:1492 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:22289 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:1502 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:4199 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:3397 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:19 =&gt; Operation now in progress&#10;CONN (21.7270s) TCP localhost &gt; 64.13.134.52:632 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:1388 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:1031 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:231 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:590 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:1525 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:244 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:156 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:594 =&gt; Operation now in progress&#10;CONN (21.8390s) TCP localhost &gt; 64.13.134.52:949 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:3005 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:650 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:8000 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:1652 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:1112 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:902 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:610 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:968 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:355 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:655 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:879 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:627 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:6222 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:827 =&gt; Operation now in progress&#10;CONN (21.8400s) TCP localhost &gt; 64.13.134.52:480 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:79 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:474 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:787 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:1498 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:216 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:31337 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:1482 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:1995 =&gt; Operation now in progress&#10;CONN (21.8410s) TCP localhost &gt; 64.13.134.52:1517 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:1407 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:4672 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:16444 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:1381 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:1488 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:229 =&gt; Operation now in progress&#10;CONN (21.9080s) TCP localhost &gt; 64.13.134.52:3 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:632 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:19 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:3397 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:4199 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:1502 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:22289 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:1492 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:1422 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:518 =&gt; Operation now in progress&#10;CONN (22.0000s) TCP localhost &gt; 64.13.134.52:352 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:244 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:1525 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:590 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:746 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:59 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:197 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:18187 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:1998 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:451 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:116 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:489 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:7008 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:969 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:5717 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:230 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:50000 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:705 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:1544 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:107 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:788 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:1001 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:2005 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:683 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:353 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:1469 =&gt; Operation now in progress&#10;CONN (22.1110s) TCP localhost &gt; 64.13.134.52:570 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:1437 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:798 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:578 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:481 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:227 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:420 =&gt; Operation now in progress&#10;CONN (22.1120s) TCP localhost &gt; 64.13.134.52:866 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:1401 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:246 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:212 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:357 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:1464 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:274 =&gt; Operation now in progress&#10;CONN (22.1790s) TCP localhost &gt; 64.13.134.52:2433 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:352 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:518 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:1422 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:1492 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:22289 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:1502 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:4199 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:3397 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:19 =&gt; Operation now in progress&#10;CONN (22.2710s) TCP localhost &gt; 64.13.134.52:632 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:866 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:420 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:227 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:481 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:578 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:798 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:1437 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:570 =&gt; Operation now in progress&#10;CONN (22.3830s) TCP localhost &gt; 64.13.134.52:1469 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:353 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:683 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:2005 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:1001 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:788 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:107 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:1544 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:705 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:50000 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:230 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:5717 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:969 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:7008 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:489 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:116 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:451 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:1998 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:18187 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:197 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:59 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:746 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:262 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:9100 =&gt; Operation now in progress&#10;CONN (22.3840s) TCP localhost &gt; 64.13.134.52:429 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:2433 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:274 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:1464 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:357 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:212 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:246 =&gt; Operation now in progress&#10;CONN (22.4510s) TCP localhost &gt; 64.13.134.52:1401 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:8076 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:552 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:2041 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:419 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:396 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:1526 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:5715 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:830 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:8009 =&gt; Operation now in progress&#10;CONN (22.5430s) TCP localhost &gt; 64.13.134.52:1403 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:353 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:1469 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:570 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:1437 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:798 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:578 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:481 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:227 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:420 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:866 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:451 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:116 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:489 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:7008 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:969 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:5717 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:230 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:50000 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:705 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:1544 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:107 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:788 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:1001 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:2005 =&gt; Operation now in progress&#10;CONN (22.6560s) TCP localhost &gt; 64.13.134.52:683 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:429 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:9100 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:262 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:746 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:59 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:197 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:18187 =&gt; Operation now in progress&#10;CONN (22.6570s) TCP localhost &gt; 64.13.134.52:1998 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:1401 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:246 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:212 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:357 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:1464 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:274 =&gt; Operation now in progress&#10;CONN (22.7240s) TCP localhost &gt; 64.13.134.52:2433 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:1403 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:8009 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:830 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:5715 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:1526 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:396 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:419 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:2041 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:552 =&gt; Operation now in progress&#10;CONN (22.8160s) TCP localhost &gt; 64.13.134.52:8076 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:262 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:9100 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:429 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:203 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:169 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:754 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:272 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:1413 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:171 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:1506 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:522 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:848 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:473 =&gt; Operation now in progress&#10;CONN (22.9280s) TCP localhost &gt; 64.13.134.52:6101 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:963 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:483 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:2430 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:768 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:993 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:98 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:326 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:111 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:889 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:160 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:747 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:701 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:13709 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:692 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:674 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:314 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:354 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:364 =&gt; Operation now in progress&#10;CONN (22.9290s) TCP localhost &gt; 64.13.134.52:913 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:311 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:794 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:606 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:5236 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:6544 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:813 =&gt; Operation now in progress&#10;CONN (22.9960s) TCP localhost &gt; 64.13.134.52:750 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:8076 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:552 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:2041 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:419 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:396 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:1526 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:5715 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:830 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:8009 =&gt; Operation now in progress&#10;CONN (23.0870s) TCP localhost &gt; 64.13.134.52:1403 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:4144 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:1680 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:169 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:203 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:159 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:171 =&gt; Operation now in progress&#10;CONN (23.1980s) TCP localhost &gt; 64.13.134.52:1413 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:272 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:754 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:6101 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:473 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:848 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:522 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:1506 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:768 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:2430 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:483 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:963 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:160 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:889 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:111 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:326 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:98 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:993 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:692 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:13709 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:701 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:747 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:314 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:674 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:913 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:364 =&gt; Operation now in progress&#10;CONN (23.1990s) TCP localhost &gt; 64.13.134.52:354 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:750 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:813 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:6544 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:5236 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:606 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:794 =&gt; Operation now in progress&#10;CONN (23.2670s) TCP localhost &gt; 64.13.134.52:311 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:113 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:1400 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:1485 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:1004 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:217 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:52 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:5901 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:317 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:764 =&gt; Operation now in progress&#10;CONN (23.3640s) TCP localhost &gt; 64.13.134.52:2032 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:473 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:6101 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:754 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:272 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:1413 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:171 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:159 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:203 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:169 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:1680 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:4144 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:993 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:98 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:326 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:111 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:889 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:160 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:963 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:483 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:2430 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:768 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:1506 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:522 =&gt; Operation now in progress&#10;CONN (23.4700s) TCP localhost &gt; 64.13.134.52:848 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:354 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:364 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:913 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:674 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:314 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:747 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:701 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:13709 =&gt; Operation now in progress&#10;CONN (23.4710s) TCP localhost &gt; 64.13.134.52:692 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:311 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:794 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:606 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:5236 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:6544 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:813 =&gt; Operation now in progress&#10;CONN (23.5390s) TCP localhost &gt; 64.13.134.52:750 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:61 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:6017 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:168 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:1374 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:1378 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:2008 =&gt; Operation now in progress&#10;CONN (23.5650s) TCP localhost &gt; 64.13.134.52:331 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:1400 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:317 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:5901 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:52 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:217 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:1004 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:1485 =&gt; Operation now in progress&#10;CONN (23.6200s) TCP localhost &gt; 64.13.134.52:2032 =&gt; Operation now in progress&#10;CONN (23.6210s) TCP localhost &gt; 64.13.134.52:764 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:4144 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:1680 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:159 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:261 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:337 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:387 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:7006 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:1027 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:154 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:65 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:72 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:2028 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:897 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:7200 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:251 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:1349 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:30 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:177 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:859 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:1505 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:13710 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:737 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:110 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:596 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:5003 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:688 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:4899 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:224 =&gt; Operation now in progress&#10;CONN (23.7280s) TCP localhost &gt; 64.13.134.52:4 =&gt; Operation now in progress&#10;CONN (23.7290s) TCP localhost &gt; 64.13.134.52:2638 =&gt; Operation now in progress&#10;CONN (23.7290s) TCP localhost &gt; 64.13.134.52:959 =&gt; Operation now in progress&#10;CONN (23.7290s) TCP localhost &gt; 64.13.134.52:544 =&gt; Operation now in progress&#10;CONN (23.7290s) TCP localhost &gt; 64.13.134.52:652 =&gt; Operation now in progress&#10;CONN (23.7950s) TCP localhost &gt; 64.13.134.52:6665 =&gt; Operation now in progress&#10;CONN (23.7950s) TCP localhost &gt; 64.13.134.52:10 =&gt; Operation now in progress&#10;CONN (23.7950s) TCP localhost &gt; 64.13.134.52:2045 =&gt; Operation now in progress&#10;CONN (23.7950s) TCP localhost &gt; 64.13.134.52:324 =&gt; Operation now in progress&#10;CONN (23.7950s) TCP localhost &gt; 64.13.134.52:368 =&gt; Operation now in progress&#10;CONN (23.7960s) TCP localhost &gt; 64.13.134.52:1396 =&gt; Operation now in progress&#10;CONN (23.7960s) TCP localhost &gt; 64.13.134.52:2601 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:331 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:2008 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:1378 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:1374 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:168 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:6017 =&gt; Operation now in progress&#10;CONN (23.8240s) TCP localhost &gt; 64.13.134.52:61 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:1485 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:1004 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:217 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:52 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:5901 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:317 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:1400 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:764 =&gt; Operation now in progress&#10;CONN (23.8760s) TCP localhost &gt; 64.13.134.52:2032 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:224 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:4899 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:688 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:5003 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:596 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:110 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:737 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:13710 =&gt; Operation now in progress&#10;CONN (23.9840s) TCP localhost &gt; 64.13.134.52:1505 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:859 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:177 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:30 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:1349 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:251 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:7200 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:897 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:2028 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:72 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:65 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:154 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:1027 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:7006 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:387 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:337 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:261 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:85 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:26 =&gt; Operation now in progress&#10;CONN (23.9850s) TCP localhost &gt; 64.13.134.52:5997 =&gt; Operation now in progress&#10;CONN (23.9860s) TCP localhost &gt; 64.13.134.52:652 =&gt; Operation now in progress&#10;CONN (23.9860s) TCP localhost &gt; 64.13.134.52:544 =&gt; Operation now in progress&#10;CONN (23.9860s) TCP localhost &gt; 64.13.134.52:959 =&gt; Operation now in progress&#10;CONN (23.9860s) TCP localhost &gt; 64.13.134.52:2638 =&gt; Operation now in progress&#10;CONN (23.9860s) TCP localhost &gt; 64.13.134.52:4 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:368 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:324 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:2045 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:10 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:6665 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:2601 =&gt; Operation now in progress&#10;CONN (24.0500s) TCP localhost &gt; 64.13.134.52:1396 =&gt; Operation now in progress&#10;CONN (24.0780s) TCP localhost &gt; 64.13.134.52:331 =&gt; Operation now in progress&#10;CONN (24.0780s) TCP localhost &gt; 64.13.134.52:1374 =&gt; Operation now in progress&#10;CONN (24.0780s) TCP localhost &gt; 64.13.134.52:1378 =&gt; Operation now in progress&#10;CONN (24.0780s) TCP localhost &gt; 64.13.134.52:2008 =&gt; Operation now in progress&#10;CONN (24.0790s) TCP localhost &gt; 64.13.134.52:61 =&gt; Operation now in progress&#10;CONN (24.0790s) TCP localhost &gt; 64.13.134.52:6017 =&gt; Operation now in progress&#10;CONN (24.0790s) TCP localhost &gt; 64.13.134.52:168 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:3025 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:64 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:259 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:3399 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:1385 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:5520 =&gt; Operation now in progress&#10;CONN (24.1300s) TCP localhost &gt; 64.13.134.52:3306 =&gt; Operation now in progress&#10;CONN (24.1310s) TCP localhost &gt; 64.13.134.52:6000 =&gt; Operation now in progress&#10;CONN (24.1310s) TCP localhost &gt; 64.13.134.52:1452 =&gt; Operation now in progress&#10;CONN (24.2380s) TCP localhost &gt; 64.13.134.52:224 =&gt; Operation now in progress&#10;CONN (24.2380s) TCP localhost &gt; 64.13.134.52:4899 =&gt; Operation now in progress&#10;CONN (24.2380s) TCP localhost &gt; 64.13.134.52:688 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:5003 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:596 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:110 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:737 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:1505 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:13710 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:859 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:177 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:30 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:1349 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:251 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:7200 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:897 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:2028 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:72 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:65 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:154 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:1027 =&gt; Operation now in progress&#10;CONN (24.2390s) TCP localhost &gt; 64.13.134.52:7006 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:387 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:337 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:261 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:85 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:26 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:5997 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:652 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:544 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:959 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:2638 =&gt; Operation now in progress&#10;CONN (24.2400s) TCP localhost &gt; 64.13.134.52:4 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:1396 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:2601 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:6665 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:10 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:2045 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:324 =&gt; Operation now in progress&#10;CONN (24.3060s) TCP localhost &gt; 64.13.134.52:368 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:532 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:5 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:2401 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:207 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:722 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:187 =&gt; Operation now in progress&#10;CONN (24.3340s) TCP localhost &gt; 64.13.134.52:6347 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:1452 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:6000 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:3306 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:5520 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:1385 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:3399 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:259 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:64 =&gt; Operation now in progress&#10;CONN (24.3870s) TCP localhost &gt; 64.13.134.52:3025 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:681 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1524 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1670 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:983 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:128 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1391 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:137 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:3421 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:6668 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1472 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:360 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:543 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:51 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1761 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1669 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:2018 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:609 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:5997 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:26 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:85 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:922 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:282 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:6548 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1534 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:960 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:1428 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:56 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:537 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:4662 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:7010 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:686 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:48 =&gt; Operation now in progress&#10;CONN (24.4950s) TCP localhost &gt; 64.13.134.52:363 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:2053 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:663 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:1454 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:513 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:5978 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:774 =&gt; Operation now in progress&#10;CONN (24.5630s) TCP localhost &gt; 64.13.134.52:888 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:6347 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:187 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:722 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:207 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:2401 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:5 =&gt; Operation now in progress&#10;CONN (24.5910s) TCP localhost &gt; 64.13.134.52:532 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:3025 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:64 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:259 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:3399 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:1385 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:5520 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:3306 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:6000 =&gt; Operation now in progress&#10;CONN (24.6440s) TCP localhost &gt; 64.13.134.52:1452 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:609 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:2018 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1669 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1761 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:51 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:543 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:360 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1472 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:6668 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:3421 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:137 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1391 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:128 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:983 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1670 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1524 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:681 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:363 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:48 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:686 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:7010 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:4662 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:537 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:56 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1428 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:960 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:1534 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:6548 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:282 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:922 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:8118 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:2604 =&gt; Operation now in progress&#10;CONN (24.7520s) TCP localhost &gt; 64.13.134.52:9991 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:2053 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:5978 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:513 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:1454 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:663 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:888 =&gt; Operation now in progress&#10;CONN (24.8190s) TCP localhost &gt; 64.13.134.52:774 =&gt; Operation now in progress&#10;CONN (24.8470s) TCP localhost &gt; 64.13.134.52:532 =&gt; Operation now in progress&#10;CONN (24.8470s) TCP localhost &gt; 64.13.134.52:5 =&gt; Operation now in progress&#10;CONN (24.8470s) TCP localhost &gt; 64.13.134.52:2401 =&gt; Operation now in progress&#10;CONN (24.8480s) TCP localhost &gt; 64.13.134.52:207 =&gt; Operation now in progress&#10;CONN (24.8480s) TCP localhost &gt; 64.13.134.52:722 =&gt; Operation now in progress&#10;CONN (24.8480s) TCP localhost &gt; 64.13.134.52:187 =&gt; Operation now in progress&#10;CONN (24.8480s) TCP localhost &gt; 64.13.134.52:6347 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:291 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:273 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:776 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:740 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:254 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:796 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:31 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:498 =&gt; Operation now in progress&#10;CONN (24.8990s) TCP localhost &gt; 64.13.134.52:765 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:2018 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:609 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:6668 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1472 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:360 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:543 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:51 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1761 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1669 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:681 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1524 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1670 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:983 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:128 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1391 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:137 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:3421 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:1428 =&gt; Operation now in progress&#10;CONN (25.0060s) TCP localhost &gt; 64.13.134.52:56 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:537 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:4662 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:7010 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:686 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:48 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:363 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:9991 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:2604 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:8118 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:922 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:282 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:6548 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:1534 =&gt; Operation now in progress&#10;CONN (25.0070s) TCP localhost &gt; 64.13.134.52:960 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:774 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:888 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:663 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:1454 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:513 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:5978 =&gt; Operation now in progress&#10;CONN (25.0750s) TCP localhost &gt; 64.13.134.52:2053 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:13706 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:553 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:27002 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:519 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:226 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:1355 =&gt; Operation now in progress&#10;CONN (25.1030s) TCP localhost &gt; 64.13.134.52:904 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:765 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:498 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:31 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:796 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:254 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:740 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:776 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:273 =&gt; Operation now in progress&#10;CONN (25.1550s) TCP localhost &gt; 64.13.134.52:291 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:8118 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:2604 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:9991 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:1445 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:60 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:285 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:328 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:388 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:914 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:294 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:1665 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:506 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:492 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:1110 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:501 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:855 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:999 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:1539 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:928 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:1827 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:341 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:1507 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:836 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:5100 =&gt; Operation now in progress&#10;CONN (25.2630s) TCP localhost &gt; 64.13.134.52:342 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:47 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:891 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:218 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:3064 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:651 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:938 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:195 =&gt; Operation now in progress&#10;CONN (25.2640s) TCP localhost &gt; 64.13.134.52:1504 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:1 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:757 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:24 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:631 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:1435 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:284 =&gt; Operation now in progress&#10;CONN (25.3300s) TCP localhost &gt; 64.13.134.52:597 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:13706 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:519 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:27002 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:553 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:904 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:1355 =&gt; Operation now in progress&#10;CONN (25.3580s) TCP localhost &gt; 64.13.134.52:226 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:765 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:498 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:796 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:31 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:273 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:776 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:740 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:254 =&gt; Operation now in progress&#10;CONN (25.4100s) TCP localhost &gt; 64.13.134.52:291 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:307 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:470 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:539 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:285 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:60 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:1445 =&gt; Operation now in progress&#10;CONN (25.5180s) TCP localhost &gt; 64.13.134.52:1665 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:294 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:914 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:388 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:328 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:1827 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:928 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:1539 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:999 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:855 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:501 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:1110 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:492 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:506 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:651 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:3064 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:218 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:891 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:47 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:342 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:5100 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:836 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:1507 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:341 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:1504 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:195 =&gt; Operation now in progress&#10;CONN (25.5190s) TCP localhost &gt; 64.13.134.52:938 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:597 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:284 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:1435 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:631 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:24 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:757 =&gt; Operation now in progress&#10;CONN (25.5860s) TCP localhost &gt; 64.13.134.52:1 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:226 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:1355 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:904 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:553 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:27002 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:519 =&gt; Operation now in progress&#10;CONN (25.6160s) TCP localhost &gt; 64.13.134.52:13706 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:1380 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:268 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:623 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:12345 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:13716 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:2111 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:6699 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:637 =&gt; Operation now in progress&#10;CONN (25.6670s) TCP localhost &gt; 64.13.134.52:751 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:938 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:195 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:1504 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:341 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:1507 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:836 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:5100 =&gt; Operation now in progress&#10;CONN (25.7760s) TCP localhost &gt; 64.13.134.52:342 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:47 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:891 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:218 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:3064 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:651 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:506 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:492 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:1110 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:501 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:855 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:999 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:1539 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:928 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:1827 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:328 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:388 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:914 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:294 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:1665 =&gt; Operation now in progress&#10;CONN (25.7770s) TCP localhost &gt; 64.13.134.52:1445 =&gt; Operation now in progress&#10;CONN (25.7780s) TCP localhost &gt; 64.13.134.52:60 =&gt; Operation now in progress&#10;CONN (25.7780s) TCP localhost &gt; 64.13.134.52:285 =&gt; Operation now in progress&#10;CONN (25.7780s) TCP localhost &gt; 64.13.134.52:539 =&gt; Operation now in progress&#10;CONN (25.7780s) TCP localhost &gt; 64.13.134.52:470 =&gt; Operation now in progress&#10;CONN (25.7780s) TCP localhost &gt; 64.13.134.52:307 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:1 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:757 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:24 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:631 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:1435 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:284 =&gt; Operation now in progress&#10;CONN (25.8430s) TCP localhost &gt; 64.13.134.52:597 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:44334 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:323 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:2006 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:61441 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:20005 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:1666 =&gt; Operation now in progress&#10;CONN (25.8720s) TCP localhost &gt; 64.13.134.52:622 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:751 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:637 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:6699 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:2111 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:13716 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:12345 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:623 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:268 =&gt; Operation now in progress&#10;CONN (25.9240s) TCP localhost &gt; 64.13.134.52:1380 =&gt; Operation now in progress&#10;CONN (26.0300s) TCP localhost &gt; 64.13.134.52:533 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:147 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:247 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:9999 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:885 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:822 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:608 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:5716 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:890 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:1527 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:1446 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:591 =&gt; Operation now in progress&#10;CONN (26.0310s) TCP localhost &gt; 64.13.134.52:691 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:769 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:27008 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:850 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:781 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:6112 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:465 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:1366 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:470 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:539 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:3001 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:1383 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:828 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:5001 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:4500 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:1009 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:8888 =&gt; Operation now in progress&#10;CONN (26.0320s) TCP localhost &gt; 64.13.134.52:300 =&gt; Operation now in progress&#10;CONN (26.0330s) TCP localhost &gt; 64.13.134.52:86 =&gt; Operation now in progress&#10;CONN (26.0330s) TCP localhost &gt; 64.13.134.52:6110 =&gt; Operation now in progress&#10;CONN (26.0330s) TCP localhost &gt; 64.13.134.52:307 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:1433 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:29 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:1370 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:951 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:6005 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:2009 =&gt; Operation now in progress&#10;CONN (26.0990s) TCP localhost &gt; 64.13.134.52:1426 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:44334 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:323 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:2006 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:61441 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:20005 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:1666 =&gt; Operation now in progress&#10;CONN (26.1260s) TCP localhost &gt; 64.13.134.52:622 =&gt; Operation now in progress&#10;CONN (26.1780s) TCP localhost &gt; 64.13.134.52:2111 =&gt; Operation now in progress&#10;CONN (26.1780s) TCP localhost &gt; 64.13.134.52:6699 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:637 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:751 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:268 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:623 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:12345 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:13716 =&gt; Operation now in progress&#10;CONN (26.1790s) TCP localhost &gt; 64.13.134.52:1380 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:1366 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:465 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:6112 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:781 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:850 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:27008 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:769 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:691 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:591 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:1446 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:1527 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:890 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:5716 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:608 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:822 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:885 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:9999 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:247 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:147 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:533 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:39 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:803 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:6110 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:86 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:300 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:8888 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:1009 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:4500 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:5001 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:828 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:1383 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:3001 =&gt; Operation now in progress&#10;CONN (26.2880s) TCP localhost &gt; 64.13.134.52:657 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:1426 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:2009 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:6005 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:951 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:1370 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:29 =&gt; Operation now in progress&#10;CONN (26.3550s) TCP localhost &gt; 64.13.134.52:1433 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:622 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:1666 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:20005 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:61441 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:2006 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:323 =&gt; Operation now in progress&#10;CONN (26.3820s) TCP localhost &gt; 64.13.134.52:44334 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:38 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:433 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:446 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:289 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:1059 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:1516 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:462 =&gt; Operation now in progress&#10;CONN (26.4340s) TCP localhost &gt; 64.13.134.52:2023 =&gt; Operation now in progress&#10;CONN (26.4350s) TCP localhost &gt; 64.13.134.52:484 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:1366 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:6112 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:465 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:769 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:27008 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:850 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:781 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:5716 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:890 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:1527 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:1446 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:591 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:691 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:39 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:533 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:147 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:247 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:9999 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:885 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:822 =&gt; Operation now in progress&#10;CONN (26.5430s) TCP localhost &gt; 64.13.134.52:608 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:4500 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:1009 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:8888 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:300 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:86 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:6110 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:803 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:657 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:3001 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:1383 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:828 =&gt; Operation now in progress&#10;CONN (26.5440s) TCP localhost &gt; 64.13.134.52:5001 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:1433 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:29 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:1370 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:951 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:6005 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:2009 =&gt; Operation now in progress&#10;CONN (26.6120s) TCP localhost &gt; 64.13.134.52:1426 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:7009 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:9876 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:858 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:727 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:149 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:183 =&gt; Operation now in progress&#10;CONN (26.6400s) TCP localhost &gt; 64.13.134.52:538 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:484 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:2023 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:462 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:1516 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:1059 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:289 =&gt; Operation now in progress&#10;CONN (26.6910s) TCP localhost &gt; 64.13.134.52:446 =&gt; Operation now in