Generic GRE not working (ver 4.1.3.55)

Hi everybody.
I'm testing in Lab a configuration for one customer.
It's a basic environment with :
DATA CENTER (wccp)
1 WAEs 7341 and 1 Cat6506 routers
BRANCH (inline)
1 WAE 574.
Optimization works with l2-redirect and gre return in DATA CENTER !!
It does not work with egress-method generic-gre inteception-method wccp.
This is the problem that i can see with " show wccp gre" on the 7341..
" Packets received on a disabled service: 667790".
I read some manuals but...
I don't understand .. The service 61 and 62 works !!
So any idea ?
Thanks a lot to everybody
Vittorio

Hy and thanks to be interested.
That's the output you ask :
WAE-DC-01#sh egress-methods
Intercept method : WCCP
TCP Promiscuous 61 :
WCCP negotiated return method : WCCP GRE
Egress Method Egress Method
Destination Configured Used
any Generic GRE Generic GRE
TCP Promiscuous 62 :
WCCP negotiated return method : WCCP GRE
Egress Method Egress Method
Destination Configured Used
any Generic GRE Generic GRE
Intercept method : Generic L2
Egress Method Egress Method
Destination Configured Used
any not configurable IP Forwarding
And here there is another useful :
WAE-DC-01#sh wccp gre
Transparent GRE packets received: 52082
Transparent non-GRE packets received: 0
Transparent non-GRE non-WCCP packets received: 0
Total packets accepted: 0
Invalid packets received: 0
Packets received with invalid service: 0
Packets received on a disabled service: 50118
Packets received too small: 1964
Packets dropped due to zero TTL: 0
Packets dropped due to bad buckets: 0
Packets dropped due to no redirect address: 0
Packets dropped due to loopback redirect: 0
Pass-through pkts dropped on assignment update:0
Connections bypassed due to load: 0
Packets sent back to router: 50118
GRE packets sent to router (not bypass): 0
Packets sent to another WAE: 0
GRE fragments redirected: 28770
GRE encapsulated fragments received: 0
Packets failed encapsulated reassembly: 0
Packets failed GRE encapsulation: 0
Packets dropped due to invalid fwd method: 0
Packets dropped due to insufficient memory: 0
Packets bypassed, no pending connection: 0
Packets due to clean wccp shutdown: 0
Packets bypassed due to bypass-list lookup: 0
Conditionally Accepted connections: 0
Conditionally Bypassed connections: 0
L2 Bypass packets destined for loopback: 0
Packets w/WCCP GRE received too small: 0
Packets dropped due to received on loopback: 0
Packets dropped due to IP access-list deny: 0
Packets fragmented for bypass: 28770
Packets fragmented for egress: 0
Packet pullups needed: 57543
Packets dropped due to no route found: 0
Any new idea ?
Thanks
Vittorio

Similar Messages

  • Install not working (ver 10.1, firefox, Win7 64)

    Kept downloading and running updater, as admin, no antivirus, on my new 64bit Win7 laptop. Installer always reports success, but the Player remains at ver 10.0.
    Eventually downloaded Adobe's uninstaller, ran it, it removed ver 10.0. Rebooted. Ran installer. Open FF, no flash content displayed.
    Installer is simply not working.
    Please let me manually install this browser plugin. Links to the files please. The installer is crap.

    Thank you.
    The MSI package worked, direct link is:
    http://www.adobe.com/go/full_flashplayer_win_pl_msi

  • Bates Numbering/File Rename not working ver 9.1.3

    I am trying to apply Bates numbering to a series of documents for document production in a litigation matter that I am handling.  I want to apply Bates numbers and also rename the documents with the Bates range of the documents included in each document.
    The version of Acrobat on my Windows system is version 9.1.3.  In that version, the Bates numbering appears as it should in the right place on each page, but Acrobat will not rename the file names with the Bates range.  When I try the exact name thing with the same files on another computer in my office, running version 9.0, everything works fine, and the file names are approrpriately changed to the Bates range of the numbers within the file.
    Something appears to have been changed in making version 9.1 that has messed up the ability of Acrobat to rename the files when applying Bates numbers.
    Anyone have any information on this or a solution?

    I have no idea, other than LR wasn't designed to handle anything but images that cameras rendered. I was surprised to learn LR even played the audio file.
    Your question was clear; I read it badly.
    AFAIK, you'll have to manually name the audio file, but since each one is a custom job, it shouldn't be too onerous.

  • Generic sync not work correctly

    Hi,
    We are trying to get the inbound container in Java application, we use the method
    GetElementsWithFieldName(String) in the object InboundContainer, this method returns an array that has only one entry, but really the wrapper function in R3 returns 6500 entries.
    Best regards.
    Thanks all.
    SCZ

    hi Satur,
    Is your Generic Sync Application Synchronous? you may find it in using the OutBoundContainer Type. if it is TYPE_OUTBOUND its asynchronous otherwise (TYPE_REQUEST) its synchronous. The same information can be found in MESYHEAD table entries too.
    If it is Asynchrnous, then the MESYBODY Containers won't get deleted unless you sync from the client. if it is synchronous, it will disappear immediately.
    I suggest your application be ASynchronous and check the same. If it still happens, there's some problem with your middleware. It is not taking the container as ASynchronous Processing. You'll have to go all over your Post-Installation Settings to check if all are right. (Tedious process indeed)
    If it is synchrnous and your client is not receiving all the entries, the problem is with your receiver code handling. check your Process() method.
    Regards
    Ak.

  • Java 5 generic does not work

    In coding with java 5, I found I could not use Java 5 generic for all cases. For example, JAAS define a LoginModule interface as following
    boolean abort()
    boolean commit()
    void initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options)
    Initialize this LoginModule.
    boolean login()
    boolean logout()
    In initialize method, the login module should hold the reference to sharedState parameter and in its login method, the module put values into sharedState object to allow other login modules to share states. For example, If I would like to share password with other module, I should be able to do the following
    sharedState.put("javax.security.auth.login.password", password);
    But the java 5 compiler, says I can't put value into the sharedState map since ? is a wildtype.
    Any one can tell me how to put values into the map Map<String, ?>.
    Or If java has some good solution for this.
    thanks in advance.
    hao

    minghao wrote:
    I agree with you. If the semantics of java generic ? is not reworked, then the login module interface definition is not right.More precisely: if neither the semantics of ? nor the LoginModule interface is changed then the LoginModule interface doesn't make a lot of sense as it is.
    But I think the semantics of java generic ? should be reworked.Why? Simply because a single interface is ill-designed?
    If we changed the semantics of Map<String, ?> to allow .put() to be called, then a lot of code that depends on that semantics would break.
    And if you want a Map from String to any object type, then simply use a Map<String, Object>. That's what it's there for.
    It should loose some restrictiions if there's some type explicitly defined, such as Map<String, ?> if Key's type is explicitly defined, then the value could be added by using wildcard.I don't really get what you want. But I think you need to get a deeper understanding of generics. The two parameters of the Map interface (K and V, if I remember correctly) are completely unrelated.
    You could give the same example with Collection<?>: It doesn't make any guarantees about the type it returns (i.e. it returns plain Objects) and doesn't accept any calls to add() because you can't possibly fullfil the type-requirements of the wildcard type.
    Those are perfectly acceptable, fine and useful semantics. I see no need to change that.

  • Generic delta not working with '0calday' change pointer

    I have created a generic datasource based on a database view and extracted data with afull load infopackage into BI. Then, I configured the generic delta with a date field and 0calday type. Set the safety interval of 1 day as a lower limit. Saved the datasource in R/3 and Replicated and activated the datasource in BI. Done some changes to a record in R/3.
    After that, I created an Init delta infopackage (with data) and extracted the data with the same number of records as extracted in the full load. Note that all these were done on the same day.
    If I have done something wrong by doing it on a same day, I should get 0 records.
    Why did I get the same data with a delta init package? I wonder the generic delta is configured correctly or not? Please tell me where I have gone wrong. Thanks..

    Hi Shiva,
    While running the delta init, you have option of without data transfer and, with data transfer.
    I am sure, you used with data transfer and thats why  got all those records same as full load.
    U can use different options like.
    1. DO the init without data transfer and then do the full load, and then run delta everyday for delta records
    2. Do the init with data transfer then no need to do the full load and the subsequent delta will take care day onwards,
    I guess your are good to do the delta load by tomorrow.
    Thank-You.
    Regards,
    Vinod

  • Generic Creator not Working

    currently i am using (sp11) can you suggest me a better code so that it suits to create the same

    Hi Deena,
    Again I took the exact code from your post and ran it, and it worked.
    I also inquired on whether SP11 had limitations, and the developers say your code should work for SP11.
    Please send the actual file that you upload to me ([email protected]) and also a screen shot of the upload page errors.
    Thanks.
    Daniel

  • Microsoft PPTP / GRE not working with UC320

    We just upgraded our phone system to a UC320.  We are configured with the default VLAN settings.  I have added port forwarding for 47 and 1723 but when I try to cennted with the Microsoft VPN optin with my Windows 7 desktop I receive an error 619.  Does anyknow if this is possible with the UC320 adn what I should try to get this working again.  It worked with our old router.

    Hello.  So, does Portforwarding work at all on this unit? 
    I am trying to do some portforwarding on my UC320.  I am using the ip address of 192.168.24.1 as the default gateway for my LAN, which is the UC320.  I am using a Cisco SF302-08P Managed POE switch with an IP address of 192.168.24.2.  From the UC320 i can ping the SF302-08P and visa versa.  However, when i try to port forward in the UC320 to the switch (so i can manage both remotely) it doesn't work. 
    The Port Forward rule i'm using is as follows:
    TCP/UDP Port 8090 forward to 192.168.24.2 port 80. 
    I have also tried many permutations of this rule using multiple ports on the WAN side (80, 8081) and just using TCP (no UDP).  All variations produce the same result - nothing!
    Also, i do have http management enabled on the switch.  I can manage the switch just fine from my web browser just by entering 192.168.24.2.  So that seems to be working as well. 
    PLEASE HELP!!!!

  • Installed Windows 8 on a late 2011 MacBook Air and was working fine now keyboard not working so cannot enter password? Caplocks key works but I am locked out on my own PC and cannot seem to get it to recognize built in keyboard,bluetooth,generic USB one.

    Installed Windows 8 on a late 2011 MacBook Air and was working fine now keyboard not working so cannot enter password? Caplocks key works but I am locked out on my own PC and cannot seem to get it to recognize built in keyboard,bluetooth,generic USB one.

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Screen rotation not working in iso 5.0.1 ver

    Screen rotation is not working in ios 5.0.1 ver in ipad2 with 3g please help

    Is there a lock symbol at the top of the screen next to the battery indicator ? If so, then depending on what you've got Settings > General > Use Side Switch To set to (rotation lock or mute notifications), then you can lock/unlock the rotation by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085
    If there isn't a lock symbol then try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Soft button STOP not working in alarm mode ver 50 ...

    I have recently update my Nokia 5800 firmware to ver 50 and found the soft button STOP not working during alarm. This was oK in ver 21.
    Anyone has any idea how to correct this issue ?
    Chris
    Solved!
    Go to Solution.

    Have u noticed that there aren't buttons but actually moving arrows? U will have to slide you finger across the screen in the moving direction.

  • Firefox Ver. 34.0.5 fails to render Youtube website. CSS not working. Ideas?

    Youtube.com website not rendering (CSS requests are not working), and videos not accessable. This is not related to any plugin issues, such as Flash, etc. The youtube.com main page renders like an experimental HTML document, with no style-sheet info. I've attached screen images to show what it looks like.
    I found one other similiar situation, in Arch-Linux, where the problem turned out to be a DNS configuration issue. I have tried many DNS configurations, and confirm I can get to every other website, and they seem to render ok. I can even watch videos on other websites, if I enable the Flash plugin. I have removed and re-installed Firefox at least three times, as I have it working correctly on several other machines (LInux and Windows ). The problem machine runs Windows XP, SP3, and is an older HP box. Note that all other websites seem to render correctly, and videos are watchable. It appears to be related to i.ytimg.com CSS (cascading style sheet) access just not working, but only for Youtube. Any ideas? Three detailed screen captures are provided below. I tried removing the firewall restrictions, made no difference. I also did a detailed scan for virus issues and malware, but no evidence of any found. I'm stymied. Any suggestions appreciated.
    One issue might be the recent TOR browser bundle, which I have installed on the machine. It works fine, and renders Youtube.com, but videos are slow. TOR documentation and technical reports assert that TOR-browser does not interact
    with existing browsers (it is Firefox 31.xx, I think.) TOR does establish proxy settings, and I have confirmed the Ver. 34 non-TOR Firefox is configured to not use any proxy setting.
    I am running out of ideas here. This behaviour is strange. Any suggestions how I can detail debug Firefox in operation as it does this broken rendering? The error even affects earlier versions of Firefox.

    *** SOLVED *** !!!
    Got it!
    I have spent *days* on this, because it just bugged me so much!
    FOund it by searching and reading all the Mozilla FIrefox support forums.
    Problem was an old hard-coded fix that I put into my HOSTS file, on my Windows XP, SP3 machine. Specifically, I had experienced hang issues with a site called "i.ytimg.com", which I believe is the static cache for Google/Youtube stuff. I tracked this error down to failures of security certificates, but confirmed my security cert store was isometric between my machine cluster (they were all the damn same!)
    So, I had put two lines in the HOSTS file, to hard-code an IP address so that Google-youtube pages would not hang up waiting for "i.ytimg.com"
    Well, of course, Google/Youtube is now using different locations, or akami servers or some damn thing...
    The fix just involved removing these two hard-coded lines from my HOSTS file. I just commented the old fix out, and now everything works.
    <pre>
    # --- two lines added to fix i.ytimg.com hang problem
    # 74.125.162.39 static.cache.l.google.com s.ytimg.com
    # 74.125.162.39 static.cache.l.google.com i.ytimg.com
    </pre>
    (The # symbol is used to make a comment in hosts file... )
    On Windows XP, XP3, the "hosts" file is typically located in:
    C:\WINDOWS\system32\drivers\etc\hosts
    If you are having goofy problems with some youtube/google webpages
    not rendering, or generating SSL (bad_certificate) errors, check your
    "hosts" file, and ensure no ip redirection has been slotted in there
    from a while back.
    Hope this helps others...
    - Mark Langdon, GEMESYS Ltd.

  • TP3 - Generic JDBC Seems Not Working - Connection Worked in TP2 but Not TP3

    I had a connection working in TP2 to a PosgreSQL database. I have done in TP3 exactly what I did in TP2 to set up the connection but the connection test fails listing the name of the driver.
    I put the JAR in jdev\lib, I added a class/library to the default project properties with the classpath listing the location of the JAR including the filename, then I created a new connection with the same driver name, user/password, and JDBC URL I used in TP2. None of this worked though. I even tried restarting JDeveloper.
    Any ideas on what I could be doing wrong or if something new needs to be done in TP3?
    On a side note, although I got the connection working to the PostgreSQL db working in TP2, JDeveloper was never able to find its tables like when creating an entity from a table for example. I know this is not an issue with the driver JAR because this works flawlessly in Netbeans 6.
    Thanks in advance for any help.
    KurzHome

    Hi CM and Chris,
    I have the exact same problem when I tried to create a connection to SQL Server 2005 using Generic JDBC. It worked well for TP2 but does not work for TP3. Further more if you create it anyway, you will get following message in testing:
    An error was encountered performing the requested operation:
    com.microsoft.sqlserver.jdbc.SQLServerDriver
    Vendor code 0.
    I tried to export the working connection from JDeveloper 10.1.2. and import it to TP3. I could not solved the problem.
    Then I export the SQL server connection from TP3. The connection is expressed as
    <Reference credentialStoreKey="yuwyuw" className="oracle.jdeveloper.db.adapter.DatabaseProvider" name="yuwyuw">
    <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/>
    <RefAddresses>
    <StringRefAddr addrType="subtype">
    <Contents>thirdParty</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="user">
    <Contents>yuw</Contents>
    </StringRefAddr>
    <SecureRefAddr addrType="password"/>
    <StringRefAddr addrType="driver">
    <Contents>com.microsoft.sqlserver.jdbc.SQLServerDriver</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="DeployPassword">
    <Contents>false</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="customUrl">
    <Contents>jdbc:sqlserver://host:1433</Contents>
    </StringRefAddr>
    </RefAddresses>
    </Reference>
    It seems DatabaseProviderFactory could not create connection other than Oracle. BBut JDev10.1.2 does not use Factory class. I tested Driver and URL by a small program that created a connection using connection string. No problem at all.
    Now I have 2 questions:
    1)How can we access the source code to see what happens when we submit connection creation request?
    2)You mentioned that we can swap JVM version. But this can only be done on project level. Can we do it on IDE level, because IDE connection is not associated with any project.
    Thanks,
    wyuwyu

  • New HP probook 440 G1 internet explorer ver.11 not working in windows 8.1 64 Bit

    New HP probook 440 G1  internet explorer ver.11  not working in windows 8.1 64 Bit. When I open it closed or crash in a moment.Please help for the issue.
    M Khan

    Hi,
    I suggest you check the fix in this article:
    Fix: Internet Explorer freezes, crashes, hangs in Windows 7 | 8
    http://www.thewindowsclub.com/internet-explorer-freezes-crashes-hangs
    If it doesn't work, please help to post back the IE crash dump file here for our research:
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\iexplore.EXE]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, open IE to repro the issue. If crash issue appeared, please find the crashdump file under c:\.
    To further help you, please upload this file into Skydrive and shared the link here.
    Also, you can try to analyze dump by yourself if you would like to:
    How to analyze app crash dump file:
    http://blogs.technet.com/b/askperf/archive/2007/05/29/basic-debugging-of-an-application-crash.aspx
    Kate Li
    TechNet Community Support

  • Selection in the Generic Data Source does not work

    Hi gurus,
    I have some problem with the selection in the Generic Data Source.
    I have created a view as a base of a Generic Data Source.
    This view is based on several table; i.e.: VBUK-VBELN (Sales Order number), VBAP-ERDAT (creation date of Sales Order), VBAP-POSNR (Sales order item), VBAK-BSTNK (Customer Purchase order number).
    In the view, some join conditions have been defined: VBUK-VBELN = VBAK-VBELN, VBUK-VBLN = VBAP-VBELN.
    I want to extract the Sales Order number, Sales order item and Customer Purchase order number for the Sales order created on the previous year.
    On the Generic Data Source, I select VBELN (Sales order number) and ERDAT (creation date of sales order) as selection.
    However, when I run the extractor checker (RSA3) on this Generic Data Source, the selection does not work at all, i.e.:
    eventhough I restricted the Sales order number and/or the creation date of sales order, the generic data source ignores the selection criteria and extract ALL data.
    Does anyone ever have similar problem? Did I miss some step in the Generic DAta Source creation? How to fix this problem?
    Thanks a lot in advance.
    Best regards,
    Fen

    Hi Fen,
    Just check what is the output you get for the same selection for the view you created.
    Bye
    Dinesh

Maybe you are looking for

  • ITunes download err = -43 What does it mean and how do I solve ti?

    After purchasing several movies from iTunes, and leaving them in iCloud until I wish to watch them (saving HD space), I am encountering numerous problems downloading them to my MBPro (late 2011 model running OS 10.7.5, iTunes 11.1.3 (8)). Namely, the

  • Wireless printing w/Mac and PC

    Help! I can print wirelessly over my AE using Rendezvous with no problem; however, I can't figure out how to adjust my system to allow a PC using Windows XP to wirelessly print over the same local network. I did check the "Printer Sharing" in my Shar

  • The software that is used to decode this media is not available on this system. Installing the corre

    I have this video(.AVI extension) that im trying to add to the project(PAL DVD) but it gives me that error message all the time. I also tried it as NTSC and it didnt give me any error but encore only recognizes it as a audio file and i just dont get

  • Changing color of table

    How can I change the color of webdynpro table in which all fields are Textviews.It looks in blue color but I want to get all field in white color Thanks FahadHamsa

  • Trading phones with another verizon customer

    my coworker and i both have verizon service.  she has an iphone 5, i have a samsung Galaxy III.  we want to switch phones.  is this something we can do via the website or do we need to go to a store.  are the sim cards compatible?  thanks.