Modify

Ticket #803 (closed defect: fixed)

Opened 13 years ago

Last modified 13 years ago

Problem on server causes backtrace on client

Reported by: strauss Owned by: desai
Priority: major Milestone: Bcfg2 1.0.1 Release
Component: bcfg2-server Version: 1.0
Keywords: Cc:

Description (last modified by strauss) (diff)

On client:

[email protected]:~# bcfg2 -vdqn
{'profile': False, 'filelog': None, 'dryrun': True, 'verbose': True, 'extra': False, 'ca': '/etc/bcfg2.cacrt', 'args': [], 'remove': False, 'bundle': [], 'key': '/etc/bcfg2.key', 'debug': True, 'user': 'aa61d6fb-cd71-4d23-a30a-4c001280e718', 'file': False, 'retries': '3', 'password': 'swVlDebq', 'help': False, 'kevlar': False, 'omit-lock-check': False, 'certificate': '/etc/bcfg2.crt', 'decision': False, 'paranoid': False, 'indep': False, 'drivers': ['Action', 'APT', 'Blast', 'Chkconfig', 'DebInit', 'Encap', 'IPS', 'FreeBSDInit', 'FreeBSDPackage', 'launchd', 'Portage', 'POSIX', 'RPMng', 'RcUpdate', 'SMF', 'SYSV', 'YUMng'], 'cache': False, 'serverCN': None, 'servicemode': 'default', 'encoding': 'ascii', 'decision-list': False, 'quick': True, 'server': 'https://configuration.fourkitchens.com:6789', 'setup': '/etc/bcfg2.conf', 'interactive': False}
Unknown failure
Traceback (most recent call last):
  File "/usr/lib/python2.5/site-packages/Bcfg2/Proxy.py", line 56, in __call__
    return _Method.__call__(self, *args)
  File "/usr/lib/python2.5/xmlrpclib.py", line 1147, in __call__
    return self.__send(self.__name, args)
  File "/usr/lib/python2.5/xmlrpclib.py", line 1437, in __request
    verbose=self.__verbose
  File "/usr/lib/python2.5/site-packages/Bcfg2/Proxy.py", line 264, in request
    return self._get_response(h.getfile(), msglen)
  File "/usr/lib/python2.5/site-packages/Bcfg2/Proxy.py", line 283, in _get_response
    p.close()
  File "/usr/lib/python2.5/xmlrpclib.py", line 550, in close
    self._parser.Parse("", 1) # end of data
ExpatError: no element found: line 1, column 0
Failed to download probes from bcfg2
Server Failure

Attachments

Change History

comment:1 Changed 13 years ago by strauss

The second fixed-width block above should be identified as "from the client."

comment:2 Changed 13 years ago by strauss

  • Priority changed from minor to major
  • Component changed from bcfg2-client to bcfg2-server
  • Description modified (diff)
  • Summary changed from "Incorrect address" error on server causes backtrace on client to Problem on server causes backtrace on client

Updated to reflect that the address error was only coincidental. The client-side error, however, is only a symptom of the server-side issue.

comment:3 Changed 13 years ago by strauss

[[email protected] ~]# python -m pdb `which bcfg2-server`
> /usr/sbin/bcfg2-server(3)?()
-> '''The XML-RPC Bcfg2 Server'''
(Pdb) continue
Loading experimental plugin(s): Packages
NOTE: Interfaces subject to change
service available at https://web3.fourkitchens.com:6789
serving bcfg2-server at https://web3.fourkitchens.com:6789
serve_forever() [start]
Handled 12 events in 0.004s
Host: configuration.fourkitchens.com:6789
Authorization: Basic lsdakjfSADFASDFlkjsdklfjSDFSDFAfsdjf
User-Agent: xmlrpclib.py/1.0.1 (by www.pythonware.com)
Content-Type: text/xml
Content-Length: 103

Authentication succeeded.
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(224)do_POST()
-> self.wfile.write(response)
(Pdb) p response
"<?xml version='1.0'?>\n<methodResponse>\n<params>\n<param>\n<value><string>&lt;?xml version='1.0' encoding='UTF-8'?&gt;\n&lt;probes/&gt;</string></value>\n</param>\n</params>\n</methodResponse>\n"
(Pdb) s
--Call--
> /usr/lib64/python2.4/socket.py(248)write()
-> def write(self, data):
(Pdb) s
> /usr/lib64/python2.4/socket.py(249)write()
-> data = str(data) # XXX Should really reject non-string non-buffers
(Pdb) s
> /usr/lib64/python2.4/socket.py(250)write()
-> if not data:
(Pdb) s
> /usr/lib64/python2.4/socket.py(252)write()
-> self._wbuf.append(data)
(Pdb) s
> /usr/lib64/python2.4/socket.py(253)write()
-> if (self._wbufsize == 0 or
(Pdb) s
> /usr/lib64/python2.4/socket.py(256)write()
-> self.flush()
(Pdb) s
--Call--
> /usr/lib64/python2.4/socket.py(239)flush()
-> def flush(self):
(Pdb) s
> /usr/lib64/python2.4/socket.py(240)flush()
-> if self._wbuf:
(Pdb) s
> /usr/lib64/python2.4/socket.py(241)flush()
-> buffer = "".join(self._wbuf)
(Pdb) s
> /usr/lib64/python2.4/socket.py(242)flush()
-> self._wbuf = []
(Pdb) s
> /usr/lib64/python2.4/socket.py(243)flush()
-> self._sock.sendall(buffer)
(Pdb) s
--Call--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(193)sendall()
-> def sendall (self, data, flags=0):
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(194)sendall()
-> if self._sslobj:
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(195)sendall()
-> if flags != 0:
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(199)sendall()
-> amount = len(data)
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(200)sendall()
-> count = 0
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(201)sendall()
-> while (count < amount):
(Pdb) p amount
186
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(202)sendall()
-> v = self.send(data[count:])
(Pdb) s
--Call--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(96)<lambda>()
-> self.send = lambda x, flags=0: SSLSocket.send(self, x, flags)
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(96)<lambda>()
-> self.send = lambda x, flags=0: SSLSocket.send(self, x, flags)
(Pdb) s
--Call--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(165)send()
-> def send (self, data, flags=0):
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(166)send()
-> if self._sslobj:
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(167)send()
-> if flags != 0:
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(171)send()
-> while True:
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(172)send()
-> try:
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(173)send()
-> v = self._sslobj.write(data)
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(182)send()
-> return v
(Pdb) s
--Return--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(182)send()->186
-> return v
(Pdb) s
--Return--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(96)<lambda>()->186
-> self.send = lambda x, flags=0: SSLSocket.send(self, x, flags)
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(203)sendall()
-> count += v
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(201)sendall()
-> while (count < amount):
(Pdb) p amount
186
(Pdb) p count
186
(Pdb) s
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(204)sendall()
-> return amount
(Pdb) s
--Return--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(204)sendall()->186
-> return amount
(Pdb) s
--Return--
> /usr/lib64/python2.4/socket.py(243)flush()->None
-> self._sock.sendall(buffer)
(Pdb) s
--Return--
> /usr/lib64/python2.4/socket.py(256)write()->None
-> self.flush()
(Pdb) s
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(225)do_POST()
-> pdb.set_trace()
(Pdb) s
--Call--
> /usr/lib64/python2.4/pdb.py(1002)set_trace()
-> def set_trace():
(Pdb) s
> /usr/lib64/python2.4/pdb.py(1003)set_trace()
-> Pdb().set_trace(sys._getframe().f_back)
(Pdb) s
--Call--
> /usr/lib64/python2.4/pdb.py(55)__init__()
-> def __init__(self):
(Pdb) s
> /usr/lib64/python2.4/pdb.py(56)__init__()
-> bdb.Bdb.__init__(self)
(Pdb) s
--Call--
> /usr/lib64/python2.4/bdb.py(22)__init__()
-> def __init__(self):
(Pdb) s
> /usr/lib64/python2.4/bdb.py(23)__init__()
-> self.breaks = {}
(Pdb) s
> /usr/lib64/python2.4/bdb.py(24)__init__()
-> self.fncache = {}
(Pdb) s
--Return--
> /usr/lib64/python2.4/bdb.py(24)__init__()->None
-> self.fncache = {}
(Pdb) c
--Return--
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(225)do_POST()->None
-> pdb.set_trace()
(Pdb) s
--Return--
> /usr/lib64/python2.4/BaseHTTPServer.py(310)handle_one_request()->None
-> method()
(Pdb) 
> /usr/lib64/python2.4/BaseHTTPServer.py(317)handle()
-> while not self.close_connection:
(Pdb) 
--Return--
> /usr/lib64/python2.4/BaseHTTPServer.py(317)handle()->None
-> while not self.close_connection:
(Pdb) 
> /usr/lib64/python2.4/SocketServer.py(522)__init__()
-> self.finish()
(Pdb) 
--Call--
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(227)finish()
-> def finish(self):
(Pdb) 
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(229)finish()
-> if not self.wfile.closed:
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(221)_getclosed()
-> def _getclosed(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(222)_getclosed()
-> return self._sock is None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(222)_getclosed()->False
-> return self._sock is None
(Pdb) 
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(230)finish()
-> self.wfile.flush()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(239)flush()
-> def flush(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(240)flush()
-> if self._wbuf:
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(240)flush()->None
-> if self._wbuf:
(Pdb) 
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(231)finish()
-> self.wfile.close()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(225)close()
-> def close(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(226)close()
-> try:
(Pdb) 
> /usr/lib64/python2.4/socket.py(227)close()
-> if self._sock:
(Pdb) 
> /usr/lib64/python2.4/socket.py(228)close()
-> self.flush()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(239)flush()
-> def flush(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(240)flush()
-> if self._wbuf:
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(240)flush()->None
-> if self._wbuf:
(Pdb) 
> /usr/lib64/python2.4/socket.py(230)close()
-> self._sock = None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(230)close()->None
-> self._sock = None
(Pdb) 
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(232)finish()
-> self.rfile.close()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(225)close()
-> def close(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(226)close()
-> try:
(Pdb) 
> /usr/lib64/python2.4/socket.py(227)close()
-> if self._sock:
(Pdb) 
> /usr/lib64/python2.4/socket.py(228)close()
-> self.flush()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(239)flush()
-> def flush(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(240)flush()
-> if self._wbuf:
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(240)flush()->None
-> if self._wbuf:
(Pdb) 
> /usr/lib64/python2.4/socket.py(230)close()
-> self._sock = None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(230)close()->None
-> self._sock = None
(Pdb) 
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(233)finish()
-> self.connection.unwrap()
(Pdb) 
--Call--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(238)unwrap()
-> def unwrap (self):
(Pdb) 
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(239)unwrap()
-> if self._sslobj:
(Pdb) 
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(240)unwrap()
-> s = self._sslobj.shutdown()
(Pdb) 
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(241)unwrap()
-> self._sslobj = None
(Pdb) 
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(242)unwrap()
-> return s
(Pdb) 
--Return--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(242)unwrap()-><socket ...otocol=0>
-> return s
(Pdb) 
--Return--
> /usr/lib/python2.4/site-packages/Bcfg2/SSLServer.py(233)finish()->None
-> self.connection.unwrap()
(Pdb) 
> /usr/lib64/python2.4/SocketServer.py(524)__init__()
-> sys.exc_traceback = None    # Help garbage collection
(Pdb) 
--Return--
> /usr/lib64/python2.4/SocketServer.py(524)__init__()->None
-> sys.exc_traceback = None    # Help garbage collection
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(232)__del__()
-> def __del__(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(233)__del__()
-> try:
(Pdb) 
> /usr/lib64/python2.4/socket.py(234)__del__()
-> self.close()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(225)close()
-> def close(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(226)close()
-> try:
(Pdb) 
> /usr/lib64/python2.4/socket.py(227)close()
-> if self._sock:
(Pdb) 
> /usr/lib64/python2.4/socket.py(230)close()
-> self._sock = None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(230)close()->None
-> self._sock = None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(234)__del__()->None
-> self.close()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(232)__del__()
-> def __del__(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(233)__del__()
-> try:
(Pdb) 
> /usr/lib64/python2.4/socket.py(234)__del__()
-> self.close()
(Pdb) 
--Call--
> /usr/lib64/python2.4/socket.py(225)close()
-> def close(self):
(Pdb) 
> /usr/lib64/python2.4/socket.py(226)close()
-> try:
(Pdb) 
> /usr/lib64/python2.4/socket.py(227)close()
-> if self._sock:
(Pdb) 
> /usr/lib64/python2.4/socket.py(230)close()
-> self._sock = None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(230)close()->None
-> self._sock = None
(Pdb) 
--Return--
> /usr/lib64/python2.4/socket.py(234)__del__()->None
-> self.close()
(Pdb) 
--Return--
> /usr/lib64/python2.4/SocketServer.py(254)finish_request()->None
-> self.RequestHandlerClass(request, client_address, self)
(Pdb) 
> /usr/lib64/python2.4/SocketServer.py(464)process_request_thread()
-> self.close_request(request)
(Pdb) 
--Call--
> /usr/lib64/python2.4/SocketServer.py(375)close_request()
-> def close_request(self, request):
(Pdb) 
> /usr/lib64/python2.4/SocketServer.py(377)close_request()
-> request.close()
(Pdb) 
--Call--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(250)close()
-> def close (self):
(Pdb) 
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(251)close()
-> if self._makefile_refs < 1:
(Pdb) 
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(255)close()
-> self._makefile_refs -= 1
(Pdb) 
--Return--
> /usr/lib64/python2.4/site-packages/ssl/__init__.py(255)close()->None
-> self._makefile_refs -= 1
(Pdb) 
--Return--
> /usr/lib64/python2.4/SocketServer.py(377)close_request()->None
-> request.close()
(Pdb) 
--Return--
> /usr/lib64/python2.4/SocketServer.py(464)process_request_thread()->None
-> self.close_request(request)
(Pdb) 
--Return--
> /usr/lib64/python2.4/threading.py(422)run()->None
-> self.__target(*self.__args, **self.__kwargs)
(Pdb) 
> /usr/lib64/python2.4/threading.py(480)__bootstrap()
-> if __debug__:
(Pdb) 
> /usr/lib64/python2.4/threading.py(481)__bootstrap()
-> self._note("%s.__bootstrap(): normal return", self)
(Pdb) 
--Call--
> /usr/lib64/python2.4/threading.py(44)_note()
-> def _note(self, format, *args):
(Pdb) 
> /usr/lib64/python2.4/threading.py(45)_note()
-> if self.__verbose:
(Pdb) 
--Return--
> /usr/lib64/python2.4/threading.py(45)_note()->None
-> if self.__verbose:
(Pdb) 
> /usr/lib64/python2.4/threading.py(483)__bootstrap()
-> self.__stop()
(Pdb) 
--Call--
> /usr/lib64/python2.4/threading.py(489)__stop()
-> def __stop(self):
(Pdb) 
> /usr/lib64/python2.4/threading.py(490)__stop()
-> self.__block.acquire()
(Pdb) 
> /usr/lib64/python2.4/threading.py(491)__stop()
-> self.__stopped = True
(Pdb) 
> /usr/lib64/python2.4/threading.py(492)__stop()
-> self.__block.notifyAll()
(Pdb) 
--Call--
> /usr/lib64/python2.4/threading.py(253)notifyAll()
-> def notifyAll(self):
(Pdb) 
> /usr/lib64/python2.4/threading.py(254)notifyAll()
-> self.notify(len(self.__waiters))
(Pdb) 
--Call--
> /usr/lib64/python2.4/threading.py(236)notify()
-> def notify(self, n=1):
(Pdb) 
> /usr/lib64/python2.4/threading.py(237)notify()
-> assert self._is_owned(), "notify() of un-acquire()d lock"
(Pdb) 
--Call--
> /usr/lib64/python2.4/threading.py(186)_is_owned()
-> def _is_owned(self):
(Pdb) 
> /usr/lib64/python2.4/threading.py(189)_is_owned()
-> if self.__lock.acquire(0):
(Pdb) 
> /usr/lib64/python2.4/threading.py(193)_is_owned()
-> return True
(Pdb) 
--Return--
> /usr/lib64/python2.4/threading.py(193)_is_owned()->True
-> return True
(Pdb) 
> /usr/lib64/python2.4/threading.py(238)notify()
-> __waiters = self.__waiters
(Pdb) 
> /usr/lib64/python2.4/threading.py(239)notify()
-> waiters = __waiters[:n]
(Pdb) 
> /usr/lib64/python2.4/threading.py(240)notify()
-> if not waiters:
(Pdb) 
> /usr/lib64/python2.4/threading.py(241)notify()
-> if __debug__:
(Pdb) 
> /usr/lib64/python2.4/threading.py(242)notify()
-> self._note("%s.notify(): no waiters", self)
(Pdb) 
--Call--
> /usr/lib64/python2.4/threading.py(44)_note()
-> def _note(self, format, *args):
(Pdb) 
> /usr/lib64/python2.4/threading.py(45)_note()
-> if self.__verbose:
(Pdb) 
--Return--
> /usr/lib64/python2.4/threading.py(45)_note()->None
-> if self.__verbose:
(Pdb) 
> /usr/lib64/python2.4/threading.py(243)notify()
-> return
(Pdb) 
--Return--
> /usr/lib64/python2.4/threading.py(243)notify()->None
-> return
(Pdb) 
--Return--
> /usr/lib64/python2.4/threading.py(254)notifyAll()->None
-> self.notify(len(self.__waiters))
(Pdb) 
> /usr/lib64/python2.4/threading.py(493)__stop()
-> self.__block.release()
(Pdb) 

comment:4 Changed 13 years ago by strauss

Here's a dump of the communication. Obviously, it's not decrypted, but it at least shows who's sending what. The server is 72.32.9.9.

[[email protected] ~]# tethereal -Vf "port 6789" -d "tcp.port==6789,ssl"
Running as user "root" and group "root". This could be dangerous.
Capturing on eth0
Frame 1 (74 bytes on wire, 74 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.468667000
    [Time delta from previous captured frame: 0.000000000 seconds]
    [Time delta from previous displayed frame: 0.000000000 seconds]
    [Time since reference or first frame: 0.000000000 seconds]
    Frame Number: 1
    Frame Length: 74 bytes
    Capture Length: 74 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 60
    Identification: 0xe834 (59444)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85f3 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 0, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 0    (relative sequence number)
    Header length: 40 bytes
    Flags: 0x02 (SYN)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...0 .... = Acknowledgment: Not set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..1. = Syn: Set
        .... ...0 = Fin: Not set
    Window size: 5840
    Checksum: 0xfa50 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (20 bytes)
        Maximum segment size: 1452 bytes
        SACK permitted
        Timestamps: TSval 133329047, TSecr 0
        NOP
        Window scale: 6 (multiply by 64)

Frame 2 (74 bytes on wire, 74 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.468693000
    [Time delta from previous captured frame: 0.000026000 seconds]
    [Time delta from previous displayed frame: 0.000026000 seconds]
    [Time since reference or first frame: 0.000026000 seconds]
    Frame Number: 2
    Frame Length: 74 bytes
    Capture Length: 74 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 60
    Identification: 0x0000 (0)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0x6528 [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 0, Ack: 1, Len: 0
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 0    (relative sequence number)
    Acknowledgement number: 1    (relative ack number)
    Header length: 40 bytes
    Flags: 0x12 (SYN, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..1. = Syn: Set
        .... ...0 = Fin: Not set
    Window size: 5792
    Checksum: 0xc304 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (20 bytes)
        Maximum segment size: 1460 bytes
        SACK permitted
        Timestamps: TSval 662793381, TSecr 133329047
        NOP
        Window scale: 7 (multiply by 128)
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 1]
        [The RTT to ACK the segment was: 0.000026000 seconds]

Frame 3 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.511062000
    [Time delta from previous captured frame: 0.042369000 seconds]
    [Time delta from previous displayed frame: 0.042369000 seconds]
    [Time since reference or first frame: 0.042395000 seconds]
    Frame Number: 3
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xe835 (59445)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85fa [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 1, Ack: 1, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 1    (relative sequence number)
    Acknowledgement number: 1    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 5888 (scaled)
    Checksum: 0x0811 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329051, TSecr 662793381
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 2]
        [The RTT to ACK the segment was: 0.042369000 seconds]

Frame 4 (168 bytes on wire, 168 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.513807000
    [Time delta from previous captured frame: 0.002745000 seconds]
    [Time delta from previous displayed frame: 0.002745000 seconds]
    [Time since reference or first frame: 0.045140000 seconds]
    Frame Number: 4
    Frame Length: 168 bytes
    Capture Length: 168 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 154
    Identification: 0xe836 (59446)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x8593 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 1, Ack: 1, Len: 102
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 1    (relative sequence number)
    [Next sequence number: 103    (relative sequence number)]
    Acknowledgement number: 1    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 5888 (scaled)
    Checksum: 0x43a0 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329052, TSecr 662793381
Secure Socket Layer
    SSLv2 Record Layer: Client Hello
        [Version: SSL 2.0 (0x0002)]
        Length: 100
        Handshake Message Type: Client Hello (1)
        Version: TLS 1.0 (0x0301)
        Cipher Spec Length: 75
        Session ID Length: 0
        Challenge Length: 16
        Cipher Specs (25 specs)
            Cipher Spec: TLS_DHE_RSA_WITH_AES_256_CBC_SHA (0x000039)
            Cipher Spec: TLS_DHE_DSS_WITH_AES_256_CBC_SHA (0x000038)
            Cipher Spec: TLS_RSA_WITH_AES_256_CBC_SHA (0x000035)
            Cipher Spec: TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA (0x000016)
            Cipher Spec: TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA (0x000013)
            Cipher Spec: TLS_RSA_WITH_3DES_EDE_CBC_SHA (0x00000a)
            Cipher Spec: SSL2_DES_192_EDE3_CBC_WITH_MD5 (0x0700c0)
            Cipher Spec: TLS_DHE_RSA_WITH_AES_128_CBC_SHA (0x000033)
            Cipher Spec: TLS_DHE_DSS_WITH_AES_128_CBC_SHA (0x000032)
            Cipher Spec: TLS_RSA_WITH_AES_128_CBC_SHA (0x00002f)
            Cipher Spec: SSL2_RC2_CBC_128_CBC_WITH_MD5 (0x030080)
            Cipher Spec: TLS_RSA_WITH_RC4_128_SHA (0x000005)
            Cipher Spec: TLS_RSA_WITH_RC4_128_MD5 (0x000004)
            Cipher Spec: SSL2_RC4_128_WITH_MD5 (0x010080)
            Cipher Spec: TLS_DHE_RSA_WITH_DES_CBC_SHA (0x000015)
            Cipher Spec: TLS_DHE_DSS_WITH_DES_CBC_SHA (0x000012)
            Cipher Spec: TLS_RSA_WITH_DES_CBC_SHA (0x000009)
            Cipher Spec: SSL2_DES_64_CBC_WITH_MD5 (0x060040)
            Cipher Spec: TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA (0x000014)
            Cipher Spec: TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA (0x000011)
            Cipher Spec: TLS_RSA_EXPORT_WITH_DES40_CBC_SHA (0x000008)
            Cipher Spec: TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 (0x000006)
            Cipher Spec: SSL2_RC2_CBC_128_CBC_WITH_MD5 (0x040080)
            Cipher Spec: TLS_RSA_EXPORT_WITH_RC4_40_MD5 (0x000003)
            Cipher Spec: SSL2_RC4_128_EXPORT40_WITH_MD5 (0x020080)
        Challenge

Frame 5 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.513839000
    [Time delta from previous captured frame: 0.000032000 seconds]
    [Time delta from previous displayed frame: 0.000032000 seconds]
    [Time since reference or first frame: 0.045172000 seconds]
    Frame Number: 5
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xb814 (47124)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xad1b [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1, Ack: 103, Len: 0
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1    (relative sequence number)
    Acknowledgement number: 103    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 5888 (scaled)
    Checksum: 0x07ab [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793426, TSecr 133329052
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 4]
        [The RTT to ACK the segment was: 0.000032000 seconds]

Frame 6 (1506 bytes on wire, 1506 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.513962000
    [Time delta from previous captured frame: 0.000123000 seconds]
    [Time delta from previous displayed frame: 0.000123000 seconds]
    [Time since reference or first frame: 0.045295000 seconds]
    Frame Number: 6
    Frame Length: 1506 bytes
    Capture Length: 1506 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 1492
    Identification: 0xb815 (47125)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xa77a [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1, Ack: 103, Len: 1440
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1    (relative sequence number)
    [Next sequence number: 1441    (relative sequence number)]
    Acknowledgement number: 103    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 5888 (scaled)
    Checksum: 0xc8b1 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793426, TSecr 133329052
    TCP segment data (1361 bytes)
Secure Socket Layer
    TLSv1 Record Layer: Handshake Protocol: Server Hello
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 74
        Handshake Protocol: Server Hello
            Handshake Type: Server Hello (2)
            Length: 70
            Version: TLS 1.0 (0x0301)
            Random
                gmt_unix_time: Nov 19, 2009 10:53:40.000000000
                random_bytes: E28D9C84742A0C93FE580E17FA01A8C193392E3D6135A252...
            Session ID Length: 32
            Session ID: 6EA06F566D363FC81D6535747FE4E53E4206E7FA7AD3E440...
            Cipher Suite: TLS_RSA_WITH_AES_256_CBC_SHA (0x0035)
            Compression Method: null (0)

Frame 7 (291 bytes on wire, 291 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.513971000
    [Time delta from previous captured frame: 0.000009000 seconds]
    [Time delta from previous displayed frame: 0.000009000 seconds]
    [Time since reference or first frame: 0.045304000 seconds]
    Frame Number: 7
    Frame Length: 291 bytes
    Capture Length: 291 bytes
    [Frame is marked: False]
    [Protocols in frame [truncated]: eth:ip:tcp:ssl:pkcs-1:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:pkcs-1:pkcs-1:pkcs-1:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 277
    Identification: 0xb816 (47126)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xac38 [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1441, Ack: 103, Len: 225
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1441    (relative sequence number)
    [Next sequence number: 1666    (relative sequence number)]
    Acknowledgement number: 103    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 5888 (scaled)
    Checksum: 0xe247 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793426, TSecr 133329052
    TCP segment data (225 bytes)
[Reassembled TCP Segments (1586 bytes): #6(1361), #7(225)]
    [Frame: 6, payload: 0-1360 (1361 bytes)]
    [Frame: 7, payload: 1361-1585 (225 bytes)]
Secure Socket Layer
    TLSv1 Record Layer: Handshake Protocol: Certificate
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 1563
        Handshake Protocol: Certificate
            Handshake Type: Certificate (11)
            Length: 1559
            Certificates Length: 1556
            Certificates (1556 bytes)
                Certificate Length: 619
                Certificate (id-at-commonName=configuration.fourkitchens.com,id-at-organizationName=Four Kitchens, LLC,id-at-stateOrProvinceName=Texas,id-at-countryName=US)
                    signedCertificate
                        serialNumber: 1048578
                        signature (md5WithRSAEncryption)
                            Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                        issuer: rdnSequence (0)
                            rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item ([email protected])
                                    RelativeDistinguishedName ([email protected])
                                        Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                        SyntaxIA5String: [email protected]
                                RDNSequence: 1 item (id-at-localityName=Austin)
                                    RelativeDistinguishedName (id-at-localityName=Austin)
                                        Id: 2.5.4.7 (id-at-localityName)
                                        DirectoryString: printableString (1)
                                            printableString: Austin
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                    RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: Certificate Authority
                        validity
                            notBefore: utcTime (0)
                                utcTime: 091118212352Z
                            notAfter: utcTime (0)
                                utcTime: 191116212352Z
                        subject: rdnSequence (0)
                            rdnSequence: 4 items (id-at-commonName=configuration.fourkitchens.com,id-at-organizationName=Four Kitchens, LLC,id-at-stateOrProvinceName=Texas,id-at-countryName=US)
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item (id-at-commonName=configuration.fourkitchens.com)
                                    RelativeDistinguishedName (id-at-commonName=configuration.fourkitchens.com)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: configuration.fourkitchens.com
                        subjectPublicKeyInfo
                            algorithm (rsaEncryption)
                                Algorithm Id: 1.2.840.113549.1.1.1 (rsaEncryption)
                            Padding: 0
                            subjectPublicKey: 30818902818100D05049D873DE0F41464C438259D9DE6C9F...
                    algorithmIdentifier (md5WithRSAEncryption)
                        Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                    Padding: 0
                    encrypted: 9F3B1F8056C770652B8DAEB1A45BD95C7EC7ADF09FBCE1C0...
                Certificate Length: 931
                Certificate (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                    signedCertificate
                        version: v3 (2)
                        serialNumber : 0x00a7b1a7c58c415448
                        signature (md5WithRSAEncryption)
                            Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                        issuer: rdnSequence (0)
                            rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item ([email protected])
                                    RelativeDistinguishedName ([email protected])
                                        Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                        SyntaxIA5String: [email protected]
                                RDNSequence: 1 item (id-at-localityName=Austin)
                                    RelativeDistinguishedName (id-at-localityName=Austin)
                                        Id: 2.5.4.7 (id-at-localityName)
                                        DirectoryString: printableString (1)
                                            printableString: Austin
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                    RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: Certificate Authority
                        validity
                            notBefore: utcTime (0)
                                utcTime: 091118211041Z
                            notAfter: utcTime (0)
                                utcTime: 191116211041Z
                        subject: rdnSequence (0)
                            rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item ([email protected])
                                    RelativeDistinguishedName ([email protected])
                                        Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                        SyntaxIA5String: [email protected]
                                RDNSequence: 1 item (id-at-localityName=Austin)
                                    RelativeDistinguishedName (id-at-localityName=Austin)
                                        Id: 2.5.4.7 (id-at-localityName)
                                        DirectoryString: printableString (1)
                                            printableString: Austin
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                    RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: Certificate Authority
                        subjectPublicKeyInfo
                            algorithm (rsaEncryption)
                                Algorithm Id: 1.2.840.113549.1.1.1 (rsaEncryption)
                            Padding: 0
                            subjectPublicKey: 30818902818100D15B36986971ECA48CC20A1EA2A502933E...
                        extensions: 3 items
                            Extensions (id-ce-basicConstraints)
                                Extension Id: 2.5.29.19 (id-ce-basicConstraints)
                                BasicConstraintsSyntax
                                    cA: True
                            Extensions (id-ce-subjectKeyIdentifier)
                                Extension Id: 2.5.29.14 (id-ce-subjectKeyIdentifier)
                                SubjectKeyIdentifier: 6406267BE5811B5F3B06681719E0F28C9F2AD5FE
                            Extensions (id-ce-authorityKeyIdentifier)
                                Extension Id: 2.5.29.35 (id-ce-authorityKeyIdentifier)
                                AuthorityKeyIdentifier
                                    keyIdentifier: 6406267BE5811B5F3B06681719E0F28C9F2AD5FE
                                    authorityCertIssuer: 1 item
                                        GeneralNames: directoryName (4)
                                            directoryName: rdnSequence (0)
                                                rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                                    RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                                        RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                                            Id: 2.5.4.10 (id-at-organizationName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Four Kitchens, LLC
                                                    RDNSequence: 1 item ([email protected])
                                                        RelativeDistinguishedName ([email protected])
                                                            Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                                            SyntaxIA5String: [email protected]
                                                    RDNSequence: 1 item (id-at-localityName=Austin)
                                                        RelativeDistinguishedName (id-at-localityName=Austin)
                                                            Id: 2.5.4.7 (id-at-localityName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Austin
                                                    RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                                        RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                                            Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Texas
                                                    RDNSequence: 1 item (id-at-countryName=US)
                                                        RelativeDistinguishedName (id-at-countryName=US)
                                                            Id: 2.5.4.6 (id-at-countryName)
                                                            CountryName: US
                                                    RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                                        RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                                            Id: 2.5.4.3 (id-at-commonName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Certificate Authority
                                    authorityCertSerialNumber : 0x00a7b1a7c58c415448
                    algorithmIdentifier (md5WithRSAEncryption)
                        Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                    Padding: 0
                    encrypted: 713EBA2DF501EAD9C12C1C7DAEB3FA01F2110F4A729265B0...
    TLSv1 Record Layer: Handshake Protocol: Multiple Handshake Messages
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 13
        Handshake Protocol: Certificate Request
            Handshake Type: Certificate Request (13)
            Length: 5
            Certificate types count: 2
            Certificate types (2 types)
                Certificate type: RSA Sign (1)
                Certificate type: DSS Sign (2)
            Distinguished Names Length: 0
        Handshake Protocol: Server Hello Done
            Handshake Type: Server Hello Done (14)
            Length: 0

Frame 8 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.561302000
    [Time delta from previous captured frame: 0.047331000 seconds]
    [Time delta from previous displayed frame: 0.047331000 seconds]
    [Time since reference or first frame: 0.092635000 seconds]
    Frame Number: 8
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xe837 (59447)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85f8 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 103, Ack: 1441, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 103    (relative sequence number)
    Acknowledgement number: 1441    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 8768 (scaled)
    Checksum: 0x01ac [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329056, TSecr 662793426

Frame 9 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.562285000
    [Time delta from previous captured frame: 0.000983000 seconds]
    [Time delta from previous displayed frame: 0.000983000 seconds]
    [Time since reference or first frame: 0.093618000 seconds]
    Frame Number: 9
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xe838 (59448)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85f7 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 103, Ack: 1666, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 103    (relative sequence number)
    Acknowledgement number: 1666    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0x009e [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329056, TSecr 662793426
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 7]
        [The RTT to ACK the segment was: 0.048314000 seconds]

Frame 10 (1506 bytes on wire, 1506 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.584242000
    [Time delta from previous captured frame: 0.021957000 seconds]
    [Time delta from previous displayed frame: 0.021957000 seconds]
    [Time since reference or first frame: 0.115575000 seconds]
    Frame Number: 10
    Frame Length: 1506 bytes
    Capture Length: 1506 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 1492
    Identification: 0xe839 (59449)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x8056 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 103, Ack: 1666, Len: 1440
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 103    (relative sequence number)
    [Next sequence number: 1543    (relative sequence number)]
    Acknowledgement number: 1666    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0x46c6 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329057, TSecr 662793426
    TCP segment data (1440 bytes)
Secure Socket Layer

Frame 11 (541 bytes on wire, 541 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.590770000
    [Time delta from previous captured frame: 0.006528000 seconds]
    [Time delta from previous displayed frame: 0.006528000 seconds]
    [Time since reference or first frame: 0.122103000 seconds]
    Frame Number: 11
    Frame Length: 541 bytes
    Capture Length: 541 bytes
    [Frame is marked: False]
    [Protocols in frame [truncated]: eth:ip:tcp:ssl:pkcs-1:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:pkcs-1:pkcs-1:pkcs-1:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509sat:x509]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 527
    Identification: 0xe83a (59450)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x841a [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 1543, Ack: 1666, Len: 475
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 1543    (relative sequence number)
    [Next sequence number: 2018    (relative sequence number)]
    Acknowledgement number: 1666    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0x6ab2 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329057, TSecr 662793426
    TCP segment data (475 bytes)
[Reassembled TCP Segments (1915 bytes): #10(1440), #11(475)]
    [Frame: 10, payload: 0-1439 (1440 bytes)]
    [Frame: 11, payload: 1440-1914 (475 bytes)]
Secure Socket Layer
    TLSv1 Record Layer: Handshake Protocol: Certificate
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 1573
        Handshake Protocol: Certificate
            Handshake Type: Certificate (11)
            Length: 1569
            Certificates Length: 1566
            Certificates (1566 bytes)
                Certificate Length: 629
                Certificate (id-at-commonName=office.fourkitchens.com,id-at-organizationalUnitName=Office,id-at-organizationName=Four Kitchens, LLC,id-at-stateOrProvinceName=Texas,id-at-countryName=US)
                    signedCertificate
                        serialNumber: 1048577
                        signature (md5WithRSAEncryption)
                            Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                        issuer: rdnSequence (0)
                            rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item ([email protected])
                                    RelativeDistinguishedName ([email protected])
                                        Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                        SyntaxIA5String: [email protected]
                                RDNSequence: 1 item (id-at-localityName=Austin)
                                    RelativeDistinguishedName (id-at-localityName=Austin)
                                        Id: 2.5.4.7 (id-at-localityName)
                                        DirectoryString: printableString (1)
                                            printableString: Austin
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                    RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: Certificate Authority
                        validity
                            notBefore: utcTime (0)
                                utcTime: 091118211431Z
                            notAfter: utcTime (0)
                                utcTime: 190818211431Z
                        subject: rdnSequence (0)
                            rdnSequence: 5 items (id-at-commonName=office.fourkitchens.com,id-at-organizationalUnitName=Office,id-at-organizationName=Four Kitchens, LLC,id-at-stateOrProvinceName=Texas,id-at-countryName=US)
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item (id-at-organizationalUnitName=Office)
                                    RelativeDistinguishedName (id-at-organizationalUnitName=Office)
                                        Id: 2.5.4.11 (id-at-organizationalUnitName)
                                        DirectoryString: printableString (1)
                                            printableString: Office
                                RDNSequence: 1 item (id-at-commonName=office.fourkitchens.com)
                                    RelativeDistinguishedName (id-at-commonName=office.fourkitchens.com)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: office.fourkitchens.com
                        subjectPublicKeyInfo
                            algorithm (rsaEncryption)
                                Algorithm Id: 1.2.840.113549.1.1.1 (rsaEncryption)
                            Padding: 0
                            subjectPublicKey: 30818902818100D251B65C19BC0EFA56BE4D9E9829930C63...
                    algorithmIdentifier (md5WithRSAEncryption)
                        Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                    Padding: 0
                    encrypted: 66E14AF46D7C8F757DABAB1007B454B91843D53DBFBCF6C7...
                Certificate Length: 931
                Certificate (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                    signedCertificate
                        version: v3 (2)
                        serialNumber : 0x00a7b1a7c58c415448
                        signature (md5WithRSAEncryption)
                            Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                        issuer: rdnSequence (0)
                            rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item ([email protected])
                                    RelativeDistinguishedName ([email protected])
                                        Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                        SyntaxIA5String: [email protected]
                                RDNSequence: 1 item (id-at-localityName=Austin)
                                    RelativeDistinguishedName (id-at-localityName=Austin)
                                        Id: 2.5.4.7 (id-at-localityName)
                                        DirectoryString: printableString (1)
                                            printableString: Austin
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                    RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: Certificate Authority
                        validity
                            notBefore: utcTime (0)
                                utcTime: 091118211041Z
                            notAfter: utcTime (0)
                                utcTime: 191116211041Z
                        subject: rdnSequence (0)
                            rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                    RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                        Id: 2.5.4.10 (id-at-organizationName)
                                        DirectoryString: printableString (1)
                                            printableString: Four Kitchens, LLC
                                RDNSequence: 1 item ([email protected])
                                    RelativeDistinguishedName ([email protected])
                                        Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                        SyntaxIA5String: [email protected]
                                RDNSequence: 1 item (id-at-localityName=Austin)
                                    RelativeDistinguishedName (id-at-localityName=Austin)
                                        Id: 2.5.4.7 (id-at-localityName)
                                        DirectoryString: printableString (1)
                                            printableString: Austin
                                RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                    RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                        Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                        DirectoryString: printableString (1)
                                            printableString: Texas
                                RDNSequence: 1 item (id-at-countryName=US)
                                    RelativeDistinguishedName (id-at-countryName=US)
                                        Id: 2.5.4.6 (id-at-countryName)
                                        CountryName: US
                                RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                    RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                        Id: 2.5.4.3 (id-at-commonName)
                                        DirectoryString: printableString (1)
                                            printableString: Certificate Authority
                        subjectPublicKeyInfo
                            algorithm (rsaEncryption)
                                Algorithm Id: 1.2.840.113549.1.1.1 (rsaEncryption)
                            Padding: 0
                            subjectPublicKey: 30818902818100D15B36986971ECA48CC20A1EA2A502933E...
                        extensions: 3 items
                            Extensions (id-ce-basicConstraints)
                                Extension Id: 2.5.29.19 (id-ce-basicConstraints)
                                BasicConstraintsSyntax
                                    cA: True
                            Extensions (id-ce-subjectKeyIdentifier)
                                Extension Id: 2.5.29.14 (id-ce-subjectKeyIdentifier)
                                SubjectKeyIdentifier: 6406267BE5811B5F3B06681719E0F28C9F2AD5FE
                            Extensions (id-ce-authorityKeyIdentifier)
                                Extension Id: 2.5.29.35 (id-ce-authorityKeyIdentifier)
                                AuthorityKeyIdentifier
                                    keyIdentifier: 6406267BE5811B5F3B06681719E0F28C9F2AD5FE
                                    authorityCertIssuer: 1 item
                                        GeneralNames: directoryName (4)
                                            directoryName: rdnSequence (0)
                                                rdnSequence: 6 items (id-at-commonName=Certificate Authority,id-at-countryName=US,id-at-stateOrProvinceName=Texas,id-at-localityName=Austin,[email protected],id-at-organizationName=Four Kitchens, LLC)
                                                    RDNSequence: 1 item (id-at-organizationName=Four Kitchens, LLC)
                                                        RelativeDistinguishedName (id-at-organizationName=Four Kitchens, LLC)
                                                            Id: 2.5.4.10 (id-at-organizationName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Four Kitchens, LLC
                                                    RDNSequence: 1 item ([email protected])
                                                        RelativeDistinguishedName ([email protected])
                                                            Id: 1.2.840.113549.1.9.1 (pkcs-9-at-emailAddress)
                                                            SyntaxIA5String: [email protected]
                                                    RDNSequence: 1 item (id-at-localityName=Austin)
                                                        RelativeDistinguishedName (id-at-localityName=Austin)
                                                            Id: 2.5.4.7 (id-at-localityName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Austin
                                                    RDNSequence: 1 item (id-at-stateOrProvinceName=Texas)
                                                        RelativeDistinguishedName (id-at-stateOrProvinceName=Texas)
                                                            Id: 2.5.4.8 (id-at-stateOrProvinceName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Texas
                                                    RDNSequence: 1 item (id-at-countryName=US)
                                                        RelativeDistinguishedName (id-at-countryName=US)
                                                            Id: 2.5.4.6 (id-at-countryName)
                                                            CountryName: US
                                                    RDNSequence: 1 item (id-at-commonName=Certificate Authority)
                                                        RelativeDistinguishedName (id-at-commonName=Certificate Authority)
                                                            Id: 2.5.4.3 (id-at-commonName)
                                                            DirectoryString: printableString (1)
                                                                printableString: Certificate Authority
                                    authorityCertSerialNumber : 0x00a7b1a7c58c415448
                    algorithmIdentifier (md5WithRSAEncryption)
                        Algorithm Id: 1.2.840.113549.1.1.4 (md5WithRSAEncryption)
                    Padding: 0
                    encrypted: 713EBA2DF501EAD9C12C1C7DAEB3FA01F2110F4A729265B0...
    TLSv1 Record Layer: Handshake Protocol: Client Key Exchange
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 134
        Handshake Protocol: Client Key Exchange
            Handshake Type: Client Key Exchange (16)
            Length: 130
    TLSv1 Record Layer: Handshake Protocol: Certificate Verify
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 134
        Handshake Protocol: Certificate Verify
            Handshake Type: Certificate Verify (15)
            Length: 130
    TLSv1 Record Layer: Change Cipher Spec Protocol: Change Cipher Spec
        Content Type: Change Cipher Spec (20)
        Version: TLS 1.0 (0x0301)
        Length: 1
        Change Cipher Spec Message
    TLSv1 Record Layer: Handshake Protocol: Encrypted Handshake Message
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 48
        Handshake Protocol: Encrypted Handshake Message

Frame 12 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.590788000
    [Time delta from previous captured frame: 0.000018000 seconds]
    [Time delta from previous displayed frame: 0.000018000 seconds]
    [Time since reference or first frame: 0.122121000 seconds]
    Frame Number: 12
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xb817 (47127)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xad18 [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1666, Ack: 2018, Len: 0
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1666    (relative sequence number)
    Acknowledgement number: 2018    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0xf92f [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793503, TSecr 133329057
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 11]
        [The RTT to ACK the segment was: 0.000018000 seconds]

Frame 13 (125 bytes on wire, 125 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.592764000
    [Time delta from previous captured frame: 0.001976000 seconds]
    [Time delta from previous displayed frame: 0.001976000 seconds]
    [Time since reference or first frame: 0.124097000 seconds]
    Frame Number: 13
    Frame Length: 125 bytes
    Capture Length: 125 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 111
    Identification: 0xb818 (47128)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xacdc [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1666, Ack: 2018, Len: 59
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1666    (relative sequence number)
    [Next sequence number: 1725    (relative sequence number)]
    Acknowledgement number: 2018    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0xdcb9 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793505, TSecr 133329057
Secure Socket Layer
    TLSv1 Record Layer: Change Cipher Spec Protocol: Change Cipher Spec
        Content Type: Change Cipher Spec (20)
        Version: TLS 1.0 (0x0301)
        Length: 1
        Change Cipher Spec Message
    TLSv1 Record Layer: Handshake Protocol: Encrypted Handshake Message
        Content Type: Handshake (22)
        Version: TLS 1.0 (0x0301)
        Length: 48
        Handshake Protocol: Encrypted Handshake Message

Frame 14 (343 bytes on wire, 343 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.639941000
    [Time delta from previous captured frame: 0.047177000 seconds]
    [Time delta from previous displayed frame: 0.047177000 seconds]
    [Time since reference or first frame: 0.171274000 seconds]
    Frame Number: 14
    Frame Length: 343 bytes
    Capture Length: 343 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 329
    Identification: 0xe83b (59451)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x84df [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 2018, Ack: 1725, Len: 277
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 2018    (relative sequence number)
    [Next sequence number: 2295    (relative sequence number)]
    Acknowledgement number: 1725    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0x00a7 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329064, TSecr 662793505
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 13]
        [The RTT to ACK the segment was: 0.047177000 seconds]
Secure Socket Layer
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 272
        Encrypted Application Data: 6CF67BFB4C60CD409B599E68BA3595A0669C013190BE9C73...

Frame 15 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.679180000
    [Time delta from previous captured frame: 0.039239000 seconds]
    [Time delta from previous displayed frame: 0.039239000 seconds]
    [Time since reference or first frame: 0.210513000 seconds]
    Frame Number: 15
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xb819 (47129)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xad16 [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1725, Ack: 2295, Len: 0
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1725    (relative sequence number)
    Acknowledgement number: 2295    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 14464 (scaled)
    Checksum: 0xf769 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793592, TSecr 133329064
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 14]
        [The RTT to ACK the segment was: 0.039239000 seconds]

Frame 16 (199 bytes on wire, 199 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.723677000
    [Time delta from previous captured frame: 0.044497000 seconds]
    [Time delta from previous displayed frame: 0.044497000 seconds]
    [Time since reference or first frame: 0.255010000 seconds]
    Frame Number: 16
    Frame Length: 199 bytes
    Capture Length: 199 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 185
    Identification: 0xe83c (59452)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x856e [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 2295, Ack: 1725, Len: 133
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 2295    (relative sequence number)
    [Next sequence number: 2428    (relative sequence number)]
    Acknowledgement number: 1725    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0x42fa [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329073, TSecr 662793592
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 15]
        [The RTT to ACK the segment was: 0.044497000 seconds]
Secure Socket Layer
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 128
        Encrypted Application Data: 93CFB23EAF0E8B706538C687EDCA3CAD25C44AE122F54406...

Frame 17 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.723697000
    [Time delta from previous captured frame: 0.000020000 seconds]
    [Time delta from previous displayed frame: 0.000020000 seconds]
    [Time since reference or first frame: 0.255030000 seconds]
    Frame Number: 17
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xb81a (47130)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xad15 [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1725, Ack: 2428, Len: 0
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1725    (relative sequence number)
    Acknowledgement number: 2428    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 17408 (scaled)
    Checksum: 0xf698 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793636, TSecr 133329073
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 16]
        [The RTT to ACK the segment was: 0.000020000 seconds]

Frame 18 (119 bytes on wire, 119 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.724118000
    [Time delta from previous captured frame: 0.000421000 seconds]
    [Time delta from previous displayed frame: 0.000421000 seconds]
    [Time since reference or first frame: 0.255451000 seconds]
    Frame Number: 18
    Frame Length: 119 bytes
    Capture Length: 119 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 105
    Identification: 0xb81b (47131)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xacdf [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1725, Ack: 2428, Len: 53
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1725    (relative sequence number)
    [Next sequence number: 1778    (relative sequence number)]
    Acknowledgement number: 2428    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 17408 (scaled)
    Checksum: 0x924d [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793636, TSecr 133329073
Secure Socket Layer
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 48
        Encrypted Application Data: 3116727CE726FDA1139DB7FCAEF641EE9F00D1B7E6C3B64A...

Frame 19 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.801516000
    [Time delta from previous captured frame: 0.077398000 seconds]
    [Time delta from previous displayed frame: 0.077398000 seconds]
    [Time since reference or first frame: 0.332849000 seconds]
    Frame Number: 19
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xe83d (59453)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85f2 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 2428, Ack: 1778, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 2428    (relative sequence number)
    Acknowledgement number: 1778    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 11648 (scaled)
    Checksum: 0xf62d [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329081, TSecr 662793636
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 18]
        [The RTT to ACK the segment was: 0.077398000 seconds]

Frame 20 (347 bytes on wire, 347 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.801530000
    [Time delta from previous captured frame: 0.000014000 seconds]
    [Time delta from previous displayed frame: 0.000014000 seconds]
    [Time since reference or first frame: 0.332863000 seconds]
    Frame Number: 20
    Frame Length: 347 bytes
    Capture Length: 347 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp:ssl]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 333
    Identification: 0xb81c (47132)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xabfa [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 1778, Ack: 2428, Len: 281
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 1778    (relative sequence number)
    [Next sequence number: 2059    (relative sequence number)]
    Acknowledgement number: 2428    (relative ack number)
    Header length: 32 bytes
    Flags: 0x18 (PSH, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 1... = Push: Set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 17408 (scaled)
    Checksum: 0x7af7 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793714, TSecr 133329081
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 19]
        [The RTT to ACK the segment was: 0.000014000 seconds]
Secure Socket Layer
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 64
        Encrypted Application Data: 826379A7B081192470683D93C57AD91314286029AC28C991...
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 64
        Encrypted Application Data: FD1DD68113C01016A2A79A3071073053039B4F91678CF507...
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 48
        Encrypted Application Data: F0D6A1C502C93E91B670D767469E9D82D1CCDAB981BE2EF8...
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 48
        Encrypted Application Data: 61A3D217636B546EA1D2C8A037E9375BE2086C1FD2768E08...
    TLSv1 Record Layer: Application Data Protocol: Application Data
        Content Type: Application Data (23)
        Version: TLS 1.0 (0x0301)
        Length: 32
        Encrypted Application Data: F2820781C5C8882FE6FD95D7D6A86B4B1A8205830271C866...

Frame 21 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.845155000
    [Time delta from previous captured frame: 0.043625000 seconds]
    [Time delta from previous displayed frame: 0.043625000 seconds]
    [Time since reference or first frame: 0.376488000 seconds]
    Frame Number: 21
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xe83e (59454)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85f1 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 2428, Ack: 2059, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 2428    (relative sequence number)
    Acknowledgement number: 2059    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 14528 (scaled)
    Checksum: 0xf495 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329085, TSecr 662793714
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 20]
        [The RTT to ACK the segment was: 0.043625000 seconds]

Frame 22 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.846911000
    [Time delta from previous captured frame: 0.001756000 seconds]
    [Time delta from previous displayed frame: 0.001756000 seconds]
    [Time since reference or first frame: 0.378244000 seconds]
    Frame Number: 22
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Cisco_99:ff:47 (00:16:47:99:ff:47), Dst: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
    Destination: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Cisco_99:ff:47 (00:16:47:99:ff:47)
        Address: Cisco_99:ff:47 (00:16:47:99:ff:47)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 99.61.33.46 (99.61.33.46), Dst: 72.32.9.9 (72.32.9.9)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xe83f (59455)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 55
    Protocol: TCP (0x06)
    Header checksum: 0x85f0 [correct]
        [Good: True]
        [Bad : False]
    Source: 99.61.33.46 (99.61.33.46)
    Destination: 72.32.9.9 (72.32.9.9)
Transmission Control Protocol, Src Port: 50404 (50404), Dst Port: smc-https (6789), Seq: 2428, Ack: 2059, Len: 0
    Source port: 50404 (50404)
    Destination port: smc-https (6789)
    Sequence number: 2428    (relative sequence number)
    Acknowledgement number: 2059    (relative ack number)
    Header length: 32 bytes
    Flags: 0x11 (FIN, ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...1 = Fin: Set
    Window size: 14528 (scaled)
    Checksum: 0xf494 [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 133329085, TSecr 662793714

Frame 23 (66 bytes on wire, 66 bytes captured)
    Arrival Time: Nov 19, 2009 10:53:40.886190000
    [Time delta from previous captured frame: 0.039279000 seconds]
    [Time delta from previous displayed frame: 0.039279000 seconds]
    [Time since reference or first frame: 0.417523000 seconds]
    Frame Number: 23
    Frame Length: 66 bytes
    Capture Length: 66 bytes
    [Frame is marked: False]
    [Protocols in frame: eth:ip:tcp]
Ethernet II, Src: Dell_d5:eb:66 (00:1c:23:d5:eb:66), Dst: All-HSRP-routers_01 (00:00:0c:07:ac:01)
    Destination: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        Address: All-HSRP-routers_01 (00:00:0c:07:ac:01)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Source: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        Address: Dell_d5:eb:66 (00:1c:23:d5:eb:66)
        .... ...0 .... .... .... .... = IG bit: Individual address (unicast)
        .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default)
    Type: IP (0x0800)
Internet Protocol, Src: 72.32.9.9 (72.32.9.9), Dst: 99.61.33.46 (99.61.33.46)
    Version: 4
    Header length: 20 bytes
    Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00)
        0000 00.. = Differentiated Services Codepoint: Default (0x00)
        .... ..0. = ECN-Capable Transport (ECT): 0
        .... ...0 = ECN-CE: 0
    Total Length: 52
    Identification: 0xb81d (47133)
    Flags: 0x04 (Don't Fragment)
        0... = Reserved bit: Not set
        .1.. = Don't fragment: Set
        ..0. = More fragments: Not set
    Fragment offset: 0
    Time to live: 64
    Protocol: TCP (0x06)
    Header checksum: 0xad12 [correct]
        [Good: True]
        [Bad : False]
    Source: 72.32.9.9 (72.32.9.9)
    Destination: 99.61.33.46 (99.61.33.46)
Transmission Control Protocol, Src Port: smc-https (6789), Dst Port: 50404 (50404), Seq: 2059, Ack: 2429, Len: 0
    Source port: smc-https (6789)
    Destination port: 50404 (50404)
    Sequence number: 2059    (relative sequence number)
    Acknowledgement number: 2429    (relative ack number)
    Header length: 32 bytes
    Flags: 0x10 (ACK)
        0... .... = Congestion Window Reduced (CWR): Not set
        .0.. .... = ECN-Echo: Not set
        ..0. .... = Urgent: Not set
        ...1 .... = Acknowledgment: Set
        .... 0... = Push: Not set
        .... .0.. = Reset: Not set
        .... ..0. = Syn: Not set
        .... ...0 = Fin: Not set
    Window size: 17408 (scaled)
    Checksum: 0xf49a [correct]
        [Good Checksum: True]
        [Bad Checksum: False]
    Options: (12 bytes)
        NOP
        NOP
        Timestamps: TSval 662793799, TSecr 133329085
    [SEQ/ACK analysis]
        [This is an ACK to the segment in frame: 22]
        [The RTT to ACK the segment was: 0.039279000 seconds]

23 packets captured
[[email protected] ~]# 

comment:5 Changed 13 years ago by desai

  • Status changed from new to closed
  • Resolution set to fixed

This should be fixed in [b43699d1f4e38446688dc626743cb4495421ed6f] (SVN r5626). You'll now get an appropriate error message. We'll need to figure out what the underlying condition was, but it should be straightforward to do that out now.

WARNING! You need to establish a session before you can create or edit tickets. Otherwise the ticket will get treated as spam.

View

Add a comment

Modify Ticket

Change Properties
<Author field>
Action
as closed
The resolution will be deleted. Next status will be 'reopened'
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.