WAAS installed without Central Manager. not compressing traffic

Hi,
I installed 2 SRE modules in 2 ISR G2 router and configure them without Central Manager, but they are not doing compression, Traffic is going to Branch to Head Office but without compression.
My configuration is similar to this link
http://2and2is5.wordpress.com/2011/03/30/configuring-cisco-waas-on-a-sre/
I want to compress http, exchange and cifs traffic.
I don't have Central Manager, could WAAS works without Central Manager ?
Can anyone help me with that.
Thanks in Advanced.

Hi Arslan
WAAS requires a Central Manager however once they are setup it doesn;t technically require one in order to continue to to optimise traffic. If your WAAS environment is setup correctly and is intercepting the traffic http and CIFS should automatically been compressed with LZ compression. WAAS can accelerate Exchange however it depends on how your Exchange environment is setup and whether it is encrypted? If its encrypted via SSL you will need a WAAS Central manager to accelerate it.
To check if you WAE's are running correctly type in "show cms info" on the WAAS and you will probably see your WAE is status is not online:
WAE2#sh cms info
Device registration information :
Device Id                            = 3107921                            
Device registered as                 = WAAS Application Engine            
Current WAAS Central Manager         = ##.##.##.##                       
Registered with WAAS Central Manager = ##.##.##.## 
Status                               = Online                             
Time of last config-sync             = Mon Sep 24 13:18:51 2012           
CMS services information :
Service cms_ce is running
You can check the accelerator status with the below command:
WAE2#sh accelerator
Accelerator     Licensed        Config State    Operational State            
cifs            Yes             Enabled         Running   
epm             Yes             Enabled         Running   
http            Yes             Enabled         Running   
mapi            Yes             Enabled         Running   
nfs             Yes             Enabled         Running   
ssl             Yes             Enabled         Running   
video           No              Disabled        Shutdown  

Similar Messages

  • WAAS 4.1 central management

    Hi All,
    Base on my understanding, we can run CM on 274 appliance with enterprise license. my question is: if company wants to save money and use 274 as AA, is it possible to implement waas 4.1 solution without even have CM? or CM is the mandatory piece of design?
    thanks
    Alex

    The use of a Central manager is not required to accelerate traffic. However, without, you will not have access statistics reporting, CM software updates, GUI configuration and more.
    All AA will have a default policy, but will need to use CLI to implement any advanced features. Highly recommended to utilize a CM in optimization environment as number of site deployments grow. Without CM each branch / core node needs to be administered individually as opposed to centrally using group policies.
    Taking the cost into effect of admin for each device vs. ~6k for a manager kind of pays for itself.
    The WAVE274 allows for up to 1000 managed devices.

  • How can I enable GUI in WAAS Stand By Central Manager

    Hi guys,
    I'm testing the stand by central manager, the situation is as follows:
    When the active central manager goes down I try to access the GUI in stand by central manager but it always sends me the following error
    Graphical user interface is not enabled in this standby CM.
    Please close  this window and go to the Primary CM.
    So I think that I have to enable anything but I don't know what, can anybody help me?
    Thanks in advance!
    Lenin

    Currently the switch to a standby CM requires manual intervention.
    The benefit of the Central Manager is that it provides configuration management, device management (software upgrades, etc.), reporting, and security services from a single, central location.  Note that the security services, such as disk encryption keys, SSL certificates, etc., are available from the Standby CM (in the event that the Primary CM is unavailable) without the need to promote the Standby to Primary.
    Regards,
    Zach

  • WAAS - behavior if central manager is down

    We would like to move our 4.1.3 central manager to a different city. I understand that the waas devices dependent on the CM continue to operate if the CM is down, but if a waas device reboots while the CM is down, will it continue to operate?

    The easy way to do this would be to add a Standby CM and fail over to it while the Primary is offline during the move.
    However, if a box is rebooted while a single CM is offline, it should be okay unless you have disk encryption enabled. Then it won't be able to access the disk cache until it can reach a CM during the boot cycle for the encryption key.
    Also, another thing to consider: Are you using a dns host name (waascm.cisco.com) in your WAE configs for the "central manager address" or are you using an IP address that will be changing? If you are using an IP address and are NOT using the Standby CM failover technique, then you have to change it on the WAEs manually when the CM comes up with a new IP address.
    Hope that helps,
    Dan

  • Firewall between WAAS 7341s and Central Manager.

    Is there a white paper that describes having a firewall between a Central Manager and the WAAS devices it is managing?  I need to know all the ports and protocals that need to be allowed through the firewall. - Thanks

    Hi Jeff,
    I am searchign for white paper for you but you need following ports bi-directionally open between WAAS CM and WAAS to communicate to each other.
    1. TCP 8443
    2. TCP 443
    3. UDP 4050 - if you are using directed mode.
    4. TCP 22 and 23  - If you plan to use SSH / Telnet for management.
    Regards,
    PS: If this answers your question, please mark this as Answered.

  • Installing Oracle Entrerprise Manager not Grid control separately to the DB

    Hi,
    Can I install Only Oracle Enterprise manager console 11g not grid control separately to the Database server.
    If yes, what should I do?
    Thanks in advance

    dbakely wrote:
    Hi,
    Can I install Only Oracle Enterprise manager console 11g not grid control separately to the Database server.
    If yes, what should I do?In Oracle terms, there is a world of difference between Installing and Configuring.
    If you want to Install Database Control to a different location, the answer is basically 'No' (from what I can tell).
    If you want to Configure Database Control at a different time than the database, then you use emca. However, it depends on the ORACLE_HOME of the database and generally can not be configured to a differnert location or computer. That is one reason for using Gr\id Control.

  • Placing components without layout manager not working

    Hey there, I am working on a java game version of pong which I have begun to try and do using Java Swing. The problem I am currently having is reposition the components in the main window part of the game which is were the user can start a new game or close the program. I having tried using the absolute positioning by setting the layout manager to null but then everything goes blank. I can't figure out why this is not working. Here is the code so far...
    import javax.swing.*;
    import java.awt.*;
    public class SwingPractice extends JFrame
        private Container contents;
        private JLabel titleLabel;
        private JButton startGameButton;
        public SwingPractice()
            super("SwingPractice");       
            contents = getContentPane();
            contents.setLayout(null);
            this.getContentPane().setBackground(Color.BLUE);
            startGameButton = new JButton("Start Game");
            startGameButton.setFont(new Font("Visitor TT1 BRK", Font.PLAIN, 24));
            startGameButton.setForeground(Color.cyan);
            startGameButton.setBackground(Color.blue);       
            startGameButton.setBounds(350,350, 75, 75);
            titleLabel = new JLabel("The Amazing Ping Pong Game!!");
            titleLabel.setForeground(Color.cyan);
            titleLabel.setBackground(Color.blue);
            titleLabel.setOpaque(true);
            titleLabel.setFont(new Font("Visitor TT1 BRK", Font.PLAIN, 24));
            titleLabel.setBounds(0,350, 75, 75);
            contents.add(startGameButton);
            contents.add(titleLabel);
            setSize(700,350);
            setResizable(false);
            setVisible(true);
        /*private class SwingPracticeEvents implements ActionListener
        public static void main(String [] args)
            SwingPractice window = new SwingPractice();
            window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       Any other critiquing would be greatly appreciated. Thank you.
    Edited by: 804210 on Oct 21, 2010 1:30 PM

    804210 wrote:
    Hey there, I am working on a java game version of pong which I have begun to try and do using Java Swing. The problem I am currently having is reposition the components in the main window part of the game which is were the user can start a new game or close the program. I having tried using the absolute positioning by setting the layout manager to nullDon't. Ever. Never. Well, mostly.
    Read the tutorial chapter about [url http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html]Laying out components. It even features a section on absolute positioning - which you should skip reading, of course! :o)
    And read this old Sun topic: http://forums.sun.com/thread.jspa?threadID=5411066
    Edited by: jduprez on Oct 21, 2010 10:48 PM

  • WAAS Express devices went offline in Central manager

    Hi all,
    after a long time i have a new issue in our WAAS environment.
    We're running several WAAS Express devices.
    And a few weeks ago i integrated them into our WAAS Central Manager.
    The registration of WAAS Express device was done on basis of "waasx_deployment_guide_120910.pdf"
    Now when i came back from christmas holiday i detected that all of them became offline again in CM.
    Activating as well as replacing did not work, cause the router detected that the device is still registered.
    i got the following output after this:
    Jan 10 15:30:37: %WAAS-3-WAAS_CM_REGISTER_FAILED: IOS-WAAS registration with Central Manager failed for the following reason: Registration r
    ecord for this device already exists or other devices share certificate or mac address or ip address with this device. Failed to process reg
    istration request initiated from 10.11.176.1
    Jan 10 15:30:37: %WAAS-3-WAAS_CM_REGISTER_FAILED: IOS-WAAS registration with Central Manager failed for the following reason: Registration r
    ecord for this device already exists or other devices share certificate or mac address or ip address with this device. Failed to process reg
    istration request initiated from 10.11.176.1
    Now to my questions:
    How can i set the WAASxpress router to Status active again on CM?
    What could be the reason why the WAAS express device became offline?
    thanks for your feedback in advance
    Dieter

    Hi Dieter,
    i am just curious to know what made the WAAS express go offline. Even if you open a TAC case, TAC is going to ask this question.
    1. Was there any IOS upgrade performed on routers?
    2. Was the routers reloaded for any reason?
    3. If you are using AAA / TACACS, any changes like upgrade / renewal of certificates on them?
    This information will help you narrow down the problem quickly. If you can share above information, we might be able to move something for you.
    Regards.

  • Do i need the Central Manager ??

    Hi,
    i have 2 WAE network modules on my 3800 ISR Routers.
    if i don't need the GUI for statistics, can i configure a working setup without central manager entity ?, can i do all the configuration directly on each WAE network module and still get all the optimization and performance ?
    thanks,

    Off the top of my head, disk encryption and the SSL AO are the two big items that will not work without the Central Manager.
    The configuration guide is available here:
    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/waas/v417/configuration/guide/cnfg.html
    Regards,
    Zach

  • Lync 2010 to 2013 Migration DB issue, central management database.

    Hello ,
    During Lync 2010 to 2013 migration , on my back end database for Lync 2013 I previously created there data base instances on my lync 2013 BE , (RTC,MON, ARC) THERE DIFFERENT ISTNACE using sql server enterprise 2012 .
    Now I want to finish the migration by moving the central management server to the lync server 2013.
    my question now I tried to create a new DB instance and I face some issue related  the space on the server .
    can I use any of the existing isnatce which I created before for the (RTC,MON, ARC) or can I sue the default instance which is created by default with sql 2012 server installation .to install the central management database.
    do I need a spate instance ? for the new central management store on my lync server 2013
    Thanks
    MK

    Hello
    After I run the command
     Install-CsDatabase -CentralManagementDatabase -SqlServerFqdn hq-lync2013-be.MYDOMAIN -SqlInstanceName RTC.
    -Then
    Enable-CsTopology
    -Then
    Move-CsManagementServer .
    And now after the move when I check the logs :
    WARNING: The move completed successfully but the following additional steps are required:
      Run local setup on the following computers to remove Central Management services that are no longer defined in the topology:
        - HQ-LYNC-FE-01.MYDOMAIN
    WARNING: "Move-CsManagementServer" processing has completed with warnings. "2" warnings were recorded during this run.
    WARNING: Detailed results can be found at
    "C:\Users\MYUSER\AppData\Local\Temp\2\Move-CsManagementServer-0d4806f4-554d-497d-a0dc-0fc98a6e076d.html".
    THESE AR ETEH TWO WARININGS :
    Warning: Failed to cleanup file store for the new Central Management Server. Error The directory is not empty.
    Warning: The move completed successfully but the following additional steps are required:
    Run local setup on the following computers to remove Central Management services that are no longer defined in the topology:
    - HQ-LYNC-FE-01.MYDOMAIN.
    I Run the local setup on both the FE2013 AND FE2010.
    now when I run the command :
    Get-CsManagementStoreReplicationStatus
    UpToDate           : False    (I shutdown this server )
    ReplicaFqdn        : HQ-EDGE01.mydomain
    LastStatusReport   :
    LastUpdateCreation : 3/16/2015 1:52:45 PM
    ProductVersion     :
    UpToDate           : False
    ReplicaFqdn        : HQ-LYNC2013-FE.mydomain
    LastStatusReport   :
    LastUpdateCreation : 3/16/2015 1:52:45 PM
    ProductVersion     :
    UpToDate           : False
    ReplicaFqdn        : HQ-LYNC-FE-01.mydomain
    LastStatusReport   :
    LastUpdateCreation : 3/16/2015 1:52:45 PM
    ProductVersion     :
    UpToDate           : False
    ReplicaFqdn        : HQ-LYNC-MA-01.mydomain
    LastStatusReport   :
    LastUpdateCreation : 3/16/2015 1:52:45 PM
    ProductVersion     :
    NOW THEER IS REPLICATION ISSUE ?
    I notice that service on my lync 2010 SOME OF THEM ARE STOPPED :
    FILE TRANSFER AGENT , MASTER REPLICATORE AGENT , CALL PARK SERVICE (ALL ON LYNC 2010)
    ALL SERVICE ON 2013 FE IS OK AND RUNNING..
    I notice this error in my lync server 2013 vents .
    I host the shared file on my lync server 2010 mediation server
    Microsoft Lync Server 2013, Master Replicator Agent service encountered an error while accessing a file share and will continuously attempt to access this file share until this issue is resolved. While this condition persists, replication to replica machines
    might not occur.
    IO failure occurred for Path=\\HQ-LYNC-MA-01.mydomain\LYNCSHARE\1-CentralMgmt-1\CMSFileStore\xds-master\working\replication\tmp. Exception=Access to the path '\\HQ-LYNC-MA-01.mydomain\LYNCSHARE\1-CentralMgmt-1' is denied..
    Cause: Possible issues with file share permissions. This can occur if the computer hosting the file share has outdated cached credentials for the computer that is trying to access the file share.
    Resolution:
    For details about how to resolve file share permission issues, see the product documentation.
    SO ANY ADVICE ?
    Regards
    MK

  • WAAS IP ACL not matching traffic

    Hi,
    i'm trying to configure some ip access-lists on a WAAS but it seems that it's not matching the traffic.
    interface InlineGroup 1/0 inline vlan all
    ip access-group test in exit
    ip access-list extended test deny icmp any any
    exit
    Im still able to ping wherever i want.
    Any ideas? Or is it not possible to handle traffic with ACLs like that on WAAS?
    Thanks,
    Markus

    Hi Markus,
    Interface ACL—Applied on the built-in, port channel, standby, and inline group interfaces. This type of ACL is intended to control management traffic (Telnet, SSH, and Central Manager GUI). The ACL rules apply only to traffic that is destined for the WAE or originates from the WAE, not WCCP transit traffic. Use the
    ip access-group interface configuration command to apply an interface ACL.
    As explained above the ACL rule apply only to traffic destined to the WAE or originated from the WAE and not for transit traffic. Hope this helps.
    Thanks,
    Rajesh

  • Where May I get WAAS OS 4.2.1 for Central Manager?

    I am not seeing ANY WAAS software in Feature Navigator.

    Hi James,
    There is no specific image for Central manager. You can select the mode when you install WAAS for the first time -->  whether you want it to act as central manager or application acceleration. You can select any of the universal images. Universal images can be used for Application accelerator or Central Manager but Accelerator images can only be used for application accelerator.
    Further details about various WAAS images on CCO can be found here:
    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/waas/v443/release/notes/ws443xrn.html#wp90088
    You can download the WAAS images under Cisco --> Support --> Downloads --> Browse all categories --> Products --> Application Networking Services --> WAAS --> WAAS software.
    Regards.
    PS: Please mark this as Answered, if this answers your question.

  • Renewing Self Signed Certificate for WAAS Central Manager

    Hi,
    We would like some help from you about the following: We have an WAAS Central Manager which its self-signed certificate validity has expired as showed below:
            Validity
                Not Before: Jul  7 00:47:06 2009 GMT
                Not After : Jul  6 00:47:06 2014 GMT
    We have used its certificate to install some other remote WAAS Express routers. 
    We would like to know the following:
    1. is it possible to renew this certificate? or 
    2. do we need to reinstall another certificate on CM and replicate this new one on these waas express remote devices?
    If affirmative for at least one of them, please, could you share any document that describe how to do it?
    I have attached some output commands from our CM.
    Thanks,
    Marcelo

    attaching file now!!!

  • Recovery Manager not present and cannot install it

    I am working on a friend's computer as a favor as he knows nothing about computers.  I know some, but not much/enough about HP's.  Windows failed so I entered Recovery Manager (f11) and made a backup image ( it had never been done on this computer) to a USB, Sony 32 gb.   When I tried to boot from the USB during system recovery it would not boot.  I tried changing BIOS settings removing protected boot and switching to legacy boot device, but it still would not boot.  So I had downloaded a Win 8 install ios, burnt it to a DVD.  It installed Win 8.1 fine, but it did not allow me back into Recovery Manager.  I tired to use the Restore System but it still did not boot from the USB.  Recovery Manager does not run. The restore partition is intact on the hard drive, so I have been trying to reinstall Recovery Manager with Windows running from RM/Tools/Rita-Tools/HPRecovery.exe. It will not finish installing RM.  So I tried to install it from SW setup/RM4Win/installer.msi, but gives me "a script for this install to complete could not run. Contact your support or package vendor." Another time I tried it said the path was incorrect.   I even tried copying the recovery image from the USB to the RM folder on the recovery partition but that gives me an incorrect path message too. I tried to find a file suggested on C;\Program files (x86)/Hewlett-Packard/HPRecovery Manager/Rebecca.exe but it is not there. I read that some USB's are not compatable but it did not giv e a compete list, only a few examples.  Don't know where to find that list so I can buy another USB and copy the image over to it. Please, anyone, who actually with some indepth experience, would you help? I don't have much hair left from pulling it out. 

    WHen you get trouble with msi files you usually need the Microsoft Installer cleanup utility.
    Here is a method for removal of iTunes and related programs with clean up and reinstall.
    Download a fresh copy of iTunes and the stand alone version of Quicktime (the one without iTunes)
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program. The installer doesn't give any message to confirm the installation.
    http://support.microsoft.com/kb/290301/
    (To run the program – All Programs>>Windows Install)
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    *If you hit a problem with one of the uninstalls don't worry*, carry on with the deleting of files and folders as directed in the method.
    When you get to deleting Quicktime files in the system32 folder as advised in the method, you can delete any file or folder with Quicktime in the name.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    If you don’t see an entry for one of the programs that did not uninstall, look out for blank entries or numeric entries that look like version numbers e.g. 7.x for Quicktime or 1.x for Bonjour.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.

  • It is not possible to install LenovoEMC Storage Manager for Linux on Ubuntu 14.10

    hi,
    I have big problem installing LenovoEMC Storage Manager for Linux on Ubuntu 14.10 64bit.
    I downloaded it from https://lenovo-na-en.custhelp.com/app/answers/detail/a_id/26108
    Installed JRE (both 64 and 32 bit)
    Selection Path Priority Status
    0 /usr/lib/jvm/java-8-oracle/jre/bin/java 1 auto mode
    * 1 /usr/lib/jvm/java-8-oracle/jre/bin/java 1 manual mode
    2 /usr/local/java/jre1.8.0_25/bin/java 1 manual mode
    java -version
    java version "1.8.0_25"
    Java(TM) SE Runtime Environment (build 1.8.0_25-b17)
    Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
    tryed with both. but without success.
    I am still getting error:
    ./setup-1.4.4.14439.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    Launching installer...
    Graphical installers are not supported by the VM. The console mode will be used instead...
    Preparing CONSOLE Mode Installation...
    ===============================================================================
    Choose Locale...
    1- Deutsch
    ->2- English
    3- Español
    4- Français
    5- Italiano
    6- Nederlands
    7- Português (Brasil)
    8- Svenska
    CHOOSE LOCALE BY NUMBER: 2
    =======================================================
    Installer User Interface Mode Not Supported
    The installer cannot run in this UI mode. To specify the interface mode, use the -i command-line option, followed by the UI mode identifier. The valid UI modes identifiers are GUI, Console, and Silent.
    =======================================================
    Any help?
    Thanks!
    Solved!
    Go to Solution.

    Ok , i got this baby working.. sudo is not a problem here.. you need to specify additional java parameter for installer!
    ./setup-1.4.4.14439.bin LAX_VM /usr/bin/java

Maybe you are looking for

  • How to reset a Card

    Hi Good Afternoon Here we r using ACOS3 Card .And some how the ISSUER CODE is wrong.And the Card is locked , Can any one tell me how to remove the LOCK . Its Urgent Please Cheers Naveen.C

  • Where is my reading list on iPad 3?

    Does this sync automatically from my MacBook Pro?

  • Quick report on contract monitoring

    Hello All, i wanted to extract any what are materials  have more than contracts  with same vendor? output expected material 1234 contract 560001 vendor ABC material 1234 contract 560002 vendor ABC any help is appreciated br muthu

  • HMRC forms are in excel format, what do I need to open them ?

    HMRC forms are in excel format, what do I need to open them ?

  • Import sent email

    My old hard drive is failing and I setting setting up a new HD. I'm unable to find or import any of my old sent email, let-a-lone the mail boxes that they were organized into. Because old HD is failing I only have limited access to it. Where is the "