Ace - connection reset (Error 101)

Hi, I have a problem with a Cisco ACE, after approximately an hour being in production, for all new connections
it gives the message: connection reset. The message on any web browser is: connection reset (Error 101)
It blocks any backend server (Apache).I get same error also when I try to connect direcly to the backend address.
This error saturates the connections on the servers (in the log of the DB I found error connection reset)
Without ACE all work fine, it's not a load traffic issue.
It seems like once opened a connection the ace does not close it anymore!
But the graphical snmp servers do not report the increase in connections, what is mistake ?
The balancer manages two physical servers and is configured in stickyness mode
Please find attached the configuration
logging enable
logging timestamp
logging trap 4
logging buffered 3
logging host 172.16.0.2 udp/514 format emblem
access-list ANY line 8 extended permit icmp any any
access-list ANY line 16 extended permit ip any any
probe http HTTP_PROBE1
  request method get url /index.php
  expect status 200 206
  expect status 300 307
  expect status 400 417
probe tcp PROBE_TCP
  interval 30
rserver host 03a.it
  ip address 172.16.0.1
  conn-limit max 50000 min 40000
  inservice
rserver host 03b.it
  ip address 172.16.0.2
  conn-limit max 50000 min 40000
  inservice
serverfarm host FARM_WEB
  predictor leastconns
probe HTTP_PROBE1
  rserver 03a.it
    inservice
  rserver 03b.it
    inservice
parameter-map type http HTTP_PARAMETER_MAP
  persistence-rebalance
sticky http-cookie session StickyGroup1
  timeout 3600
  serverfarm FARM_WEB
class-map type management match-all ICMP-ALLOW_CLASS
  2 match protocol icmp source-address x.x.x.x
class-map match-all L4-WEB-IP
  2 match virtual-address x.x.x.x tcp eq www
class-map type management match-all REMOTE_ACCESS
  2 match protocol ssh any
policy-map type management first-match REMOTE_MGMT_ALLOW_POLICY
  class REMOTE_ACCESS
    permit
policy-map type loadbalance http first-match WEB_L7_POLICY
  class class-default
    sticky-serverfarm StickyGroup1
    insert-http x-forward header-value "%is"
policy-map multi-match WEB-to-vIPs
  class L4-WEB-IP
    loadbalance vip inservice
    loadbalance policy WEB_L7_POLICY
    loadbalance vip icmp-reply active
    nat dynamic 1 vlan 2541
    appl-parameter http advanced-options HTTP_PARAMETER_MAP
interface vlan 125
  ip address
  access-group input ANY
  service-policy input REMOTE_MGMT_ALLOW_POLICY
  service-policy input WEB-to-vIPs
  no shutdown
interface vlan 254
  ip address
  access-group input ANY
  nat-pool
  service-policy input REMOTE_MGMT_ALLOW_POLICY
  no shutdown
At the moment this happens, the simultaneous connections (command: show conn) on the server are around 350
the CPU load is 2%
sticky database has approximately 24000 records.
Log level is set to 4. But no error report.
Do you need more info to resolve the problem?
Thank you
Best Regards
N.

Hello Nicolas,
I wonder if you can include these values:
parameter-map type http HTTP_PARAMETER_MAP
  case-insensitive
  persistence-rebalance
  set header-maxparse-length 65535
  set content-maxparse-length 65535
  length-exceed continue
  parsing non-strict
I also noticed a lot of errors which might be caused also due to these denied under the #show resource usage all which may indicate you are reaching the license limits, but you should discuss it with your Cisco SE, please see below:
                                               Allocation
        Resource         Current       Peak        Min        Max       Denied
Context: vrack254
  conc-connections              4       1267      60000      60000          0
  mgmt-connections              2         28        748        748          0
  proxy-connections             0       1255       7864       7864          0
  xlates                        0          0       7864       7864          0
  bandwidth                   572    3824781    3740624  127490624    1416859
    throughput                 96    3712886    3740624    3740624    1416859
    mgmt-traffic rate         476     111895          0  123750000          0
  connection rate               1       1729       4500       4500          0
  ssl-connections rate          0          0        224        224          0
  mac-miss rate                 0         15         16         16          4
  inspect-conn rate             0          0       1800       1800          0
  http-comp rate                0          0    5898240    5898240          0
  to-cp-ipcp rate               0         11         36         36          0
  acl-memory                 8216      10568     744800     744800          0
  sticky                    22978      22978      31456      31456          0
  regexp                       19         23       7864       7864          0
  syslog buffer             30720      30720      30720      30720          0
  syslog rate                   0          6        750        750          0
Can you upload the specific error which you are getting also?
Jorge

Similar Messages

  • WRT54G V3 Web Gui recieves "connection reset" errors on all pages

    Hello,
    I was recently having some connection problems with my WRT54G and decided to upgrade the firmware. The router has been stable for quite some time before the last week. The firmware was from linksys and it uploaded fine and rebooted and all was great.
    When I tried to reconfigure the router settings I ran into trouble. None of the html forms will submit. All of them get "connection reset" errors when I try and update the information. Apparently there was an error in flashing or something. So I think, no prob, I'll just re-flash. Except that the firmware upgrade form also gets connection reset.
    If I type in 192.168.1.1/apply.cgi it works...no connection reset (though nothing comes out). I have a hunch that if I were able to custom form the HTTP post header it might go through.
    I tried TFTPing the new firmware to the router and had no success. Granted I am a mac user so I was in the terminal window instead of using the proprietary tftp util. I always get "transfer timed out" errors. I tried starting the transfer before the router responded to a ping, after, before the power light started flashing, after that, and after it went solid too.
    Any help is appreciated. Thanks.

    Try to update firmware using TFTP program from a windows based PC. You can get tftp from ftp://ftp.linksys.com/pub/network/

  • Connection reset error

    we wrote a proxy that should handle request from the browser and deliver it to the parent
    but when we read from the parent after we read the first chunck of data and send it to the client we get connection reset error(SocketException)
    what should we do?
    here is out code thanks
              Socket parent = null;
              PrintStream streamToParent = null;
              InputStream streamFromParent = null;
              try{
                   parent = new Socket(parentHost, parentPort);
                   //1- forword the request to the Parent ans read the response
                   streamToParent= new PrintStream(parent.getOutputStream());
                   streamToParent.write(reqStr.toString().getBytes());
                   streamToParent.flush();
                   streamToParent.println();
                   streamToParent.flush();
                   int bytesRead = -1;
                   byte[] response = new byte[4096 ];
                   //1a- extract Headers - (of response)
                   StringBuffer headers = new StringBuffer();
                   int byteRead = 0;
                   streamFromParent = parent.getInputStream();
                   while (!endOfHeaders(headers) && (byteRead = streamFromParent.read()) >= 0) {
                        headers.append((char) byteRead);
                   //1b- check headers
                   boolean toBeCached = checkResponseHeaders(headers);
                   if(toBeCached)
                        System.out.println("cachedMe: " + url.toString());
                   HttpResponseHeader resH = new HttpResponseHeader(headers.toString());
                   String etag = resH.get("ETag");
                   String lastM = resH.get("Last-Modified");
                   String expires = resH.get("Expires");
                   Date expDate = null;
                   OutputStream osBody = null;
                   byte[] bHeaders = headers.toString().getBytes("US-ASCII");
                   if(expires != null)
                        expDate = new Date(new HttpDate(expires).getAsLong());
                   //1c- write the headers to the client
                   OutputStream streamToClient = client.getOutputStream();
                   streamToClient.write(bHeaders);
                   streamToClient.flush();
                   //1d- continue with the body, read from parent and write to client
                   try{
                        if(toBeCached)
                             osBody =_wcdb.insert(url, expDate , lastM, etag, bHeaders);
                        int sumInsert = 0;
                        while ( (bytesRead = streamFromParent.read(response)) >= 0 ) {
                             streamToClient.write(response, 0 , bytesRead);
                        streamToClient.flush();
                   catch(IOException ioe)
              catch(IOException ex) {}
              finally
                   if(streamToParent != null)
                        streamToParent.close();
                   if(streamFromParent != null)
                        streamFromParent.close();
                   if(!client.isClosed())
                        client.close();
                   if(parent != null)
                        parent.close();
              }

    What 's the 'parent'?
    The exception usually means that the end you are writing to has already closed its socket. What's the full text of the exception?

  • Network connection reset error

    I am struggling to effect any software updates or downloands.  I get a "network connection reset" error.  I have failed to update iPhone software, even YouTube videos seem to hang at about the 50% mark.  I do not have anti-virus and have inserted new DNS info.  It makes no difference if I use Airport or Ethernet cable.  Have uninstalled and rteinstalled iTunes.  Am at a loss. Help please!

    I even uninstalled Trusteer banking security software....
    Did you use the developers uninstaller to ensure you fully eradicated it from your system. Trusteer's Rapport has a bad reputation on here for mucking things up. Here's a quick search of just these forums:
    https://discussions.apple.com/community/desktop_computers/search.jspa?peopleEnab led=true&userID=&containerType=&container=&spotlight=false&q=Trusteer
    Also, just to rule out the fireall possibility, have you tried turning off the firewall and testing?
    Edit: You don't have anti-virus installed, but do you have anything such as Little Snitch or Peer Guardian running?

  • Performance loading websites is terrible & occasional "connection reset" errors after upgrade

    Firefox is very slow (minutes, really) to load web pages to the point where I have time to go open another browser (generally chrome) and cut/paste the url to see whether it is a network problem or not. So far Chrome has been able to load the pages very quickly while Firefox takes several minutes. Additionally I will get occasional "Connection Reset" errors. I was suspicious of browser add-ons, anti-malware software etc on my system so I've unstalled everything (except Sophos) and the bits which come with Windows7 (64bit). I uninstalled Firefox, deleting all user settings, browser history, etc and reinstalled a fresh copy. This didn't affect the problem.
    I have gone through the hints in the performace faq, set the proxy setting to no proxy, turned off ipv6 dns and dns prefetching and the problems exist. I'm happy to try and help track this down but I don't really know where to start. '''bold text'''

    I have the same problem, but only with firefox, because is the only program that i use (also watch videos with VLC, but this have no problem).
    I think we should report, but i'm not sure where.
    A screenshot: http://imgur.com/QKrisQa
    $lspci
    00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
    00:01.0 PCI bridge: Intel Corporation 4 Series Chipset PCI Express Root Port (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation 4 Series Chipset Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation NM10/ICH7 Family High Definition Audio Controller (rev 01)
    00:1c.0 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 1 (rev 01)
    00:1c.1 PCI bridge: Intel Corporation NM10/ICH7 Family PCI Express Port 2 (rev 01)
    00:1d.0 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #1 (rev 01)
    00:1d.1 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #2 (rev 01)
    00:1d.2 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #3 (rev 01)
    00:1d.3 USB controller: Intel Corporation NM10/ICH7 Family USB UHCI Controller #4 (rev 01)
    00:1d.7 USB controller: Intel Corporation NM10/ICH7 Family USB2 EHCI Controller (rev 01)
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1)
    00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01)
    00:1f.1 IDE interface: Intel Corporation 82801G (ICH7 Family) IDE Controller (rev 01)
    00:1f.2 IDE interface: Intel Corporation NM10/ICH7 Family SATA Controller [IDE mode] (rev 01)
    00:1f.3 SMBus: Intel Corporation NM10/ICH7 Family SMBus Controller (rev 01)
    03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 03)
    04:01.0 Multimedia controller: Philips Semiconductors SAA7134/SAA7135HL Video Broadcast Decoder (rev 01)
    PD: Sorry for my bad grammar.

  • Network connection resets error when updting apps

    On my PC XP Pro SP3, since I have updated iTunes 11, I am unable to update any apps that were previously on PC.  I always get an error message that says (there was a problem downloding -The netrwork connection was reset).

    This absolutely WORTHLESS answer is getting posted everywhere and it does NOT address "network connection reset" problem which is ubiquitous. It ONLY addresses problems connecting to the iTunes store and not being able to communicate or download anything from the store. . . period.
    If I had a problem connecting to the iTunes store I WOULD NOT even be able to start any download of ANYTHING from the store. The problem is getinng a network connection reset error in the middle of downloading app updates. Some update an as soon as the network connection reset error occurs with one of them, the rest FAIL. So kindly STOP posting this as the solution . .  IT.IS.NOT . . . and it's incredibly frustrating to see it posted everwhere whenever the poblem is presented in the forum.

  • Connection reset error while calling web service deployed on tomcat

    Hello Friends,
    I am trying to invoke a web service from web dynpro application. The web service is deployed on tomcat 5.5 server.
    I am creating an adaptive web service model using wsdl file. The model gets created without any error.
    But when application is deployed and run it is giving following exception:
    java.net.SocketException: Connection reset
        at java.net.SocketInputStream.read(SocketInputStream.java:168)
        at java.io.BufferedInputStream.read1(BufferedInputStream.java:254)
        at java.io.BufferedInputStream.read(BufferedInputStream.java:313)
        at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
        at java.io.BufferedInputStream.read1(BufferedInputStream.java:256)
        ... 102 more
    I tried to call the service from a simple java application. There the service works fine.
    Also, in the web services navigator, if I specify the wsdl url for testing it gives the same error of "Connection reset".
    I don't think this is a proxy server issue as the tomcat is within the local network.
    Can someone please help me with this?
    Thanks and regards,
    Mayuresh
    Edited by: Mayuresh Kanvinde on Mar 27, 2008 7:03 PM

    Hi Sumit,
    Thanks for the reply.
    Here is the stack trace:
    com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WSDL URL 'http://<host>:<port>/WebServicesTest/DummyWebService?wsdl' and service factory configuration 'null'
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:422)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:372)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:342)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:326)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo$Cache.getModelInfo(WSModelInfo.java:199)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:1035)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:248)
         at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.<init>(WSTypedModel.java:41)
         at com.tcs.vis.Vishy.<init>(Vishy.java:73)
         at com.tcs.app.AppView.wdDoInit(AppView.java:101)
         at com.tcs.app.wdp.InternalAppView.wdDoInit(InternalAppView.java:143)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:445)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:579)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:155)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.doOpen(WebDynproWindow.java:295)
         at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.show(ApplicationWindow.java:183)
         at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.open(ApplicationWindow.java:178)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:364)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:748)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:283)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:46)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. Could not load web service model. See nested exception for details.
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:150)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:50)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:71)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:91)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:420)
         ... 45 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Problem with WSDL file parsing. See nested message.
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:182)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:147)
         ... 49 more
    Caused by: com.sap.engine.lib.xml.util.NestedException: IO Exception occurred while parsing file:Connection reset -> java.net.SocketException: Connection reset
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1039)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadWSDLDocument(WSDLDOMLoader.java:1126)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:178)
         ... 50 more
    Caused by: java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:220)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:220)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         at com.sap.engine.services.webservices.jaxm.soap.LimitedInputStream.read(LimitedInputStream.java:61)
         at com.sap.engine.lib.xml.parser.readers.EncodedDataReader.readData(EncodedDataReader.java:269)
         at com.sap.engine.lib.xml.parser.readers.EncodedDataReader.fetchData(EncodedDataReader.java:332)
         at com.sap.engine.lib.xml.parser.readers.EncodedDataReader.read(EncodedDataReader.java:165)
         at com.sap.engine.lib.xml.parser.helpers.AdvancedXMLStreamReader.read(AdvancedXMLStreamReader.java:143)
         at com.sap.engine.lib.xml.parser.helpers.AdvancedXMLStreamReader.addInputFromInputStream(AdvancedXMLStreamReader.java:292)
         at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:220)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:280)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:342)
         at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
         at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1023)
         ... 52 more
    Thanks and regards,
    Mayuresh
    Edited by: Mayuresh Kanvinde on Mar 28, 2008 1:10 PM

  • ACE: connection reset using Firefox

    Hi Community,
    I'm expecting some problems with ACE. I've configured it to loadbalance between 4 nodes with SSL termination at ACE.
    Everything was working fine up to the identification of a problem using firefox browser. With Chrome and IE works fine.
    The user is trying to upload a file to one of the 4 nodes. When the costumer click at the send button, the Firefox shows the following message: Connection Reset.
    Can you suggest some actions? This problem just happens when the user try to upload the file. Whe he's just surfing through the system, works fine.
    Thank you in advance.
    ------ Configuration ------
    ACE-01-SJPR/eproc4# sh runGenerating configuration....logging enablelogging timestamplogging trap 5logging buffered 7access-list acl_ALL line 5 extended permit ip any any access-list acl_ALL line 10 extended permit icmp any any probe snmp cpu_servers  version 2c  community Public  oid 1.3.6.1.2.1.25.3.3.1.2    threshold 60probe http pb_http  port 80  interval 5  passdetect interval 30  passdetect count 2  request method get url /eprocV2/index.php  expect status 200 200probe icmp pb_ping  interval 10  faildetect 2  passdetect interval 5  passdetect count 2rserver host eproc-1g-aplic-noh1  ip address 10.7.123.1  inservicerserver host eproc-1g-aplic-noh2  ip address 10.7.123.2  inservicerserver host eproc-1g-aplic-noh3  ip address 10.7.123.3  inservicerserver host eproc-1g-aplic-noh4  ip address 10.7.123.4  inservicerserver redirect srv_eproc4_https_redirect  description ## Redireciona trafego de HTTP para HTTPS ##  webhost-redirection https://%h%p 302  inserviceserverfarm host farm_eproc4  failaction purge  probe pb_ping  probe pb_http  rserver eproc-1g-aplic-noh1 80    cookie-string "eproc-1g-aplic-noh1"    inservice  rserver eproc-1g-aplic-noh2 80    cookie-string "eproc-1g-aplic-noh2"    inservice  rserver eproc-1g-aplic-noh3 80    cookie-string "eproc-1g-aplic-noh3"    inserviceserverfarm redirect farm_eproc4_https_redirect  description ## Redireciona trafego de HTTP para HTTPS ##  rserver srv_eproc4_https_redirect    inserviceparameter-map type http HTTP_PARAM  description Reuse TCP and Keep Persistence  case-insensitive  persistence-rebalanceparameter-map type ssl PARAMMAP_SSL_TERMINATION  cipher RSA_WITH_3DES_EDE_CBC_SHA  cipher RSA_WITH_AES_128_CBC_SHA priority 2  cipher RSA_WITH_AES_256_CBC_SHA priority 3  rehandshake enabledparameter-map type connection TCP_PARAM  description TCP Options for SSL  exceed-mss allowsticky http-cookie acecookie st_eproc4_cookie  cookie insert browser-expire  serverfarm farm_eproc4sticky http-cookie acecookie st_eproc4_https_redirect  cookie insert browser-expire  serverfarm farm_eproc4_https_redirectssl-proxy service CISCO-SSL-PROXY  key my.key  cert my-cert.pem  ssl advanced-options PARAMMAP_SSL_TERMINATIONclass-map type management match-any acesso_remoto  description ## Acesso Remoto ao ACE ##  2 match protocol telnet any  3 match protocol ssh any  4 match protocol icmp any  5 match protocol snmp anyclass-map type http loadbalance match-any https_redirect_eproc4  2 match http url /.*class-map match-all vip_eproc4_http  8 match virtual-address 10.7.3.252 tcp eq wwwclass-map match-all vip_eproc4_https  8 match virtual-address 10.7.3.252 tcp eq httpspolicy-map type management first-match acesso_mgmt  class acesso_remoto    permitpolicy-map type loadbalance first-match lb_eproc4_http  class class-default    sticky-serverfarm st_eproc4_cookiepolicy-map type loadbalance first-match lb_https_redirect  class https_redirect_eproc4    sticky-serverfarm st_eproc4_https_redirect  class class-default    sticky-serverfarm st_eproc4_cookiepolicy-map multi-match policy_vip_eproc4  class vip_eproc4_http    loadbalance vip inservice    loadbalance policy lb_https_redirect    loadbalance vip icmp-reply active    nat dynamic 4093 vlan 4093    appl-parameter http advanced-options HTTP_PARAM  class vip_eproc4_https    loadbalance vip inservice    loadbalance policy lb_eproc4_http    loadbalance vip icmp-reply active    nat dynamic 4093 vlan 4093    appl-parameter http advanced-options HTTP_PARAM    ssl-proxy server CISCO-SSL-PROXYinterface vlan 4039  description ## Interface lado SERVIDOR ##  bridge-group 1  access-group input acl_ALL  no shutdowninterface vlan 4093  description ## Interface lado SERVIDOR ##  bridge-group 1  access-group input acl_ALL  nat-pool 4093 10.7.3.253 10.7.3.253 netmask 255.255.255.255 pat  service-policy input policy_vip_eproc4  service-policy input acesso_mgmt  no shutdowninterface bvi 1  ip address 10.7.3.251 255.255.0.0  no shutdownip route 0.0.0.0 0.0.0.0 10.7.1.1

    From my prior experience I have seen similar issues with firefox.
    Please try using firefox for reproducing the issue and get the output for below :
    show np 1 me-stats -shttp
    Look for counter value
    Exceed max buffer errors:                     16901    <<<<<  Check if the counter increase after the test.
    you can try few times and in case if you see the value increasing for  “ Exceed max buffer errors”
    I believe if you do the following and test that should fix it. I have seen similar issue with a customer and the below has fixed it.
    configure set header-maxparse-length 65535 and set max-parse-time 65535 and set content-maxparse-length 65535
    host1/Admin(config)# parameter-map type http http_parameter_map
    host1/Admin(config-parammap-http)#
    host1/Admin(config-parammap-http)# set content-maxparse-length 65535
    host1/Admin(config-parammap-http)# set max-parse-time 65535
    host1/Admin(config-parammap-http)# set header-maxparse-length 65535
    host1/Admin(config-parammap-http)# length-exceed continue
    Apply the above in multimatch policy :
    appl-parameter http advanced-options http_parameter_map
    Let me know the result after applying the above.

  • Connection Reset Error with Database Polling

    Hi,
    I am using DB adapter for polling records from the database. After polling I am doing physical delete for the records that have been polled. The polled record has a column for scheduledDateTime which is used to do scheduling for the process, using a Wait Activity.
    Everything works fine in development environment but shows different behaviour in testing environment.
    The records have been polled and is waiting at wait activity for time expiry. But even after time expires, the process is still in a waiting stage. When I checked logs for the process, this was the error given.
    <2010-04-20 07:59:00,477> <WARN> <ukbss.collaxa.cube.activation> <Database Adapter::Inbound>
    ORABPEL-11624
    DBActivationSpec Polling Exception.
    Query name: [ScheduleDBPoll], Descriptor name: [ScheduleDBPoll.ScheduleInformation]. Polling the database for events failed on this iteration. [Caused by: Io exception: Connection reset]
    If the cause is something like a database being down successful polling will resume once conditions change. Caused by Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.4.0) (Build 080602)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: Io exception: Connection resetError Code: 17002
    Call:DELETE FROM SCHEDULE_INFORMATION WHERE (SCHEDULE_ID = ?)
         bind => [584]
    Query:DeleteObjectQuery(<ScheduleInformation 584 />).
         at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:461)
         at oracle.tip.adapter.db.exceptions.DBResourceException.inboundReadException(DBResourceException.java:376)
         at oracle.tip.adapter.db.InboundWork.handleException(InboundWork.java:697)
         at oracle.tip.adapter.db.InboundWork.runOnce(InboundWork.java:635)
         at oracle.tip.adapter.db.InboundWork.run(InboundWork.java:475)
         at oracle.tip.adapter.db.inbound.InboundWorkWrapper.run(InboundWorkWrapper.java:43)
         at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
         at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:280)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.4.0) (Build 080602)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: Io exception: Connection resetError Code: 17002
    Call:DELETE FROM SCHEDULE_INFORMATION WHERE (SCHEDULE_ID = ?)
         bind => [584]
    Query:DeleteObjectQuery(<ScheduleInformation 584 />)
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:282)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:669)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeNoSelect(DatabaseAccessor.java:721)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:501)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:441)
         at oracle.toplink.publicinterface.Session.executeCall(Session.java:728)
         at oracle.toplink.internal.sessions.IsolatedClientSession.executeCall(IsolatedClientSession.java:115)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:117)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:103)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.deleteObject(DatasourceCallQueryMechanism.java:94)
         at oracle.toplink.internal.queryframework.StatementQueryMechanism.deleteObject(StatementQueryMechanism.java:96)
         at oracle.toplink.queryframework.DeleteObjectQuery.executeDatabaseQuery(DeleteObjectQuery.java:143)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:620)
         at oracle.toplink.publicinterface.Session.internalExecuteQuery(Session.java:2089)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:993)
         at oracle.toplink.publicinterface.Session.executeQuery(Session.java:950)
         at oracle.tip.adapter.db.inbound.DeletePollingStrategy.destroyRecord(DeletePollingStrategy.java:332)
         at oracle.tip.adapter.db.inbound.DestructivePollingStrategy.destroy(DestructivePollingStrategy.java:406)
         at oracle.tip.adapter.db.inbound.DeletePollingStrategy.destroy(DeletePollingStrategy.java:378)
         at oracle.tip.adapter.db.InboundWork.transactionalUnit(InboundWork.java:1353)
         at oracle.tip.adapter.db.InboundWork.runOnce(InboundWork.java:575)
         ... 5 more
    Caused by: java.sql.SQLException: Io exception: Connection reset
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:649)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1161)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3074)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:662)
         ... 24 more
    <2010-04-20 07:59:05,673> <INFO> <ukbss.collaxa.cube.activation> <Database Adapter::Inbound> <oracle.tip.adapter.db.exceptions.DBResourceException createEISException> A retriable exception occured. In BPEL you can configure a fault policy (starting with 10.1.3.3) to automatically perform retries. Please configure bpel/domains/<domainName>config/fault-bindings.xml
    I thought the error is due to database connection, but as per DB team, the database is up and this error happens for some records and some records are successfully executed.
    I am using Oracle SOA 10.1.3.4.0 and Jdeveloper 10.1.3.4
    Any help will be appreciated.
    Regards,
    Varun

    Nevermind, I found the problem. My school is incapable of finishing loading any sites through SSL, ever (without a proxy), and Twitter decided to lock my account to SSL without telling me. I just had to set FoxyProxy to use the proxy for https://twitter.com and it was fixed.
    I suppose other programs could still load Twitter because they didn't have the cookies to stay in my account, which means they weren't redirected to https.

  • Connection Reset Error, When invoking Web Services

    I'm trying to invoke a web service using 'Invoke Web Service' Operation. Its works for 8 out of 10 times. Sometime it stalled with "Conneciton Reset' error.
    When retry this stalled action from AdminUI, its works fine.
    Can someone advise on this issue?
    I have attached the error log for reference.
    Thanks,
    Nith

    If you attempt to retry the stalled component through adminui, it will work. Am i correct?
    If so, you can test the following approach.
    1. drag a blank component (e.g a decision point)
    2. connect a line between the exception of the Web Service Invoke operation to the decision point.
    3. Choose java.io.IOException from the eeception drop down.
    4. again connect the decision point back to the web service invoke component. (i mean a looping)
    This approach was working fine with me.
    Please see the attached image shows my routing.
    PS: After a couple of days, I tested without looping and it seems to be working. So I removed the loop now.
    Thanks,
    Nith

  • Socket Connection reset error

    i hava a server serving multiple clients. sometimes while reading data from the client by the thread, it is throwing an exception as follows:
    java.net.SocketException: Connection reset
    at java.net.SocketInputStream.read(SocketInputStream.java:168)
    at java.net.SocketInputStream.read(SocketInputStream.java:90)
    at Disex.Thread.clientHandlerThread.run(clientHandlerThread.java:86)
    where clientHandlerThread is my thread program to handle clients.
    i am in need of help to tackle this
    thanks
    asan

    hi...
    I think current description of your problem will not help anyone to see the issue properly. Please if you provide some detail info about your application and also if you paste the code block that is throwing exception. "Connection reset" is not saying much about your addressed issue.
    Raheel.

  • ACE - Connection Reset

    Hello All,
    I have a strange issue but I'm not sure it is content switch related in any way.
    A group of hosts talk to two servers connected behind a content switch via a VIP.
    Some dev are complaining about a high level of discarded / reset connections.
    From the trace we ran you can see some RST,ACK packets in Wireshark but no RST packet prior to that last RST,ACK packet sent by the ACE module to the clients.
    Did anybody come across the same kind of situation?
    Regards,
    Thibault.

    Is there a chance that you are running code A2 (3.2)?  You may be hitting a bug that I have found within my environment as well.  CSCti88248.
    CSCti88248—When the ACE is waiting to reassemble client packets, it may reset TCP-based client connections if all the following conditions exist:
    –ACE is configured with a Layer 7 load-balancing policy where the ACE proxies the client-side TCP connection before making a load-balancing decision
    –Client-side connection experiences packet loss
    –The TCP TX racing messages (data) counter in the output of the show np n me-stats -stcp is incrementing
    This problem can also occur with secure (SSL) terminated connections. Workaround: Configure an empty connection parameter map and add it to a multi-match policy map under the class map that is configured for the VIP experiencing the problem. For example:
    parameter-map type connection TCPReassembly
    policy-map multi-match MultiMatch_PolicyMap
       class HTTP_VIP_80
          loadbalance vip inservice
          loadbalance policy L7_HTTP_PolicyMap
          loadbalance vip icmp-reply active
          connection advanced-options TCPReassembly
    Regards

  • Itunes network connection reset (error -3253)?

    OK...I'm just about over iTunes. I have been purchasing more and more songs on my iPad from the iTunes store and then when I start up iTunes on my home PC, it starts to download the songs, as it is supposed to, locally to my hard drive. However, every single song does not complete downloading before a message comes up that the itunes network connection was reset. The song in Downloads indicates "err = -3253.
    Based on various discussions, I have added all of the apple sites to my security software (webroot), uninstalled and reinstalled itunes (pointless since it never really uninstalls), deselected "Allow simultaneous downloads", looked to see if I have conflicting services running (I don't), and pulled out several hairs clicking the OK button everytime the error comes up and clicking Resume All....
    Ultimately, I will get songs to download completely, but there really is no excuse for this.
    I  run Windows 7 Professional and have Verizon FIOS as my service provider.
    Anyone else experiencing this (I've had this happening for well over a month now)? Anyone have a solution?
    Thanks!

    This started happening to me about three days ago and meant iTunes Match was not working and nor was it possible to download updates to apps.  The internet was otherwise fine on my computer.
    I did a few things which did not work:
    1. Sign out of the Apple Store and log back in
    2. Turn off iTunes Match and restart it
    3. Remove uneeded items from the start up menu
    4. Restart cable modem
    5. Restart Apple Time Capsule
    6. Restart iTunes
    7. Restart Computer
    8. Update DNS settings from Google's to my ISP
    I then did the following which did work:
    1. Update DNS setting to Open DNS (as in James Robert's post above) and hit Apply
    I only updated the settings in the network system preferences panel against my Ethernet connection.  I did not amend anything in the Time Capsule or Modem.
    Frankly fed up that so much tinkering is needed at such a detailed level.

  • Broken Pipe / Connection Reset Errors

    I know they come from the user hitting the stop button on his browser. They are benign and can be ignored. I just don't want to see them in my logs (or my email box) anymore. Anyone figure out how to disable the logging of these messages?
    ####<Jul 14, 2006 10:41:48 AM PDT> <Error> <HTTP> <test> <test-front_01> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1152898908905> <BEA-101017> <[weblogic.servlet.internal.WebAppServletContext@130c3e2 - name
    : 'singles_admin', context-path: '/singles_admin', version: 4.10.0.001] Root cause of ServletException.
    javax.servlet.jsp.JspException: ServletException in '/WEB-INF/jsp/common/header.jsp': Can't insert page 'menuheader.jsp' : Broken pipe
    at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(InsertTag.java:921)
    at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:460)
    at jsp_servlet._web_45_inf._jsp._common.__userlayout._jspService(__userlayout.java:470)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
    at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:496)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:245)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)
    at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)
    at org.apache.struts.tiles.TilesRequestProcessor.processTilesDefinition(TilesRequestProcessor.java:237)
    at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:300)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:231)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3151)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    >

    What I did to prevent the same issue was ensure all servlets had try/catch blocks where I ignored broken pipe exceptions and all JSPs had error pages that similarly ignored broken pipe exceptions. Worked 90% of the time. Had a couple of places where custom tags were catching exceptions, logging them, then rethrowing them that I had to fix (hopefully InsertTag isn't doing this). I think I ended up with only one place where I still had a problem, which was somewhere inside of WLS. Happened when the user closed their browser as WebLogic was writing back a large response, I believe. We just made sure our responses were as small as possible to avoid this. Stripped out white space from our JSPs during compilation and put a lot into CSS.

  • Broadband Connection Problem - Error 101

    I am getting connection problems every single day, everyting will be fine but then all webpages get this come up...
    It will happen on both my laptops and a desktop. IE will fail to connect as well as Chrome.
    I have to restart either the PC and /or BT Hub to get the connection back again.
    Any help on this one please?
    Thanks,
    Rod.

    Hi Welcome to the forums
    Here is a basic guide to getting help from the community members done by CL Keith http://forumhelp.dyndns.info/speed/first_steps.html
    Have you tried the quiet line test? - dial 17070 option 2 - should hear nothing - best done with a corded phone. if cordless phone you may hear a 'dull hum' which is normal
    once you have posted the information asked for then the community members can help you more
    Thank You
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Maybe you are looking for

  • How to Delete Sales orders in BW which are  Archived  in R/3

    Hi All, Sales orders were archived in R/3 But it is still present in BW. I need to Delete the orders. Moroover i need to schedule a job for every two weeks checking in R/3 for archived and deleting it from BW. How this can be done. Can anybody help?

  • SAP NW 2004s ABAP Trial Version on Virtual Machine

    Good afternoon! I need to install SAP NW from subj on Windows Server 2003 SP2 on Virtual Machine VMWare WorkStation. VM is also installed on Windows Server 2003 SP2. The installation of NW completes successfully but I can't start the SAP server from

  • Iphone 5 and itunes don't syncronize

    When I try to sync phone 5 (ios 7.0.2) and itunes 11.1 the message that the computer is not authorised appears. I'm advised to authorize my computer (Windows 7) and I do it, the message that the computer is already authorized appears, but the syncron

  • How to read a pdf document which is saved on icloud

    how to read a pdf document which is saved on icloud

  • Duplicate PO in sales order?

    Hello Friends, Requirement is to get a duplicate PO warning message in sales order when the SO is created in 2 different distribution channels, we are using same sales org./div but different dist. Channel. Currently we have a setting  in place to giv