DLSw redundancy problem

| |
****** ******** | |
* *--CPA1--*7206-1*--| ******** |
*IBM * ******** |--*7206-3*--|
* * | ******** |
*HOST* | |
* * ******** |--******** |
* *--CPA2--*7206-2*--| *7206-4*--|
****** ******** | ******** |
| |
7206-1 and 7206-2 manage the the connection to the IBM host with a CPA card eich other.
7206-3 and 7206-4 manage the connection between the central site and the remotes sites via frame-relay network, they are border peer and DLSw load balancing coded. also manage the connection between a LAN of the central site and with bridge-group to reach an IBM HOST via 7206-1 and 7206-2.
The following is the configurations:
7206-3:
dlsw local-peer peer-id 3.3.3.3 group 3 border keepalive 0 promiscuous
dlsw load-balance round-robin
dlsw remote-peer 0 tcp 1.1.1.1 timeout 90
dlsw remote-peer 0 tcp 2.2.2.2 timeout 90
dlsw cache-ignore-netbios-datagram
dlsw bridge-group 1
7206-4:
dlsw local-peer peer-id 4.4.4.4 group 3 border keepalive 0 promiscuous
dlsw load-balance round-robin
dlsw remote-peer 0 tcp 1.1.1.1 timeout 90
dlsw remote-peer 0 tcp 2.2.2.2 timeout 90
dlsw cache-ignore-netbios-datagram
dlsw bridge-group 1
The probleme is:
In the central site, i see a slowness in the connection, and it is random, sometime a connction is very fast, other time it is very slow, and it can take up to 1,5 minute to connect.
After all that, i coded a dlsw redundancy in the 7206-3 and 7206-4 FastEthernets, the problem still exist in the LAN, and it cause a trouble in some remotes sites connected with frame-relay, that loose a connection to HOST.
Thank You for your help.

1. To make load balancing work you will have to add the following commands:
dlsw timer explorer-wait-time ...
source-bridge ring-group ...
Ring-group number must be the same on 7206-3 & 7206-4 - it prevents unnecessary explorer flooding.
2. If bridge-group 1 on 7206-3 & 7206-4 shares the same Ethernet domain you must use DLSw+ Ethernet Redundancy feature.
3. Border peers in the same group must be in full-mesh and all members in the group must peers with all border peers in this group. On 7206-3 & 7206-4 you will have to add the following commands:
(7206-3)# dlsw remote-peer 0 tcp 4.4.4.4 ...
(7206-4)# dlsw remote-peer 0 tcp 3.3.3.3 ...

Similar Messages

  • I have a serious contacts redundancy problem.  First I have multiple email account formats, e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account.  The problem is I had up to 15 contact

    I have a serious contacts redundancy problem. 
    First I have multiple email account formats,e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account. The problem is I had up to 15 contacts for the same person. 
    I deleted the Entourage contacts as that seemed to be the program that was causing the problems.  When I synced this morning, now all my contacts are gone from every where. 
    How can I restore to my last back?  If I restore, it will ask to restore to the back that was just made… which has no contacts?  
    Help would be greatly appreciated !!

    I have a serious contacts redundancy problem. 
    First I have multiple email account formats,e.g., 2011 MacOutlook, 2008 Entourage, 2007 Window Outlook, iPhone Exchange and these are all connected to the same account. The problem is I had up to 15 contacts for the same person. 
    I deleted the Entourage contacts as that seemed to be the program that was causing the problems.  When I synced this morning, now all my contacts are gone from every where. 
    How can I restore to my last back?  If I restore, it will ask to restore to the back that was just made… which has no contacts?  
    Help would be greatly appreciated !!

  • XSLT Redundancy Problem

    Hi all,
    I have a serious problem with redundancy in XSLT. In my conversion XML input file, I have many tags like that:
    <tag1 name="..." date1a="..." date1b="...">
    </tag1>
    <tag2 name="..." date2="..." date2b="...">
    </tag2>
    All with different tag names and different attribute names (although the attributes hold similar information).
    Now what I need is a template that could be applied to a combination of tag-attribute, e.g. to tag1, using the values of date1a.
    My current solution has a template for each combination - which is very redundant.
    Any idea how to optimize this without changing the input file? I thought of global variables to store the attribute value but they are "final", so that does not work. Local variables seem to be limited to a single template, so they cannot be used either.
    Any help will be appreciated,
    Ralf

    Hi,
    This is a typical line from the input file:
    <WebAppM3.SingleInfo xmi.id="a71" xmi.uuid="7e33f8b02e0f30f5:00a981ca:000000f425774313:8181" Name="StaticPage" Entity="a67 a66" SubView="a72 a73">
    </WebAppM3.SingleInfo>
    This is a typical transformation rule for it (the relevant rules are for Entity and SubView:
    <xsl:template match="WebAppM3.SingleInfo">
    <!-- Each instance of SingleInfo gets its own class using as much of its old values as
    possible-->
    <Model.Class annotation="" isRoot="false" isLeaf="true" isAbstract="false"
    visibility="public_vis" isSingleton="false">
    <xsl:copy-of select="@xmi.id"/>
    <xsl:copy-of select="xmi.uuid"/>
    <xsl:attribute name="name">
    <xsl:value-of select="@Name"/>
    </xsl:attribute>
    <Model.Namespace.contents>
    <xsl:apply-templates select="descendant::WebAppM3.M2Attribute"/>
    <xsl:apply-templates select="attribute::Entity" mode="link"/>
    <xsl:apply-templates select="attribute::SubView" mode="link"/>
    </Model.Namespace.contents>
    </Model.Class>
    </xsl:template>
    <xsl:template match="@Entity" mode="link">
    <!-- References to the new Associations of type DBConnection -->
    <xsl:variable name="data" select="stringhelp:tokenize(.)"/>
    <xsl:variable name="anc_id" select="ancestor::WebAppM3.SingleInfo/@xmi.id"/>
    <xsl:variable name="targets" select="../WebAppM3.DataSet"/>
    <xsl:for-each select="$data/token">
    <Model.Reference annotation="" scope="instance_level"
    visibility="public_vis" type="a23" isChangeable="true">
    <xsl:attribute name="name">Entity_<xsl:value-of select="."/></xsl:attribute>
    <xsl:attribute name="xmi.id">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="xmi.uuid">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="referencedEnd">
    TEST
    </xsl:attribute>
    <Model.StructuralFeature.multiplicity>
    <Model.MultiplicityType lower="0" upper="-1" is_ordered="false" is_unique="false" />
    </Model.StructuralFeature.multiplicity>
    </Model.Reference>
    </xsl:for-each>
    </xsl:template>
    <xsl:template match="@SubView" mode="link">
    <!-- References to the new Associations of type DBConnection -->
    <xsl:variable name="data" select="stringhelp:tokenize(.)"/>
    <xsl:variable name="anc_id" select="ancestor::WebAppM3.SingleInfo/@xmi.id"/>
    <xsl:variable name="targets" select="../WebAppM3.DataSet"/>
    <xsl:for-each select="$data/token">
    <Model.Reference annotation="" scope="instance_level"
    visibility="public_vis" type="a23" isChangeable="true">
    <xsl:attribute name="name">Entity_<xsl:value-of select="."/></xsl:attribute>
    <xsl:attribute name="xmi.id">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="xmi.uuid">
    <xsl:value-of select="$anc_id"/>_<xsl:value-of select="."/>
    </xsl:attribute>
    <xsl:attribute name="referencedEnd">
    TEST
    </xsl:attribute>
    <Model.StructuralFeature.multiplicity>
    <Model.MultiplicityType lower="0" upper="-1" is_ordered="false" is_unique="false" />
    </Model.StructuralFeature.multiplicity>
    </Model.Reference>
    </xsl:for-each>
    </xsl:template>
    Cheers,
    Ralf

  • 4507R+SUPII_Plus Redundancy Problem

    Dear Professionals
    I have
    4507R + 2 X SUPII_Plus + cat4000-i9s-mz.121-19.EW1.bin
    Following dump seems to be not configured correctly to redundancy.
    What can I do to fix this problem.
    ------------------ show running-config --------------
    redundancy
    mode rpr
    main-cpu
    auto-sync startup-config
    auto-sync standard
    7507R_SUPII_Plus#show redundancy stat
    my state = 13 -ACTIVE
    peer state = 1 -DISABLED
    Mode = Simplex
    Unit = Primary
    Unit ID = 1
    Redundancy Mode (Operational) = RPR
    Redundancy Mode (Configured) = RPR
    Split Mode = Disabled
    Manual Swact = Disabled Reason: Simplex mode
    Communications = Down Reason: Simplex mode
    client count = 4
    client_notification_TMR = 60000 milliseconds
    keep_alive TMR = 9000 milliseconds
    keep_alive count = 0
    keep_alive threshold = 18
    RF debug mask = 0x0
    7507R_SUPII_Plus#redundancy force-switchover
    There is no STANDBY present. Failed to force switchover
    Best Regards

    The problem is with the following missed commands in your global configuration... Assuming Active RSP in slot 2, Standby RSP in Slot 3 and both RSP's have Slot 0 flash memory cards.
    R(config)#hw-module slot 2 image slot0:
    R(config)#hw-module slot 3 image slot0:
    R#hw-module sec-cpu reset
    Refer the following links for more information...
    http://www.cisco.com/en/US/products/sw/iosswrel/ps1612/products_feature_guide09186a0080080a6f.html
    http://www.cisco.com/univercd/cc/td/doc/product/core/cis7505/rte_swit/6586rsp8.htm#213565

  • Redundancy Problems

    I am trying to implement redundancy on two computers using Lookout v6.0.2.  One computer (primary) has an unlimited development license, and the other (secondary) has a unlimited runtime license.  The computers also have client licenses installed on both.  The server process is loaded on both machines using the same name.  When I developed the client process I used a full pathname for everything versus Symbolic Link, because I have a large amount of discrete controls (pushbuttons, etc.) connected to field devices that I wanted both computers to access. 
    The client and server processes work fine during normal operation with no problem. 
    I have created a process called "redundancy" on the client machine per the developer's manual.  This process is setup to load the server process in the event of a failure on the primary, but it doesn't work.  My state file is being updated from machine to machine properly, but the server process never loads on the client machine.
    I have tried to check for syntax or other errors in the loader and monitor blocks and everything looks OK.  I have tried shutting down the process only, Lookout, and powering down the primary computer with no success.
    Any suggestions would be appreciated.

    Has anyone had any success with having the process files (*.l4p) on a shared volume? (and using redundency using the Loader and Monitor objects)
    I tryed this and it did not work...
    Create a test process, and name it Master. Save Master on a network drive/folder.
    Create a test process, and name it Monitor. Save Monitor on a network drive/folder. (yes, the loader is pointed to the Master file on the shared network drive/folder, and yes, i can open/run Master by clicking File/Open on this computer).
    Run Master on one computer
    Run Monitor on another computer
    Shut down Master
    Observations: Monitor notices that Master is not running any more, but Loader doesn't do anything, and no alarm is generated.
    Make these changes:
    copy process file Master to the local c:\program files\national instruments\lookout 6.1\
    change the loader to run the Master file from the local hard drive.
    Try experiment again.
    Everything works as expected
    any ideas? Can anyone duplicate this issue?
    thanks
    Rich

  • Power Redundancy problem for cisco 3750 stack switches

    Hi Team,
    I have installed and configured cisco 3750X series switches in stackwise. Those are having dual power supply.
    Power redundancy test performed:
    1. Removed one of the power supply and inserted it back.
    2. once the first power supply is ready, removed another power supply and switch got rebooted.
    please find the below stack-power output:
    JP2-RDC-DIS-02#sh stack-power detail
    Power Stack           Stack   Stack    Total   Rsvd    Alloc   Unused  Num  Num
    Name                  Mode    Topolgy  Pwr(W)  Pwr(W)  Pwr(W)  Pwr(W)  SW   PS
    Powerstack-2          SP-PS   Stndaln  700     477     223     0       1    2
    Powerstack-1          SP-PS   Stndaln  700     477     223     0       1    2
    Power stack name: Powerstack-2
        Stack mode: Power sharing
        Stack topology: Standalone
        Switch 2:
            Power budget: 223
            Power allocated: 223
            Low port priority value: 22
            High port priority value: 13
            Switch priority value: 4
            Port 1 status: Not connected
            Port 2 status: Not connected
            Neighbor on port 1: 0000.0000.0000
            Neighbor on port 2: 0000.0000.0000
    Power stack name: Powerstack-1
        Stack mode: Power sharing
        Stack topology: Standalone
        Switch 1:
            Power budget: 223
            Power allocated: 223
            Low port priority value: 22
            High port priority value: 13
            Switch priority value: 4
            Port 1 status: Not connected
            Port 2 status: Not connected
            Neighbor on port 1: 0000.0000.0000
            Neighbor on port 2: 0000.0000.0000
    Can anyone help what went wrong here?
    Thanks
    Manish

    Cosmetic bug
    CSCui21029    3750X Stack no standalone stays in running configureation as standalone
    Symptom:
    When you are configuring a 3750x stack and initially putting it into a stack ring topology by configuring the following.
    Switch(config)#stack-power switch 1
    Switch(config-switch-stackpower)#sta
    Switch(config-switch-stackpower)#no stan
    Switch(config-switch-stackpower)#no standalone
    You will see that in the running configuration it shows up as standalone mode
    stack-power switch 1
    switch mode: standalone
    stack-power switch 2
    switch mode: standalone
    Conditions:
    3750X stacks with any license level
    Workaround:
    none

  • Redundancy Problem!

    How Clear the Session After we complete the Execution..
    session.invalidate();
    is not working ...
    rs2=st.executeQuery("select deptname from department where collid='"+coll1+"' ");
    while(rs2.next())
    //deptname= rs2.getString(1);
    data1.add(rs2.getString(1));
    i++;
    out.print("dept"+dept);
    s.setAttribute("dep", data1);
    HEre am setting array values,and getting session on another page..here am facing issue as it filling up my drop down box when am using previous dropdown box
    in first dropdown am using submit button..so when i use change dropdown it automatically moves servlet page,and again it appending the same values againg,so redundancy occurs here..
    so i want to clear Session..how it is possible

    you only give us suggestion for filling another drop down by selecting one drop down value in jsp..
    its ur suggestion..
    First of all: there is no such thing as a combo box (an editable dropdown) in HTML. You probably mean a plain vanilla dropdown (the HTML <select> element).
    That said, you should not mingle raw Java code in a JSP file. Use Java classes for raw Java code.
    There are several ways to achieve this:
    1) Submit form to a servlet during the onchange event of the 1st dropdown (you can use Javascript for this), let the servlet get the selected item of the 1st dropdown as request parameter, let it obtain the associated values of the 2nd dropdown from the database, let it store them in the request scope. Finally let JSP/JSTL display the values in the 2nd dropdown.
    2) Print all possible values of the 1st and 2nd dropdown out as a Javascript array and make use of a Javascript function to fill the 2nd dropdown based on the selected item of the 1st dropdown during the onchange event of the 1st dropdown. No form submit and no server cycle is needed here.
    3) Make use of XMLHttpRequest in Javascript to fire an asynchronous request to a servlet during the onchange event of the 1st dropdown, let the servlet get the selected item of the 1st dropdown as request parameter, let it obtain the associated values of the 2nd dropdown from the database, return it back as XML or JSON string. Finally let Javascript display the values in the 2nd dropdown through the HTML DOM tree (the Ajax way, as suggested before).
    Edited by: BalusC on 2-mrt-2009 0:04 (typo)
    http://javascript.gakaa.com/table-cols.aspx

  • Dlsw - circuit problem

    Hi. all
    I have several routers with dlsw feature.
    Routers works properly yesterday but not today.
    Someone complained to me why sna communication be delayed today?
    So i tried to check such as dlsw peer, circuit.
    i found instatble of the Circuit.
    circuit's uptime be reset...
    How can i check this symtom..?
    Regard.
    John

    Thank you for replying.
    The Topology is below.
    HOST HOST
    | |
    |
    4006 Switch
    |
    | |
    Router1 Router2
    | |
    ATM ATM
    | |
    Router3
    |
    L2 Switch
    |
    SNA G/W
    There are dlsw peer between Router1 and Router 3 and
    Router 2 and Router3.
    The Router 3 was configured loadbalancing(circuit-count) for sna traffic.
    Acually, i found some abnormal history by using "show dlsw circuit history detail".
    469762913 0060.9436.d70a(04) 4848.2424.1212(04) 172.20.52.231
    Created at : 10:59:11.230 KST Mon Dec 13 2004
    Connected at : 10:59:11.314 KST Mon Dec 13 2004
    Destroyed at : 11:46:50.699 KST Mon Dec 13 2004
    Local Corr : 469762913 Remote Corr: 704643190
    Bytes: 86335174/88147104 Info-frames: 106541/108372
    XID-frames: 5/4 UInfo-frames: 0/0
    Flags: Local created, Remote connected
    Last events:
    Current State Event Add. Info Next State
    CONNECTED DLC DataInd 0x0 CONNECTED
    CONNECTED DLC DataInd 0x0 CONNECTED
    CONNECTED DLC DataInd 0x0 CONNECTED
    CONNECTED WAN ifcm 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED DLC DataInd 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN infoframe 0x0 CONNECTED
    CONNECTED WAN halt-dl 0x0 HALT_PENDING
    HALT_PENDING DLC DiscCnf 0x0 CLOSE_PEND
    CLOSE_PEND DLC CloseStnCnf 0x0 DISCONNECTED

  • RAC redundancy problem

    Hi,
    We have a RAC system which is running on Windows Server 2008 R2 and the oracle version is 11g.
    When we close one of the nodes, other node can not take the sessions and loads then our database becomes unavailable.
    What could be the reasons?

    what version 11g??? ALWAYS POST THE FULL VERSION NUMBER. (and yes, I was yelling!!).
    Did you properly configure SCAN? https://www.lmgtfy.com/?q=oracle+scan+pdf
    Proper DNS configuration
    Proper {local | remote}_listener parameters. And RAC on Windows?? Seriously????

  • DLSw - MSFC - Redundancy

    Do all the same rules apply when doing Dlsw redundancy with backup msfc's? For example, do I need the following types of commands:
    dlsw transparent redundancy-enable xxxx master-priority x
    and
    dlsw transparent map local-mac xxxx remote-mac xxxx neighbor xxxx
    and
    dlsw transparent switch-support

    Yes.
    You may want to look into Single Router Mode (SRM) at http://www.cisco.com/univercd/cc/td/doc/product/lan/cat6000/sw_6_3/confg_gd/redund.htm for your MSFC redundancy. You lose MSFC load balancing but simplify the configuration greatly since you don't need to use HSRP or DLSw Transparent Redundancy.
    hope this helps
    tim

  • Eth. T/R DLSw w/ Redundancy

    I have an ethernet segment and a Token Ring segment.
    I have 2 routers connecting to both the Ethernet and the Token Ring. Both routers have a serial interface. I'm attempting to have dlsw redundancy for both Ethernet and Token Ring.
    I noticed that when I 'Ping' from Ethernet to T/R, I get duplicate responses. I've been forced to disable redundancy for DLSw on the Token Ring. Is there any reason this might happen?
    Any help will be greatly appreciated.

    You may have a routing or bridging loop. It's difficult to troubleshoot on this type of message board. I'd suggest you open a case with the TAC and request some design help and configuration review. That way you can describe your specific situation and include diagrams of your network.

  • DLSW ER+ at the central site

    The network topology that I have is two MSFCs and two external routers at central site and two MSFCs and two external routers at the remote site.
    DLSW is activated on the external routers. In regards to DLSW+ ER at the central site, only one translational or transparent bridge can be active at a time. Manual intervention is required to cause a router to take over for the other router. Is there any other way to have some means of dlsw redundancy (w/o manual intervention) at the central site (for ethernet environment only)?
    Second, DLSW ER+ cannot be deployed easily at the central site, since you need a lot of dlsw mapping. On the other hand, you also need local SNA PUs to be able and reach the CIP (both located at the central site) but reside on a different broadcast domain. Any ideas?
    Thanks

    Hi,
    on the central side, host end, there are a couple of things you can do.
    The potential solutions mentioned below are in the order that cisco would prefer.
    1.
    The most clean thing to do is to upgrade and configure the mainframe for appn and allow hpr/ip between the host end router and the host.
    You will need to run dlsw/vdlc/snasw in the host end routers to be able to do this.
    It also requires that you have ip connectivity to the mainframe.
    If you do this than the mac address, the remote devices connect to, is configured as a snasw vdlc port in the routers. Both of them are active all the time, the remotes will learn the remote mac address over both peers and as such you have automatic, non manual intervention, redundancy, loadbalancing. The mac addresses in this case only exist in the central router. Nowhere else. The remote device does not know anything about this change.
    Each of the head end dlsw/vdlc/snasw routers will have at least one hpr/ip uplink to the host. This is routed ip traffic into the mainframe.
    In that case you can also define the physical ethernets as snasw ports, do hsrp on it and configure a hsrp mac address, this mac address would then be used as dmac for local clients connecting to the host.
    2.
    If for some reason you can not do the appn/snasw configuration you still have some options.
    If you are using cisco cip's with csna today than you most likely have on path into the mainframe today for each mac address.
    You can configure multiple vlans between the dlsw router and the cip router, i.e. dot1q trunk, and on the cip router you can configure multiple virtual ring groups and more than one csna path statement into the host. At the end you attach each vlan to one of the channel path, configure srtlb for each vlan into a unique vring, and then configure a different adapter number on each of the internal tokenring lans with the same mac address.
    On the dlsw router you can configure multiple bridge groups into dlsw and each of those bridge groups goes to a different vlan. If you do this with two dlsw routers going to the same cip router you then end up with two channel access's and one vlan on each of the dlsw routers. If you do it to two cip routers you need 4 vlans. Just make sure that you dont bridge the vlans together.
    The remotes learn than the remote mac address over both peers and your redundancy is established.
    For the local clients this solution has the draw back that you need to pick a vlan where to connect them. There is no automatic redundancy, like hsrp in the first example, for those.
    3.
    You can enable both dlsw routers towards a single bridge-group and apply a mac address filter inbound to the bridge group only allowing the mac address/es of the hosts as source mac address.
    That way you kill the potential loop on the head end. You will also need to put on as much restrictive filtering as possible to only allow the traffic that is wanted.
    thanks...
    Matthias

  • DLSw question

    Dear all,
    Could anyone help me to clarify the following point on DLSw redundancy?
    Is it true if DLSw redundancy (or recover) are transparent to user if the end stations lie on a token ring network ? On the other hand if the end stations lie on the ethernet LAN, the DLSw can re-established itself but it is not transparent to user. Can I make such a conclusion ?
    thanks

    Hi,
    no, this statement is not true.
    From an end systems perspective the recovery is always disruptive. No matter if you are on a tokenring or on a ethernet lan.
    That means:
    DLSw is about llc2 sessions at layer2. If your lan attached end system has a llc2 session with a cisco dlsw router and i.e. that router fails, the llc2 session with the end system will fail aswell.
    After the end system has realized that the llc2 session is gone it cleans up its local connections and then tries to reestablish the llc2 connection. If another dlsw router is available, who can reach the requested remote host, than this connection will come up again. That means the end user sna session goes down and comes back up again.
    The same is true if you are talking about dlsw+ ethernet redundancy.
    There is more in the details/differences between ethernet and tokenring lan segments. I.e. on a tokenring you have a rif in each packet which can be used for loop control.
    On ethernet you almost always have ethernet switches, where a cam table of a ethernet switch in any vlan for any mac address can only point to exactly one port on the switch.
    If you have two dlsw routers connected that can reach the same remote host those two routers will both send frames with the same host mac address into the same switch on two different ports. This is where dlsw ethernet redundancy feature comes into play.
    thanks...
    Matthias

  • DLSw - Backup Delay

    I have DLSw redundancy configured. My circuits often drop from the primary dlsw peer and connect to the backup. I assume it's missing a certain number of responses back from the primary peer.
    Is there a way to change the timers and cause the router to wait at least 60 seconds before switching over the backup dlsw peer?

    Hi,
    Configure this parameter...
    Dlsw remote-peer 0 tcp x.x.x.x (primary peer)
    Dlsw remote-peer 0 tcp y.y.y.y backup-peer x.x.x.x timeout Z
    Z is the time after which, peering takes place over backup link.
    x.x.x.x is primary peer
    y.y.y.y is backup peer
    Think this should work.

  • I have a problem for cisco catos 4232 switch.

    i have entered the enable mode in cisco catos 4232 switch,but always there have been a remarks appearing all the time as follows:
    2006 Feb 23 14:23:34 %SYS-4-P2_WARN: 1/Host 02:01:00:00:00:00 is flapping betwee
    n port 3/34 and port 3/33
    why?
    thank you!
    Best Respects!
    guominquan

    Hi Friend,
    The message indicates that your Catalyst 4500/4000 switch has learned a MAC address that already exists in the content-addressable memory (CAM) table, on a port other than the original one. This behavior repeatedly occurs over short periods of time, which means that there is address flapping between ports.
    If the message appears for multiple MAC addresses, the behavior is not normal
    If the error message appears for one or two MAC addresses, locate these MAC addresses in order to determine the cause. Issue the show cam mac_addr command in order to identify from where these MAC addresses have been learned. In this command, mac_addr is the MAC address that the error reports as flapping.
    After you determine between which ports this MAC address is flapping, track down the MAC address. Connect to the intermediate devices between your Catalyst 4500/4000 and the device that has the problem MAC address. Do this until you are able to identify the source and how this device connects to the network.
    Note: Because the MAC address is flapping between two ports, track down both of the paths.
    These are other issues that can cause this message to appear
    1) Server NIC redundancy problem
    2) HSRP
    3) EtherChannel misconfiguration
    4) Host reflects packets back onto the network
    Check this link for complete details of this problem and how to troubleshoot
    http://www.cisco.com/warp/customer/473/176.html#subtopic1k
    HTH, if yes please rate the post.
    Ankur

Maybe you are looking for