Cisco ACE loadbalancing matching more than one header in L7 class map

Dear All,
This is regarding Cisco ACE loadbalancing matching more than one header in L7 class map. I have a small setup with ACE 30 module in Cisco6500. I have got three webservers. Presently I have following configuration where I am mathing one url header.
class-map type http loadbalance match-all L7_WEB_HEADER_MATCH
description MATCH THE HOST HEADER OF HTTP REQUEST
2 match http header Host header-value ".*abhisar.com*"
So for above configuration, when traffic is coming for abhisar.com, it is working fine.
Now, I have following headers and DNS entry is pointing to same virtual IP for all http url header same as abhisar.com
abhisarindia.com
indiaabhi.com
So new configuration will be
class-map type http loadbalance match-any L7_WEB_HEADER_MATCH
description MATCH THE HOST HEADER OF HTTP REQUEST
2 match http header Host header-value ".*abhisar.com*"
4 match http header Host header-value ".*abhisarindia.com*"
6 match http header Host header-value ".*indiaabhi.com*"
So just want to confirm if this is fine.
Thank You,
Abhisar.

Dear Rajesh,
Thank you for reply. I will let you know once I carry out this activity.
Thank You,
Abhisar.

Similar Messages

  • Can I install 'Cisco connect' software on more than one PC in the network?

    Can I install 'Cisco connect' software on more than one PC in the network? Do multiple installs conflict? Who did try this before?

    yes you can
    SAP

  • Matching more than one column result

    Hello again,
    I'm using a Property/Estate agent database and one of the questions is: List pairs of buyers and properties whose expectation and feature set are exactly matching.
    The way I designed the database was that each property is connected to a property_features table which is connected to a parent table features_list.
    Similarly my buyer table is connected to a required_features table which is connected to the same features_list table
    I need to match buyers and properties where their required and property features (can be more than one) match.
    I have created queries that return the results for buyers and properties individually but I'm unsure how to link these queries to return only exact matches
    select b.peid
    from  buyer b, features_list fl, required_features rf
    where b.peid = rf.peid
    and rf.fid = fl.fid;
    select p.prid
    from property p, features_list fl, property_features pf
    where p.prid = pf.prid
    and fl.fid = pf.fid;All tables used:
    CREATE TABLE BUYER
         PEID CHAR(8) REFERENCES PERSON(PEID),
         MAX_PRICE NUMBER(9,2),
         CONSTRAINT BUYER_PK PRIMARY KEY(PEID)
    CREATE TABLE FEATURES_LIST
         FID CHAR(5) CONSTRAINT FL_PK PRIMARY KEY,
         DESCRIPTION VARCHAR2(50) NOT NULL
    CREATE TABLE REQUIRED_FEATURES
         PEID CHAR(8) CONSTRAINT FK_PEID_RF REFERENCES PERSON(PEID),
         FID CHAR(5) CONSTRAINT FK_FID_RF REFERENCES FEATURES_LIST(FID),
         CONSTRAINT REQ_F_PK PRIMARY KEY(PEID, FID)
    CREATE TABLE PROPERTY
         PRID CHAR(8) CONSTRAINT PR_PK PRIMARY KEY,
         BRID CHAR(5) CONSTRAINT PROPERTY_FK_BRANCH REFERENCES BRANCH(BRID),
         OWNER_ID CHAR(8) CONSTRAINT PROPERTY_FK_OWNER  REFERENCES PERSON(PEID),
         PROP_TYPE CHAR(10) NOT NULL CONSTRAINT TYPE_CHECK CHECK (UPPER (PROP_TYPE) IN ('HOUSE', 'UNIT', 'TOWN_HOUSE', 'COMMERCIAL')),
         FIRST_LISTED DATE NOT NULL,
         STREET VARCHAR2(30) NOT NULL,
         SUBURB VARCHAR2(30) NOT NULL,
         POST_CODE CHAR(4) NOT NULL     
    CREATE TABLE PROPERTY_FEATURES
         PRID CHAR(8) CONSTRAINT FK_PEID_PF REFERENCES PROPERTY(PRID),
         FID CHAR(5) CONSTRAINT FK_FID_PF REFERENCES FEATURES_LIST(FID),
         CONSTRAINT PROP_F_PK PRIMARY KEY(PRID, FID)
    );Some sample output
    select property.prid, property_features.fid, features_list.description
    from property, property_features, features_list
    where property_features.prid = property.prid
    and property_features.fid = features_list.fid;
    Results:
    PR110011 FE002 family room
    PR110011 FE003 modern kitchen
    select buyer.peid, required_features.fid, features_list.description
    from buyer, required_features, features_list
    where required_features.peid = buyer.peid
    and required_features.fid = features_list.fid;
    Results:
    PE110036 FE003 modern kitchen
    PE110036 FE002 family roomSo, the results from my individual queries show that person/buyer PE110036 has required features that match exactly with property PR110011's property features, I need to somehow write a query that provides this functionality
    Any advice very much appreciated!

    I'm still struggling with this one, would there be a solution using PL/SQL?
    Here are some sample insert statements from the tables involved
    INSERT INTO buyer VALUES('PE110002', 300000);
    INSERT INTO buyer VALUES('PE110005', 900000);
    INSERT INTO buyer VALUES('PE110015', 9000500);
    INSERT INTO buyer VALUES('PE110017', 9000400);
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'sunroom');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'family room');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'modern kitchen');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'swimming pool');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'balcony');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'lock up garage');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'ocean views');
    INSERT INTO features_list VALUES(('FE' || to_char(fl_seq1.nextval, 'fm009')), 'close to transport');
    INSERT INTO required_features VALUES('PE110031','FE003');
    INSERT INTO required_features VALUES('PE110007','FE003');
    INSERT INTO required_features VALUES('PE110031','FE005');
    INSERT INTO required_features VALUES('PE110007','FE005');
    INSERT INTO required_features VALUES('PE110002','FE004');
    INSERT INTO required_features VALUES('PE110002','FE006');
    INSERT INTO required_features VALUES('PE110002','FE009');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR001', 'PE110020', 'House' , '25-Mar-07', '153 Carr St.', 'Coogee','2034');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR002', 'PE110023', 'Unit' , '22-Jan-07', '6/973 Anzac Pde.', 'Kingsford','2032');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR003', 'PE110037', 'Commercial' , '15-Nov-07', '317 Campbell Pde.', 'Bondi','2026');
    insert into property
    values
    (('PR' || to_char(SYSDATE, 'yy') || to_char(pr_seq1.nextval, 'fm0009')), 'BR003', 'PE110019', 'House' , '19-Feb-07', '680 Bunnerong Rd.', 'Hillsdale','2036');
    INSERT INTO property_features VALUES('PR110001','FE012');
    INSERT INTO property_features VALUES('PR110001','FE017');
    INSERT INTO property_features VALUES('PR110001','FE026');
    INSERT INTO property_features VALUES('PR110001','FE002');
    INSERT INTO property_features VALUES('PR110001','FE009');
    INSERT INTO property_features VALUES('PR110009','FE003');
    INSERT INTO property_features VALUES('PR110033','FE003');Many thanks, this forum is a fantastic help!

  • More than one symbol linked to class

    hey,
    how do i get more than one symbol linked to my class in my SoundClass.as file?
    thanks

    after playing around i ended up getting it after all but thanks for effort in answering ill mark as correct answer

  • Matching more than one condition

    I am trying to use the MATCH function to locate a row which contains 2 variables. Can I use the & symbol to do that in the one MATCH function? Should I be using a different technique?
    It seems to be working, but then it seems to be bringing back a value of 0 when it finds the correct row.
    When I copy the formula using a shift in variable it then can't seem to find the correct row.
    So many issues!!

    MATCH has just one condition. You might be able to create that single condition by concatenating your other two. For instance, if you are looking for a row that has "Word one" in column B and "Word two" in column C, you can create a new column D that has the formula =B&"-"&C . Then use MATCH on column D to find "Word one-Word two".

  • Match more than one item in a string

    I've a string with one or more of ##.*##.*##.*## and I want to get all of the pattern which is matching the ##.*##.*##.*## in an array.
    In perl i wrote:
    @array = $string =~ /(##.*##.*##.*##)/gis;
    How to do this in Java?
    Thanx

    Are you sure? Because I'd be surprised if you could do something with perl that you can't do with Java (regarding regular expressions I mean).

  • Can we extend more than one Listener in a class

    Hii Javaites
    I am having a class, where i want to implement actionListener,and also ListSelectionListener.
    public class MyClass implements ActionListener,ListSelectionListener {
    I have implemented actionPerformed method for actionListener().
    But it is still giving error
    "ListSelectionListener cannot be resolved or is not a valid superinterface"
    can anyone tell me why ?

    No , i was using
    import javax.swing.*;
    and i thougfht tht it will automatically import event package also.
    But now when i have imported as u told me
    import javax.swing.event.*;
    and now it is woking fine.
    Thanx Dude

  • Iweb'09 google map adding more than one address

    Is it possible to add more than one address to a single map. I am a gardener and wanted to show on one map where all my customers are.

    Wyodor wrote:
    Can you do it in Google Maps?
    Have you read the Google Maps Help?
    Go where the knowledge is.
    http://maps.google.com/support/
    http://maps.google.com/support/bin/topic.py?topic=23520
    [Add content to maps|http://maps.google.com/support/bin/answer.py?hl=en&answer=67842]
    After my less-than-satisfying experience with you in a thread I have noticed that you seem to make post after post with little putdowns of the users you are responding to. Would it be possible adjust your manner? It is especially annoying since your answers are not consistently correct or helpful.

  • More than one iCloud and match on the same iMac

    We have 3 users accounts and 3 apple ids on the same iMac. Can we each use our own icloud on our own user account , as previously with itunes match have got myself locked out for having the computer associated with more than one apple id.

    Yes, you can use multiple iCloud accounts in multiple User Accounts on one computer, but, as you know not multiple iTunes Match accounts. Keep in mind that the two services are not the same.
    Since you've posted your question to the iTunes Match forum, which it really doesn't pertain to, you might want to also post it to the iCloud on my Mac forum.

  • My itunes library has organically grown from more than one itunes account but all now on a separate computer.  If I upgrade to iTunes match will I have to pay for each account?

    My itunes library has organically grown from more than one itunes account (all paid for by me) but all now on a separate computer.  If I upgrade to iTunes match will I have to pay for each account or just once, for the computer?

    No.  Provided the computer that you use to upload / match your Songs is authorised to play all of the Songs all works well - once complete you can download Song files that will play on your libraries / other computers without each computer having to be authorised.

  • Sequence contains more than one matching element

    Hi
    I have checked all threads and none answers my issue.
    I am trying to drop a user and am following this blog:
    http://sanderstechnology.com/2013/login-and-user-management-in-sql-azure/12826/#.U46Hh_mSweo
    Below is a series of screen-shots of the issue. Please assist. Thanks, Mark.
    Mark

    Hello,
    Based on your descritpion, you create a SQL database with WEB edition and try to connect to the MASTER database from Windows Azure Management portal. But it is failed with "Sequence contains more than one matching element" occasionally.
    Due to the uncertainty and randomness factors, it requires higher level troubleshooting methods.I suggest you contact Windows Azure support team by creating a support ticket at 
    http://www.windowsazure.com/en-us/support/contact if you recevied this error again.
    As for drop login, it may caused by the premssion. In SQL databae, only server-level principal login (created by the provisioning process) or the credentials of an existing member of the "loginmanager" database role can manage logins. If you are not use
    a server-level principal login, please ask the adminstrator add the login to loginmanager databaserole:
    EXEC sp_addrolemember 'loginmanager', 'login-you-used';
    Reference:http://msdn.microsoft.com/en-us/library/azure/ee336235.aspx
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here. 
    Fanny Liu
    TechNet Community Support

  • Subreport header on more than one page ?

    <p>Hi all,</p><p> </p><p>I need to create some reports with big subreport inside !</p><p> </p><p><font color="#000099">Main report </font></p><p><font color="#000099">subreport1  (10 pages and 9 columns)</font></p><p><font color="#000099">subreport2 (15 pages and 3 columns)</font></p><p><font color="#000099">etc... </font></p><p> </p><p>My problem is when I go on page 2 I do not have  the subreports PageHeader nor the subreport PageFooter ?</p><p>These subreport header and footer are different for each subreports I have.</p><p> </p><p> In fact if you look in the subreport the page header is replace by a report header !!!</p><p> </p><p>a) Is it an option to activate the subreport header and footer on a new page ?</p><p>b) Is it possible to prevent the subreport "page header" section  to be renamed into "report header" ? </p><p>c)  Is there a way to display more than one report at the same time with 1 CrystalViewer (without subreport)</p>

    <p> </p><p> </p><p> </p><p>If someone encounter the same problem : I found this : </p>http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=c2005103&sliceId=&dialogID=10086025&stateId=1%200%2010082919<p> This solution help me creating fake header ...</p><p>Do I have to use it ? (it means modify all the reports)  Or is there another solution ?<br /></p><p>-->  For the footer the same method exist but need a fix number of lines per page and no can grow option. </p><p> This is not possible for me !</p><p> Any idee ?</p><p> </p><p>Thanks </p><p> </p>

  • A header data can have more than one lie item data !

    How can a header data have more than one line item data ?

    Hi,
    header table will have only main data where as the item data will have material delivery date other things based on the availabilty and committement
    http://help.sap.com/saphelp_srm30/helpdata/en/38/4cc5376848616ae10000009b38f889/content.htm
    Regards
    Shiva

  • Opportunity - Sales Prospect: List search results if more than one match

    Hi CRM Experts,
    in the Opportunity our users have to enter a Sales Prospect. PC-UI allows to enter directly a Name like "Wolf". But when you press enter after this step the first match is filled into this field. But this can be the wrong Sales Prospect. I want to have a functionality that when the Name is entered and there are more than one match a list of the results should be displayed. Then the user can choose the correct partner.
    Regards
    Gregor

    Hi Gregor
       Yes,you are right actually the pop up window will appear with sales employee and other partner if necessary and suggested by the system.I hope you would have gone thru acquistion  from there opportunities and then you would createand clicked on sales methodology(Scroll down if necessary).Actually i dont have access now to the system i will defintely check it out and let you know ASAP.
    Regards

  • HT4914 can i have more than one computer on itunes match?

    I have more than one computer and have differnet music on both and I want to know if i can have both of those computers on itunes match on one is a mac and one is a pc

    You can have multiple computers on iTunes Match, yes. See:
    http://support.apple.com/kb/ht4913
    Regards.

Maybe you are looking for