VCS-E SRV Records for several regions of the

I have a region of production with a cluster of 2 highways and a test with one Highway area.

Since I've implemented the first test area, I SRV records in place for Highway test:

Here is an example of 1...

_sip._tcp.example.com. 86400 IN SRV 10 10 5060 testvcsx.example.com

How do I set up the SRV records for the production cluster using the same domain (example.com) but still be able to separate my production and test records, call the traffic, etc.?

Hi André,.

somehow, he must distinguish between prod and test platform.

I would say to leave the field of prod to be like (referring to your example) example.com and trying to be test.example.com

The answer DNS SRV is a recordset in the format:

_ service. _ Protocol... TTL class SRV priority weight Port target

When the target is a record setting the destination and for a cluster, it may be FULL of the cluster domain name.

so if you have a cluster as prod and autonomous as a test, you can implement it like this:

_sip._tcp.example.com. 86400 IN SRV 10 10 5060 vcscluster.example.com

and you test domain is resolved by:

_sip._tcp.test.example.com. 86400 IN SRV 10 10 5060 testvcsx.test.example.com

Best regards, Ahmad

Tags: Cisco Support

Similar Questions

  • controller for several regions of the

    Hello

    I create a new page. This page includes several regions. I have a single VO that queries data from different tables, but that data should be divided into 3 different areas on the same page.

    So, to do this, I created a provision of battery and 3 presentations of single column under this provision of the battery. I created the controller for the disposal of the battery.

    My question is:

    Create 3 controllers for 3 single column page layouts? or should I give the name of the Stacklayout controller to these layouts also.

    Thank you very much
    PK

    The intention of a controller must manage some initializations and events page. Donot you must have a controller in each region. A controller at the pagelayout region can handle events on the entire page.

    Anyway, in your case you have only a single VO that must be performed and the data displayed in three regions. Hope says.

    Concerning
    Sumit

  • Unique Taskflow for several regions of the

    Hi all

    I wonder if it's possible. Let me explain the scenario:

    I have a menu with 4 gomenuitems and a taskflow with view 4 activities.
    When you click on an element of firstmenu I want the first activity of view which will be called and displayed as a region and vice versa
    This can be using the dynamic and vibrant region link concept, but in this case, I must have 4 taskflows
    but v run this unique taskflow scenario.

    Hope it is clear...

    Thank you

    Hello

    the views are in a stream unique task, is it the default activity is an activity of router. Then go viewId name you want to see as an entry for the workflow setting and make sure that the area is refreshed (you can set Refresh on IfNeeded region for triggers to change value of input parameter of task flow cooling in response to a partial refresh--> PartialTriggers property on af:region pointing to your menu item ID). The router accesses the value of input parameter and determines the case of control flow to the view in the region

    Frank

  • Conditional pagination for several regions of the

    Apex 3.1.1 16, engine research theme 1,2,3,4 (defined according to the pagination)

    Hello
    I'm working on an application that uses the conditional pagination. We have an item in the selection list where the user can choose to translate how they want to see on one page of lines. If the lines of returned results are lower than what the user selects (it has only one page of results), pagination is hidden so the '1' does not appear. It works fine except if there is a page with more than one area of the report. Is it possible to limit the $('.pagination') to each region? Maybe using the static ID of the region? I'm new to Javascript and Apex, so I don't know how to reference the pagination in a given region or if this is even possible. Thank you.


    Script that is located in the foot of each region:
    <script type="text/javascript">
    
      if ( #TOTAL_ROWS# > &P302_RESULT_ROWS. )
      {
        $('.pagination').show();
      }
      else
      {
        $('.pagination').hide();
      }
    
    </script>
    Lisa

    Not yet jQuery installed, but as much as I realized that I see no reason why what you suggest will not work. #REGION_STATIC_ID # is replaced in the foot of the region, and - at least standard report templates - pagination are descendants of the #REGION_STATIC_ID item #:

    
    
  • SQL query to retrieve a single record for each employee of the following table?

    Hi all

    Help me on the writing of SQL query to retrieve a single record for each employee of the following table? preferably a standard SQL.

    CREATE TABLE xxc_contact)

    empnum NUMBER,

    alternatecontact VARCHAR2 (100),

    relationship VARCHAR2 (10),

    phtype VARCHAR2 (10),

    Phone NUMBER

    );

    insert into xxc_contact values (123456, 'Rick Grimes', 'SP', 'Cell', 9999999999)

    insert into xxc_contact values (123456, 'Rick Grimes', 'SP', 'Work', 8888888888)

    insert into xxc_contact values (123457, 'Daryl Dixon', 'EN', 'Work', 7777777777)

    insert into xxc_contact values (123457, 'Daryl Dixon', 'EN', 'Home', 3333333333)

    insert into xxc_contact values (123456, 'Maggie Greene', 'CH', 'Cell', 9999999999)

    insert into xxc_contact values (123456, 'Maggie Greene', 'CH', 'Home', 9999999999)

    expected result:

    EmpNum AlternateContact Relationship PhType Phone       

    123456 rick Grimes SP cell 9999999999

    Daryl Dixon EN work 7777777777 123457

    Home 123458 Maggie Greene CH 6666666666

    Thanks in advance.

    994122 wrote:

    Thank you all, that I got a result

    http://www.orafaq.com/Forum/m/620305/#msg_620305

    By Lalit Kumar B...

    Specifically, the two simple solutions provided were:

    1 using the row_number, entitled Oracle ranking based on descending order of the inside telephone each empnum group. And finally selects the lines which has least rank (of least since that order is descending for phone).

    SQL > column alternatecontact format A20;

    SQL >

    SQL > SELECT empnum, alternatecontact, relationship, phtype, phone

    2 from (SELECT a.*, row_number() over r (PARTITION BY empnum ORDER BY phone / / DESC))

    3 FROM xxc_contact one)

    4. WHEN r = 1

    /

    EMPNUM ALTERNATECONTACT RELATIONSHIP PHTYPE PHONE

    ---------- -------------------- ---------- ---------- ----------

    123456 rick Grimes SP cell 9999999999

    Daryl Dixon EN work 7777777777 123457

    Home 123458 Maggie Greene CH 6666666666

    2. with the help of MAX, Oracle automatically assigns the maximum phone for all the rows in each group of empnum. And finally selects the rows with the maximum phone. Order by clause is omitted here intentionally. You can find out why.

    SQL > SELECT empnum, alternatecontact, relationship, phtype, phone

    2 (SELECT a.*, MAX (phone) over (PARTITION BY empnum) rn FROM xxc_contact one)

    3 WHERE phone = rn

    4.

    EMPNUM ALTERNATECONTACT RELATIONSHIP PHTYPE PHONE

    ---------- -------------------- ---------- ---------- ----------

    123456 rick Grimes SP cell 9999999999

    Daryl Dixon EN work 7777777777 123457

    Home 123458 Maggie Greene CH 6666666666

    Kind regards

    Lalit

  • How to count the records for each region day and conditional

    Hello

    I need to create a report where I list activities for a month and the number of specific Type for each days activities. something like below

    Number of days in the month where Type = 'A' Count where Type = B
    January 1, 2009 2 3
    January 2, 2009 7 6
    January 3, 2009 8 7
    ----

    -----
    January 31, 2009 4 6

    I tried with the creation of conditional region for each row of table for every day, but it does not work. I use below for conditional region-

    <? xdofx:If substr (to_date ('20': substr (Planned, 9, 2) |)) » -'|| substr (Planned, 1, 2). » -'|| (substr (Planned, 4, 2), 'MM-DD-YYYY'), 4, 2) = 01? > <? Planned? > <? end if? >
    But it is not functional and do not know how to count records in the table for each date as well.

    Can anyone help in it as soon as possible. I'm quite new to BI.

    Thnks

    You can mark it as resolved... :D

    Kind regards
    Colectionaru

  • update of windows xp on the computer that has never been updated for several years because the owner has never had access to the internet. I can just to SP3? SP2 has been installed ever

    My name is Pedro, help a good friend who has 3 small destop computers running windows XP. There is no internet at all since the installation of several years now. My question is: can I download SP3 and install it on 3 PCs similarly when they never received updates from the dell factory install? Or SP2 is a sine qua non before moving on later? In fact am still dealing with a place without internet access.

    Thank you very much for the help!

    According to the first article below, before you install SP3, you must have either the SP1a or SP2 installed on the computer.  You have not specifically need to have SP2 installed.  For more information, see the following articles:

    "Learn how to install Windows XP Service Pack 3"
    <>http://Windows.Microsoft.com/en-us/Windows/help/learn-how-to-install-Windows-XP-Service-Pack-3-SP3 >

    "Steps to take before you install Windows XP Service Pack 3"
     <>http://support.Microsoft.com/kb/950717 >

    "How to obtain the latest Windows XP service pack"
      <>http://support.Microsoft.com/kb/322389 >

    HTH,
    JW

  • How to config a cache shared for several environments with the C API

    How to config a cache shared for several environments with C API?  Like Java edition. Chapter 2. Database environments

    I want to open the large number of databases, at least 10,000. But as the counties of open databases increase, the db-> open become very slow operation. It took almost 2 hours for 10 000 databases.

    So I try to distribute these databases on multiple environments (for example, 5 envs). And to improve the efficiency of memory use, I want to share cache between ENVS.

    Hello

    We do not support the cache sharing between different environments as you mentioned.

    We have tested the case of the opening of 100 000 databases, see the number that you have encountered, we will check what is happening.

    Kind regards

    Winter, Oracle Berkeley DB

  • Cannot find a service record for vCenter service with the host name "IP address"

    After upgrading to vCenter native 5.5 to vSphere Client device everything works, but not all orders for PowerCLI.

    After a command gives me error under VMware vSphere PowerCLI 6.0 Release 1

    Get-TagCategory: 13.07.2015 16:50:48 Get-TagCategory could not find a service record for vCenter service with host name 10.x.x.x

    In Zeile:2 Zeichen:1

    + Get-TagCategory

    + ~~~~~~~~~~~~~~~

    + CategoryInfo: ObjectNotFound: (:)) [Get-TagCategory], VimException)

    + FullyQualifiedErrorId: ViCore_InventoryServiceProxy_GetInventoryServiceInfo_NoVcRegistration, VMware.VimAutomation.ViCore.Cmdlets.Commands.Tagging.GetTagCategory

    does anyone have a solution or an idea for this problem?

    Best

    Marco

    I have exactly the same problem. Are there solutions yet?

    Best regards

    René

    Found the solution in the database (2127028).

  • create subroutines for several structures of the event and common stop button

    Hi guys,.

    I wonder if there is a better way to design algorithm below scenerio that similar technical rehearsal for each structure of the event.

    Please find in annex vi where I designed the code to a boolean (D). I want to design a similar code for all other bolleans. (In the present design code, photo is displayed when the mouse is flown over D). I obviously have other pictures for the other,(A,B,C,E,F) booleans. Can we have a kind of subroutines for other Boolean types and a single stop for all the application button.

    Thank you very much in advance for your support.

    Sorry (I forgot to add vi) Please find attached.

  • Set the reference point for several objects in the middle of the document

    Hello community,

    I want to mirror a layout.

    I: Yes

    1. Select all objekts

    2. set the benchmark in the Middle

    3. objects in mirror

    BUT

    The reference point is in the middle of all the OBJECTS. This led to several objects across the border into my document because the layout is not spread out on a regular basis.

    I want through the DOCUMENT will be the point of reference. How can I do?

    Thank you

    Christian

    Have you fiugured this out yourself?

    I just played a little and found a method, but it is not really intuitive. Select the object, then go to the rotation tool. The center of rotation must be defined as one of the handles of transformation, but you can drag it anywhere you like, then move until you want as the center of your mirror. Hold down the Opt/Alt key and click on the button to create a mirrored copy. The objects original reflects their position around the reference repositioned without the modifier key.

  • Select a record for each Member of the Group

    Hello
    will have a table where in I'll take data for so many members of the group. I need to retrieve data for a particular group whose number of rows of data may be more in number (but I don't want only one row of data for each Member of the Group)

    Here is the query to retrieve all rows of data
    select RI.RESOURCE_NAME,TR.MSISDN,TR.ADDRESS1_GOOGLE, TR.MSG_DATE_INFO, FROM TRACKING_REPORT TR, RESOURCE_INFO RI 
    WHERE TR.MSISDN IN (SELECT MSISDN FROM RESOURCE_INFO WHERE GROUP_ID ='1' AND COM_ID=2 ) AND RI.MSISDN=TR.MSISDN 
     order by MSG_DATE_INFO
    This query result is...
    >
    DDD 12345 13 March 10 19:43:03
    EEE 54321 Tamilnadu, India 13 March 10 19:39:48
    DDD 12345 13 March 10 19:32:58
    EEE 54321 Tamilnadu, India 13 March 10 19:30:07
    DDD 12345 13 March 10 19:23:08
    EEE 54321 Tamilnadu, India 13 March 10 19:20:14
    FFF 98765 March 13 10 19:19:22
    DDD 12345 13 March 10 19:13:01
    EEE 54321 Tamilnadu, India 13 March 10 19:09:50
    DDD 12345 13 March 10 19:02:56
    EEE 54321 tn, ind March 13, 10 18:59:49
    DDD 12345 13 March 10 18:53:08
    EEE 54321 tn, ind March 13, 10 18:49:50
    DDD 12345 13 March 10 18:42:56
    EEE 54321 tn, ind March 13, 10 18:39:50
    DDD 12345 13 March 10 18:33
    EEE 54321 tn, ind March 13, 10 18:29:50
    DDD 12345 13 March 10 18:22:54
    EEE 54321 tn, ind March 13, 10 18:19:50
    DDD 12345 13 March 10 18:12:56
    EEE 54321 tn, ind March 13, 10 18:09:50
    DDD 12345 13 March 10 18:02:54
    EEE 54321 tn, ind March 13, 10 18:00:02
    FFF 98765 Tamilnadu, India March 13, 10 17:59:26
    FFF 98765 Tamilnadu, India March 13, 10 17:54:26
    DDD 12345 13 March 10 17:52:56
    EEE 54321 tn, ind March 13, 10 17:49:50
    FFF 98765 Tamilnadu, India March 13, 10 17:49:25
    FFF 98765 Tamilnadu, India March 13, 10 17:44:26
    DDD 12345 13 March 10 17:42:56

    >

    This output, I only want a new album for each member(ddd,eee,fff). That is to say
    >
    DDD 12345 13 March 10 19:43:03
    EEE 54321 Tamilnadu, India 13 March 10 19:39:48
    FFF 98765 March 13 10 19:19:22
    >

    How to change the query to do this...?

    Ok. I looked more carefully at your sample and it looks like you are looking for:

    SELECT  RI.RESOURCE_NAME,
            TR.MSISDN,
            MAX(TR.ADDRESS1_GOOGLE) KEEP(DENSE_RANK LAST ORDER BY TR.MSG_DATE_INFO),
            MAX(TR.MSG_DATE_INFO)
      FROM  TRACKING_REPORT TR,
            RESOURCE_INFO RI
      WHERE TR.MSISDN IN (
                          SELECT  MSISDN
                            FROM  RESOURCE_INFO
                            WHERE GROUP_ID ='1'
                              AND COM_ID=2
                         )
        AND RI.MSISDN = TR.MSISDN
      GROUP BY  RI.RESOURCE_NAME,
                TR.MSISDN
    / 
    

    SY.

  • Can I connect VHS Video Recorder for Qosmio G20 using the antenna in the Port?

    Hello.

    I connect my G20 a very old VCR. Can I connect it to the antenna in the port? Someone at - it tried? Because it will not need to buy a cable SCART. And for what I searched by linking to the video in Port, if I want to record the signal, I have WinDVD record I did more.
    So I was wondering if connect the VCR to the antenna port. I'll be able to find and record the VHS signal on media center?
    Thank you

    I already tried on S - video In and I get black screen

    More: When I connect the laptop to a TV it works only via the S-video port. When I use the D-video port it simply doesn't work. The black screen.

    Of course you can do it. On this Qosmio laptop TV tuner works on the same principle as usual TV. You can watch movies on Qosmioplayer or using Media Center Edition VHS. In both cases start movie VHS and let Qosmioplayer or MCE sweep all TV channels. On one of them, you will see the picture of VHS VCR.

    All that s. I tested it with Qosmioplayer and MCE too. It works without any problem. I also tested recording option. This also works. Later, I edited material recorded and created DVDs.

    With short words: with Qosmio G20, you can do whatever you want. It's really good multimedia laptop.

  • Key 3 C often does not work for several minutes after the start, the other keys work fine.

    I got am HP Pavilion 17-e049wm Notebook PC product #E0J75UAR for about 4 weeks now.  I bought it refurbished.  A week ago I started having this problem.  3, e, d and c keys do not work when I first start the computer all of the other keys work.  Nothing happens when they are pressed.   Sometimes I will restart the computer and they work again, other times they won't, but often will start working if I left the computer set for about five minutes after the start.

    The computer is spotlessly clean.  I've only used a dozen times or more.  Nothing has been spilled on the keyboard.

    Sounds like software for me, but what?

    I am running Windows 8.1 and no programs are running at startup, with the exception of a program start button, but the problem began weeks after installing that.

    Any ideas?

    FWIW, I called hp. They believed excluded material and had me do a full system restore. Problem persists... The things you own end up owning you they say... I guess it's doubly true if you own a hp laptop. Full day turned... One day closer to death. Thanks Obama.

  • Uninstaller fails with the message &#60; internal error - cannot find utCompiledCode record for this version of the uninstaller

    Computer = Sony Viao running Vista SP 2. Uninstaller for Windows seems to be corrupted when trying to uninstall 'Adobe Air' (which is reported at startup). Installer UN seems frozen in an unfinished task. Attempts to install a program displays ... Microsoft FixIt for problems installing could not solve it. What is a utCompiledCode? and the Setup program itself is re-installed/updated? You want to avoid the system restore because of recently resolved driver h/ware problems.

    Hey Johnwarrell,

    You can try using this free program. I don't know if it can uninstall your program, but it he finds it and if you can uninstall it can even erase files that cannot be deleted by windows. I guess there is no need to repair or reinstall Windows Installer.

    http://www.revouninstaller.com/download-professional-version.php

    Good luck!

Maybe you are looking for

  • Cannot respond to some texts of group in iMessage on Macbook

    Hey guys, I have a weird problem that I noticed for a bit, simply never passed me pretty buggy until today to reach out for help. In some messages of Group (everyone has an iPhone in the Group), the application iMessage on my Macbook Pro will not let

  • New to Mac... security issue?

    Hi all First of all, I apologize because I know that this question is probably asked a LOT. Most of the answers I find is for quite awhile ago so I just want to know if this is still the standard? I am new to Mac computers. I've had my Mac Book Pro f

  • How can I recover my address book from the server, I changed TO?

    I had been with peoplepc.com and changed to another server.  A rep with peoplepc.com said that it exported all my email and my Web mail address book.  He said that I could find on my desktop and export it to where I wanted to.  I don't know how to fi

  • Windows Live Essentials (Beta) install problems

    Following the crash of my MSN Messenger (which was after a recommended update; the "Windows Live Essentials")... On the list of recommendations for "problem reports and solution." I read about Windows Live Essentials Beta, which I've tried to install

  • Dowload of Smartphones blackBerry interrupted - how to re - download

    Hello I tried to download an app (restaurant reservation app free of OpenTable) on my BB tour, when I received a phone call, and my download was interrupted.  I tried to re - download the app, but I can't seem to do.  The "Download"button does not ap