ACE 30 Module Active-Active configuration

Hi,
We have two ACE 30 module in two Cat 6k with multiple contexts. And our requirement is to have both the boxes active for some context. We have configured the ft vlan, ft peer and ft group for each context on ACE level. And on Cat 6k, L2 vlan is created for ft and mapped with ACE service module with svlvc command. The interface on switch used for ft is configured as Access port with ft vlan. But when we try to do Failover testing by shutting down the upstream link of ACE2, the active context on the ACE2 is not failing over to ACE1. Let me know whether we need to do any additional configuration to achieve this.? . The running configuration is as below,
@ Cat 6K,
Vlan 999
name ft_vlan
svclc multiple-vlan-interfaces
svclc module 2 vlan-group 100
svclc vlan-group 100  201,203, 999
int gi 1/3
switchport
switchport mode access
switchport access vlan 999
@ ACE 30,
ft interface vlan 999
  ip address 2.1.1.1 255.255.255.252
  peer ip address 2.1.1.2 255.255.255.252
  no shutdown
ft peer 1
  heartbeat interval 100
  heartbeat count 10
  ft-interface vlan 999
ft group 1
  peer 1
  priority 105
  peer priority 90
  associate-context Admin
  inservice
ft track interface INT-VLAN-203
  track-interface vlan 203
  priority 100
  peer priority 50
ft group 2
  peer 1
  priority 105
  peer priority 90
  associate-context Context1
  inservice
ft group 3
  peer 1
  priority 90
  peer priority 105
  associate-context Context2
  inservice
ft group 4
  peer 1
  priority 105
  peer priority 90
  associate-context Context3
  inservice
Thanks in advance,
Divya

Hello Divya!
It should work assuming the following:
1.) You have a trunk/portchannel between the ACE's will all vlans each context is using including 999 for FT)
2.) You are using bridged mode on ACE or one-armed with on alias. OR you are using routed mode with an alias IP that is used as the server gateway.
Can you login to the admin context on each ACE and issue "show ft group detail" and send it back to the alias? Also, "show run interface"/"show run rserver" from each context would be useful to see the way you have the configuration setup.

Similar Messages

  • Scripting active configuration deployment location for an oracle module

    Hi,
    Does anyone know how to script the setting of the active configuration deployment location for an oracle module?
    I have executed the following which works fine but I can't figure out how to make it active so the module shows up in the control center to allow deployment.
    I can of course do it manually in the design center by right clicking on the module in the design center, selecting 'Configure' and then (strangely) just selecting the location property which then automatically sets the active location and then it shows up in the control center.
    OMBALTER ORACLE_MODULE 'MOD_EXT' ADD REFERENCE LOCATION 'MIG_EXT_LOCATION' SET AS DEFAULT
    Oracle module MOD_EXT altered.
    OMBALTER ORACLE_MODULE 'MOD_EXT' SET REFERENCE METADATA_LOCATION 'MIG_EXT_LOCATION'
    Oracle module MOD_EXT altered.
    Any ideas?
    Regards,
    Brad

    Hi Brad,
    before you set the location you have to set the correct configuration (in case you use more configurations than the default "DEFAULT_CONFIGURATION") as active configuration:
    OMBCAC 'MY_CONFIGURATION'
    Regards,
    Carsten.

  • Unable to click 'Set and save as my Active Configuration for this project'

    Environment: OWB 11.1.0.6 Client running on Windows XP Pro SP3 repository and targets on AIX (IBM UNIX).
    I have created a new Configuration under a specific Project and I'd like to make this configuration the default whenever I login and select this Project.
    There is a check box when I right click the Configuration and select 'Open Editor' that says 'Set and save as my Active Configuration for this project' but when I select the check box and try to click on 'OK' there is no response from the popup window and I have to click 'Cancel' to get out of the popup.
    Any ideas on why this is happening and how to get around it??
    Thanks very much.
    -gary

    Si
    Good catch!! Restarting the app???? What a waste of time!! :-(
    When I went back in the box was already checked! It must have known I was pissed at it!! :-)
    Thanks for the help.
    -gary

  • Triggers in active-active configurations

    Hi,
    I am new to Goldengate and are looking for best practices regarding database triggers when replicating with Goldengate in an active-active configuration.
    Will best practices be to not replicate tables which are filled by triggers or is it some magic parameters?
    Scenario: To databases, both with active users. Tab1 in both databases has a trigger updating tab2. Will best practices be to just replicate tab1 with Goldengate?
    Thank You for Your help!

    HI,
    I think this will help you....
    SUPPRESSTRIGGERS |
    NOSUPPRESSTRIGGERS
    Valid for Replicat for Oracle. Prevents triggers from firing on target objects that are configured for replication with Oracle GoldenGate. You can use this parameter for Oracle 10.2.0.5 and later patches, and for Oracle 11.2.0.2 and later, instead of manually disabling the triggers. To use this option, the Replicat user must be an Oracle Streams administrator, which can be granted by invoking dbms_goldengate_auth.grant_admin_privilege.

  • Replicate filter to identify inconsitence in active-active configurations

    Hi,
    I am looking for the best way for Goldengate to handle consistency in an active-active configuration.
    I would like every transaction to be checked at the target by the replicate process if the before value of every column match the value in the target table column and row.
    My databases have 400 tables and I am looking for an easy configuration to identify transactions where the before values doesnt match the actual value in the target table.
    One solution is to trap the filter exception for each table, but I hope You may help me with a better solution:
    replicat r_gtmgts
    userid goldengate, password goldengate
    assumetargetdefs
    discardfile ./dirrpt/r_gtmgts.dsc, append
    GETUPDATEBEFORES
    REPERROR (21000, EXCEPTION)
    MAP user1.table1, TARGET user1.table1,
    SQLEXEC (ID tab394, ON UPDATE,
    QUERY "select count(*) c from user1.table1 where 1=1 and DBID_=:p1 and STATE_=:p4 and TIMESTAMP_=:p3",
    PARAMS (p1=BEFORE.DBID_,p4=BEFORE.STATE_,p3=BEFORE.TIMESTAMP_), BEFOREFILTER, ERROR REPORT, TRACE ALL),
    FILTER (ON UPDATE, 0 <> tab394.c, RAISEERROR 21000);
    MAP user1.table1 TARGET user1.konflikt_gg
    EXCEPTIONSONLY,INSERTALLRECORDS,EVENTACTIONS (STOP),
    COLMAP (konflikt_type = "UPDATE KONFLIKT OPPDAGET", eier = "USER1", tabell = "TABLE1", dato = @DATENOW(), pk = @STRCAT(DBID_), beskrivelse = @STRCAT("DBID_=", BEFORE.DBID_,">", DBID_, ", ","STATE_=", BEFORE.STATE_,">", STATE_, ", ","TIMESTAMP_=", BEFORE.TIMESTAMP_,">", TIMESTAMP_));
    ...repeated for each of the 400 tables.
    Thanks for Your help!

    Hi,
    I followed ur suggestion also now also same problem.I think i did some mistake in configuration parameters.
    now i will post my ext1,dpump and rep1 parameters what i given in source and destination.
    please correct me where i did mistake it is very important to me.
    Source Hostname : node11
    Destination Hostname : node12
    source side :*
    mgr configuration file :-_
    PORT 7809
    USERID ggs_owner, PASSWORD ggs_owner
    PURGEOLDEXTRACTS /u01/app/oracle/product/gg/dirdat/ex, USECHECKPOINTS
    ext1 configuration file :-_
    ---- In before last line i given DDL MAPPED IN -----------
    EXTRACT ext1
    USERID ggs_owner, PASSWORD ggs_owner
    EXTTRAIL /u01/app/oracle/product/gg/dirdat/lt
    TABLE scott.emp;
    I removed that DDL line and after i tried but i don't know y it's not working.
    dpump configuration file :-_
    EXTRACT dpump
    PASSTHRU
    RMTHOST node12 MGRPORT 7809
    RMTTRAIL /u01/app/oracle/product/gg/dirdat/rt
    TABLE scott.emp;
    in this file also i given *,* between node12 and MGRPORT once i given *,* between that means the extract dpump is automatically goes to ABENDING state*
    Y it automatically goes that state i dont know please if i did any mistake in configuration side means please correct me.
    Destination side:*
    mgr  configuration file :-*
    PORT 7809
    USERID ggs_owner, PASSWORD ggs_owner
    PURGEOLDEXTRACTS /u01/app/oracle/product/dirdat/ex, USECHECKPOINTS
    replicat rep1 configuration file :-*
    REPLICAT rep1
    ASSUMETARGETDEFS
    USERID ggs_owner, PASSWORD ggs_owner
    DDL INCLUDE MAPPED
    MAP scott.emp, TARGET scott.emp;
    Source side:
    SQL> conn scott/tiger
    Connected.
    SQL> alter table emp add new_col varchar2(2);
    Table altered.
    SQL> desc emp;
    Name Null? Type
    EMPNO NOT NULL NUMBER(4)
    ENAME VARCHAR2(10)
    JOB VARCHAR2(9)
    MGR NUMBER(4)
    HIREDATE DATE
    SAL NUMBER(7,2)
    COMM NUMBER(7,2)
    DEPTNO NUMBER(2)
    NEW_COL VARCHAR2(2)
    Destination side:
    SQL> conn scott/tiger
    Connected.
    SQL> desc emp;
    Name Null? Type
    ----------------------------------------- -------- ---------------------------- EMPNO NOT NULL NUMBER(4)
    ENAME VARCHAR2(10)
    JOB VARCHAR2(9)
    MGR NUMBER(4)
    HIREDATE DATE
    SAL NUMBER(7,2)
    COMM NUMBER(7,2)
    DEPTNO NUMBER(2)
    now also it is not working please give me reply as soon as possible and tel me where i did mistake in the above configuration files .
    Send me solution as soon as possible.
    Regards,
    Ram

  • BIOS - Full Theft Protection module Activation - Current setting Permanently disabled

    Hi,
    Recently purchased a Lenevo X301 laptop and installed with Windows XP. Unfortunately while changing the BIOS setiings, i have selected permanently disable option for computrance anti theft agent under Security settings.
    Now I have settings are as follows..
    Full Theft Protection module Activation
    Current setting - Permanently disabled
    Remote Diaable module activation
    Current settin - Permanently disabled
    I tried to change it enabled state in several ways, but i am not successful, Could you please help me how to activate computrance agent.
    Also one more question, do i need to purchase the Computrace LoJack to activate Anri Theft agent in my laptop.
    Your quick response is highly appreciated.

    Regarding your keyboard problem, it seems to be a very low-level problem. The driver cannot access the Control Registers on the Keyboard. By going down from your error message to the lowest level, one can see that it's probably a simple "outb" operation (write data on a specified address, shouldn't fail if the address is correct...) that doesn't succeed.
    So I think you defintely need to look in your BIOS if you didn't deactivate something when upgrading, or messed with some address space, or many things I cannot think of right now.
    Good luck

  • How do I set the active configuration back to default in NI MAX?

    In the traditional NI-Daq menu of NI-MAX, I inadvertantly changed the active configuration away from the default, in which I had already set up channels. How do I get back to the configuration where I had the channels already set up?
    Thanks,
    KHC

    Hello KHC,
    So you configured some channels and now you want to go back to the default configuration? There isn't an option to right click on the task to change it. You will have to open a new task or modify the current task.
    If you had created a task, modified it, saved it, modified it again, and wanted to go back to the first modification, you could just close MAX without saving the task. When you opened it again, the first modification would be there. Please let me know if you have any questions. Have a great day!
    Sincerely,
    Marni S.

  • Oralce Failsafe Active/Active Configuration

    Hello,
    I have a question about Failsafe.
    There is Active/Active configuration in Failsafe
    (in section 3.1.2 http://otn.oracle.com/docs/tech/windows/failsafe/doc_library/331/concepts/makefs.htm#sthref359)
    An example configuration is like this: 'In Figure 3-3, an Oracle database server is used for marketing on Node 1, and an Oracle database server is used for sales on Node 2. The cluster disks owned by Node 1 store the marketing files, and the cluster disks owned by Node 2 store the sales files. '
    In this configuration , are there TWO independent database existing in cluster disks? so still single instance for each database?
    And how to schedule the two nodes to activly access their own database during normal operation since MSCS allow cluster disk owned and accessed by only one node at a time.
    Could anyone explain it ? Thanks a lot in advance.

    You should be able to access Shared Services if foundation has started up even if there is an issue with RAF, if it is 11.1.2.3 then you have to log into workspace to be able to access Shared Services.
    The directory configuration is held in the Shared Services registry, it can be exported/imported using the epmsys_registry utility.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Active-active Configuration

    Hi all,
    my customer wants to have an active - active configuration with his 2 CSS. To get the whole bandwitdh in our datacenter i want to connect this both with two routers in a crossover fashion. The first router should be the Default Gateway for the first CSS and the second router should be the DG for the second CSS. VRRP on both routers and on borth CSS should be also configured for the redundancy. Anyone to knows problems with this Configurations orsome pitfalls ??
    thx for your comments.
    bye joerg

    Hi Joerg,
    If you want full redundancy, it is good to have L2 switches between the CSSs and the routers. This in order to avoid having a single point of failure on the crossover cables between the CSSs and the routers.
    Also, don't use the physical interfaces of the routers as the DG of the CSSs, the VRRP address should be the DG of the CSSs. The reason for this is that if you use the physical address as DG, the CSS pointing to this router would lose connectivity if this router fails, so it is better to use the floating IP as DG.
    Besides that, I see you have a good picture of what you needs to be done to get this working. Thanks!
    Regards,
    Jose.

  • Keepalive limitations on ACE 4710 & module

    I wanted to find out how many times can I apply a healthcheck in a single context. I have 50 farms that are using the same port and instead of creating 50 different healthchecks, I want to just create 1 healthcheck for the 50 farms and apply it to each farm. I also need to know if the same limitations (whatever they may be) is the same for the 4710, ACE20 and ACE30.

    It's doncumented in the "Configuring Health Monitoring" of the configuration guide "server load balancing".
    For ACE4710 running A3 :
    The ACE supports  1000 unique  probe configurations, which includes ICMP, TCP, HTTP, and other  predefined health probes. The ACE can execute only up to 200 concurrent  script probes at a time. The ACE also allows the opening of 2048 sockets  simultaneously.
    You can associate the same probe with multiple real servers or server  farms. Each time that you use the same probe again, the ACE counts it as  another probe instance. You can allocate a maximum of  4000 probe  instances.

  • Error importing/activating Configuration tpz files

    Hi All,
    I am trying to import Configuration tpz files from one XI server to another. I have defined Transport Targets for all the Business Systems in the SLD also.
    In Configuration, all the objects for a particular scenario are imported correctly from the tpz file, without any error. All these inactivated objects are grouped under a single change list called "XI 3.0 Import".
    But while truing to activate this chage list, it gives error "Unable to activate <Receiver Determination> - Object <Receiver Communication Channel> does not exist".
    I am also unable to activate any of the objects individually.It gives message "Unable to move object. Change lists were not part of the same import",
    Any ideas on how to proceed?
    Regards,
    Puloma.

    Hi All,
    The problem is now solved.
    We deleted the offending Receiver Determination objects from the Change List, and the rest of the change list was activated without any further errors. We now just have to re-create the Receiver dtermination objects.
    Theo,
    The communication channels in the original configuration were assisgned to scenarios.Also, re-creation of new Communication Channels was useless, as the resp. Business Systems were inactived.
    However, the problem is now almost solved, as we don't have to replicate the entire Configuration manually, just the Receiver Determination.
    Regards,
    Puloma.

  • Dependent Activity Configuration

    Hi I am creating a change request process workflow as per below requirement. I am facing issue at dependent activity stage. The activities in Release record are actually not starting automatically. When i open the release record and click on Run then everything
    works perfect. I want to avoid this manual intervention in my workflow. Further i want to know that what are the other activities those can work with Dependent activity, I mean Review etc.
    I have configure the Activities as below:
    CHANGE REQUEST
    02 Separate Review Activities for Approval> Then> Dependent Activity with Linked to Release Record and Then one Manual Activity.
    RELEASE RECORD
    01 Manual Activity for Test, 01 RA for Approval Pre-Production, Then 01 MA for Pre-Production deployment. 

    Hi,
    I have to say that I haven't found out other activities except for change request that can work with Dependent activity. And if you want to automatic run, you may try Orchestrator.
    Here is a thread for your reference:
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/ff68b9c0-50a5-4695-8e17-2b4e4411fac9/scsm-2012-sp1-add-dependent-activity-to-change-request-template?forum=itilmofprocesses
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • XI - Error when activating configuration

    We did a "clean" install of PI 7.0 on Windows 2003 server / MSSQL and performed the post-installation config all as per instalation guide.  All works fine, except when activating PI config from the Integration Directory.  The activation works, but after a few seconds the following error comes up in the PI configuration:
    Unexpected error during message processing: javax.transaction.HeuristicMixedException: com.sap.engine.services.ts.exceptions.BaseHeuristicMixedException: One or more XAResources were not commited because of Exception in the second commit phase. at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:451) at com.sap.engine.services.ts.jta.impl.TransactionManagerImpl.commit(TransactionManagerImpl.java:319) at com.sap.engine.services.ts.jta.impl.UserTransaction.commit(UserTransaction.java:79) at com.sap.aii.ib.server.notification.AbstractMessageReceiver.commitMsgProcessingTx(AbstractMessageReceiver.java:223) at com.sap.aii.ib.server.notification.AbstractMessageReceiver.onMessage(AbstractMessageReceiver.java:138) at com.sap.jms.client.session.Session.run(Session.java:641) 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: javax.transaction.xa.XAException: XA operation cannot be completed successfully. at com.sap.jms.client.xa.XAResource.commit(XAResource.java:47) at com.sap.engine.services.jmsconnector.spi.ManagedSession$XAManagedResource.commit(ManagedSession.java:322) at com.sap.engine.services.ts.jta.impl.ResourceList.commitTwoPhase(ResourceList.java:80) at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:355) ... 9 more
    Any ideas?
    Thanks
    Johan

    Hello Johan ,
    Check this out :
    URL was these :
    error in ID
    The solution is provided in the SAP CSS note :-
    #1030077 Cache notification remains in status "started"
    i.e.,
    " 1) Make sure that the directory specified in the log
    exists, and that the J22E administrator-user (usually <SID>adm) has read
    and write authorization for this directory."
    OR
    "2) Change the path for the logs. Enter the required path under 'Server
    -> Services -> JMS Provider -> Properties -> Property
    'transactionStorePath'.
    If there are several server nodes, you must
    repeat this step for all nodes. Then restart JMSProvider.
    Perform the cache connectivity test, and then check defaultTrace. The
    error should no longer be displayed there."
    Message was edited by:
            prasad chintala

  • Module Activation

    I had to install LabVIEW on another computer, but when I tried to run my saved vis, the IMAQ vision vis were not all installed.  I couldn't find them, so I transferred the vision folder over from an old computer as suggested here http://digital.ni.com/public.nsf/allkb/B23E67C08CBD161886256F82007D58D8
    Those vis are now present, but they're not activated.  When I try to activate the module ("The Vision Development Module library"), it shows that all the components of LabVIEW are activated, so there's no way to activate it.
    The complete error message I get when I try to run the VI is
    "The Vision Development Module library is expired or invalidly licensed on this computer. To purchase this product, contact National Instruments. If you have already purchased this product, select the Help >> Activate LabVIEW Components to activate this product."
    Help?
    Solved!
    Go to Solution.

    Pretty simple - buy NI Vision Development, use the installer for it, then activate it using the license that comes with it.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • ASA Active/Active Configuration

    Dear All,
    In configuring Active/Active mode of ASA, most examples are stating using
    2 customers for Active/Active. If I only get 1 customer with 4 interfaces as
    following:
    1) Outside
    2) Inside
    3) DMZ
    4) VPN
    Can I still use the Active/Active mode?
    If so, then how to allocate the interfaces to the 2 failover groups? Let
    assume:
    Failover group 1: Outside and DMZ
    Failover group 2: VPN and Inside
    That means ASA_A is primary of Group1, while ASA_B is primary of Group2. If
    so, is the traffic between Outside and Inside has problem? Since they are
    crossing the 2 failover group on the 2 ASA.
    Please correct me and my assumption. A sample configuration would be much appreciate.
    Thanks in advance.
    Br,
    Sam

    Thank you for the reply Jennifer.
    I was reffering to the following document:
    http://www.cisco.com/en/US/docs/security/asa/asa80/configuration/guide/failover.html#wp1091405
    Failure Event
    Policy
    Active Action
    Standby Action
    Notes
    Failover link failed during operation
    No failover
    Mark failover interface as failed
    Mark failover interface as failed
    You should restore the failover link as soon as possible because the unit cannot fail over to the standby unit while the failover link is down.
    Stateful Failover link failed
    No failover
    No action
    No action
    State information becomes out of date, and sessions are terminated if a failover occurs.
    I think I should rephrase question 2) If I have two seperate links for Failover and Stateful failover, will that fix my problem?
    How can I configure seperate Failover and Stateful failover links? If I understand correctly, they are more than just redundant links.
    Sorry I didn't accurately phrase my original post.
    Thank you

Maybe you are looking for

  • Error In GR/IR Slip Number

    Hi, While doing the Production Confirmation, the following error has occured: Message no. M7138 For this Item, assignment of a goods receipt/ issue slip number is not supported. However, this document contains items which require GR/IR Slip Number Is

  • Dam, did you know that ppl make things harder then they should be

    As I look here and other places I see that people make things harder then what they need tobe.I see people fearing fear when it comes to programming.They are so worried if they are going to make it or if they will pass this test or that test,well I g

  • Memory leak in JVM 1.3.1

    Hi, I'm using the following set up OS: Redhat linux 7.1 Kernel: 2.4.2-1 glibc-2.1.x for i386 other set up: ulimit -s 2048, JDK 1.3.1_01 app: Jboss app server I'm running my application in Jboss 2.2.1 which is a I/O intensive. This is a distributed sy

  • Use change pointers to send complete employee in HRMD_A

    Hi I need to distribute employee data from my SAP system. I want to send a Idoc every time a record in PA30 is changed. But know it only sends out a IDoc with the infotype that is changed, I need to distribute all infotype's. Example: One person is c

  • Draw a line of certain length?

    Hi there... does someone know a mathematical algorithm to draw a line of a certain length using the drawLine - method?? thx Jebediah