Doubt about integration CUCM and VoIP Provider

Hi Guys,
I have the follow doubt: Is possible to do integration CUCM and VoIP Provider using authentication? Is there necessary another equipment to do this? CUBE for example? or another alternative
Thanks,
Wilson

If you are referring to authentication over sip trunk, then NO! CUCM doesn't do authentication you will need a CUBE for that

Similar Messages

  • Doubt About Integration And Certification

    Hi Expers,
    I have One Doubt. What is SAP Integration And Certification????
    Why  People wil  Do this At SAP Integration And Certification Center??
    Is there Any Benifit By Doing This one?????
    Please Clear my All Doubts.....
    Regards
    Khanna

    Hi
    Services offered though integration and certificaiton are
    Access to SAP test systems
    Integration assessment
    Integration consulting and workshops
    Integration certification
    SAP ICC premium services --
    Through regional SAP Integration and Certification Centers (SAP ICCs), SAP offers integration and certification services, such as an interface certification program, consulting, and access to test systems
    Go throught these links
    http://www.sap.com/partners/icc/index.epx

  • Doubt about Integration Directory

    Hi Expers,
    I have one doubt about ID.
    What are  the objects we can re-use in the IR And  ID.
    Please let me know.
    Regards
    Khanna

    Hi Rajesh,
    <i>With out Developing of the ID Also my Scenario is Working Fine.</i>
    Yes it will work, if you are using the same names for message interface, message mapping and interface mapping.
    Beacause in ID an Object key is uniquely assigned for each configuration object.
    if it already exist then no need to create another.
    Check this link for more details.
    http://help.sap.com/saphelp_nw04/helpdata/en/7c/7c33419026f423e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/5d/372f41fe21c059e10000000a155106/frameset.htm
    Sachin

  • Doubts about HTTPS requests and Java proxy

    Hello,
    I need help about SSL connections and Java.
    I'm developing a HTTP/S proxy with Java. To test my proxy, I use Firefox. I configure the proxy option in the browser. The proxy works good with HTTP requests, but with HTTPS requests doesn't work and I don't know why.
    I explain the steps that I do for a HTTPS request:
    * The browser sends a CONNECT message to the proxy.
    I check that the proxy receives the CONNECT request correctly.
    * The proxy establish a secure connection with the content server.
    I use an SSLSocket to connect with my content server, and the SSL handshake is succesful.
    * The proxy sends a 200 HTTP response to the client:
    I send
    HTTP/1.0 200 Connection established[CRLF]
    [CRLF]
    to the application client (Firefox)
    * The proxy sends/receive data to/from Firefox/content server
    I have a Socket between Firefox and my proxy, and a SSLSocket between my proxy and my content server. I use two threads to communicate the client and the server.
    Java code:
    //Thead server-->proxy-->application(Firefox)
    ThreadComm tpa = new ThreadComm(bis_serverSSL, bos_app);
    //Thread application(Firefox)-->proxy-->server
    ThreadComm tap = new ThreadComm(bis_app, bos_serverSSL);
    The "tpa" thread reads from the SSLSocket between the proxy and the server and sends data to the Socket between the proxy and Firefox.
    The "tap" thread reads from the Socket between the proxy and Firefox and sends data to the SSLSocket between the proxy and the server.
    This is the class ThreadComm:
    public class ThreadComm extends Thread{
        private BufferedInputStream bis = null;
        private BufferedOutputStream bos = null;
        public ThreadComm(BufferedInputStream bis, BufferedOutputStream bos) {
            this.bis = bis;
            this.bos = bos;
        @Override
        public void run() {
            int b = -1;
            FileOutputStream fos = null;
              do {
                   try {
                        b = bis.read();
                        System.out.print((char) b);
                        fos.write(b);
                        bos.write(b);
                        bos.flush();
                   } catch (Exception ex) {
                        Logger.getLogger(ThreadAplicacionProxy.class.getName()).log(Level.SEVERE, null, ex);
                        //b=-1;
              } while (b != -1);
        }But this doesn't work and I don't know why.      
    I have an Apache server with the mod_ssl enabled as content server, I can send requests (with Firefox) to the port 80(HTTP request) and 443(HTTPS request) without use my proxy and it works. If I use my proxy, HTTP request works but with HTTPS request doesn't work, I look the log of Apache and I see:
    [Tue Apr 27 17:32:03 2010] [info] Initial (No.1) HTTPS request received for child 62 (server localhost:443)
    [Tue Apr 27 17:32:03 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue Apr 27 17:32:03 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue Apr 27 17:32:03 2010] [info] [client 127.0.0.1] Connection closed to child 62 with standard shutdown (server localhost:443)
    Why it say? Invalid method in request \x80\x7f\x01\x03\x01 , my proxy sends the data that the Firefox sends.
    I think than I have follow the explanations of [1] but doesn't work, I have problems in implementation in Java but I don't know where.
    I appreciate any suggestions.
    Thanks for your time.
    [1] http://www.web-cache.com/Writings/Internet-Drafts/draft-luotonen-web-proxy-tunneling-01.txt

    ejp, I have checked the socket between the proxy and server and ... You are right! , I was using the port 80 instead of the 443 (incredible mistake!, I'm sorry). I was convinced that I was using the port 443... Well, is a little step, but I still have not won the war :)
    If I see the log files of Apache, We can see that something goes wrong.
    localhost-access.log
    >
    127.0.0.1 - - [04/May/2010:17:44:48 +0200] "\x 80\x 7f\x01\x03\x01" 501 219
    >
    localhost-error.log
    >
    [Tue May 04 17:44:48 2010] [info] Initial (No.1) HTTPS request received for child 63 (server localhost:443)
    [Tue May 04 17:44:48 2010] [error] [client 127.0.0.1] Invalid method in request \x80\x7f\x01\x03\x01
    [Tue May 04 17:44:48 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 17:44:48 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    I think that this happens because Apache receives the data without decrypt, this is the reason because in the log we can see the "Invalid method in request \x80\x7f\x01\x03\x01". This supposition is true?
    ejp, you say that the "Termination is quite tricky." I have changed my code following yours suggestions (using the join and the shutdownOutput) but the threads don't die.
    I explain you what I do:
    (in time 1)
    I launch the thread (threadFirefoxToApache) that reads data from Firefox and sends to Apache.
    I launch the thread (threadApacheToFirefox) that reads data from Apache and sends to Firefox.
    (in time 2)
    threadFirefoxToApache sends the firts data to the server.
    threadApacheToFirefox is waiting that the server says something.
    (in time 3)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox sends data to Firefox.
    (in time 4)
    threadFirefoxToApache is waiting that Firefox says something.
    threadApacheToFirefox is waiting that Firefox says something.
    and they are waiting... and never finish.
    In time 2, these first data are encrypted. The server receives these data and It doesn't understand. In time 3, the server sends a HTTP response "501 Method Not Implemented", here there is a problem because this data must be encrypt. According to the documentation that I read, the proxy cannot "understand" this data but I can "understand" this data. What's happen?
    Firefox encrypt the data and send to the proxy. This It's correct.
    The proxy encrypt the data another time, because I use the SSLSocket to send the data to the server. Then the server receives the data encrypted two times, when decrypt the data gets the data encrypted one time. And this is the reason why the server doesn't understand the data that sends Firefox. It's correct? May be.
    Then If I want that the server receives the data encrypted one time I need to use the socketToServer, It's correct?
    I will supposed that yes. If I use the socketToServer, the proxy doesn't understand nothing, because the data received from the socketToServer are encrypted (I only see simbols), but the Apache log says that there is a problem with the version? (If I use the socketToServer the threads die)
    >
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 read finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write change cipher spec A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 write finished A
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1760): OpenSSL: Loop: SSLv3 flush data
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1756): OpenSSL: Handshake: done
    [Tue May 04 19:55:42 2010] [info] Connection: Client IP: 127.0.0.1, Protocol: TLSv1, Cipher: RC4-MD5 (128/128 bits)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1817): OpenSSL: read 5/5 bytes from BIO#29bd910 [mem: 29ea0a8] (BIO dump follows)
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1750): -------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1789): | 0000: 80 7f 01 03 .... |
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1793): | 0005 - <SPACES/NULS>
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_io.c(1795): ------------------------------------------------------------------------
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] SSL library error 1 reading data
    [Tue May 04 19:55:42 2010] [info] SSL Library Error: 336130315 error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
    [Tue May 04 19:55:42 2010] [debug] ssl_engine_kernel.c(1770): OpenSSL: Write: SSL negotiation finished successfully
    [Tue May 04 19:55:42 2010] [info] [client 127.0.0.1] Connection closed to child 63 with standard shutdown (server localhost:443)
    >
    What option is the correct? I need use the SSLSocketToServer or socketToServer to send/read the data to/from the server?. Use the SSLSocket has sense because the data travel in a secure socket, but use the Socket also has sense because the data are encrypted and they are protected by this encription. It's complicated...

  • Doubt about JAVA stack and ABAP Stack

    Good day!
    Hope can help me with my next doubt. I understood that BI JAVA or JAVA has been embedded in the Java support package stack for portal. But for BI7 the installation for JAVA is by sps. We only use pure support package for BI7, we don't use support package stacks and we don't use JAVA. I'm not sure because i don't made the sap installation in our enterprise, how can i be sure if we have installed java in BI7 and if we don´t have installed, should I install Java in our sap system? what are the benefits and consequences if I decide install it? and what is the difference about BI java (portals) and JAVA stack for BI7?
    I try to find some information but I found some information  about bi Java for portals, but not for BI.
    Ramón Sánchez

    Hai,
    BI-7.0,JAVA:BI-Java is used to provide the Java runtime for scenarios such as Enterprise Reporting, Query, and Analysis as well as Business Planning and Analytical Services.BI-Java requires AS Java and Enterprise Portal Core and EP in the same system. Optionally, you can combin with other usage types in one system. Usually, scenarios running on usage type BI-Java also require usage types BI and AS ABAP. While installing BI-Java, AS Java, EPC and EP get installed automatically. Usually, when running on usage type BI-Java also require usage types BI and AS ABAP, you should be aware that no matter if you run BI and BI-Java in the same or in separate systems, both BI and BI -JAVA should be kept in sync in terms of Support Package Stacks.
    BW 7.0 is now called as BI 7.0. There are many differences between them in areas like extraction, EDW, reporting, analysis administration,etc.,
    http://www.ittestpapers.com/articles/987/2/SAP-BI-70-Features/Page2.html
    Advantage of having Double stack Instance: Where AS ABAP provides the complete technology and infrastructure to run ABAP applications and AS JAVA provides Java Enterprise Edition environment for developing and running Java programs.
    Regards,
    Yoganand.V

  • Questions about Integrated Planning and BPS

    Hi all,
    I'm testing the functions of BW7.0. And at the point of comparing the new BI Integrated Planning from the BPS, I'm stuck with 3 problems. Can anybody give me some solution?
    <b>i.</b> When using the input-ready layout of the BW-BPS 3.5, I was able to create a new record and load it up to the cube. Is it possible to make the same operation like this using the BI Integrated Planning of BW7.0?
    <b>ii.</b> When using the BW-BPS 3.5, showing the character hierarchy on the Manual planning layout can be chosen. And I'd like to show the BPS Characteristic Hierarchies in BI Integrated Planning of BW7.0 like it is in the BW-BPS 3.5. Is it possible to show the hierarchy in similar type somehow? If not,can't I show the sum of it anyhow? And if possible,can you also show the sum of the each hierarchy and change the data?
    <b>iii.</b> When showing the Characteristic combination data, can you choose how to show them from the transaction data or from all the combination like it was possible in the BW-BPS 3.5?
    Kind regards,
    Hiroshi Iwanaga

    Dear Beat,
    Thanks for your help.
    The information you gave me made a lot of help.
    Can I ask you more about the first question?
    About getting new lines in the table web item,as you have told me, I have set the parameter NEW_LINES_COUNT as 20 in the table web item. But when I execute it,no lines shows up. Is this a program error or am I setting the parameter in a wrong place?
    And this getting new lines feature, is it also possible when using a workbook?
    Thanks in advance,
    Hiroshi Iwanaga

  • Doubts about the advantages and disadvantages of BEx Analyzer

    Hi people!
    Do you know in specific. What are the advantages and disadvantages of BEx Analyzer?
    and Do you know the limitations and scope of the bex analyzer?
    Talking about the security issue. What kind of resticciones be applied to end-users to control information. Protecting system
    resources and the information that the user uses, not be manipulated.
    I hope you could answer my doubts
    Ramon
    Thanks

    Hi!
    The standard BEx BI 3.x tools, is no longer available with the SAP NetWeaver 7.0 BI tools; however, it is part of the SAP BI add-on installation that, by default, will install the BW 3.x tools along with the newer BI 7.0 tools.
    We want to prevent unauthorized download of data to excel sheets from users who have installed bex analyzer but are not authorized to do that. Certain users only have to access querys from web and shouldn't have to use reports from bex analyzer.
    The only accepted way to access reports for all users is by using web querys published in our intranet. But many users have bex analyzer installed and we don't want that an unauthorized user download data to a excel sheet via bex analyzer.
    I'm testing with one user with this roles, but bex web template and bex analyzer have similiar object authorizations, and i don't know if is possible prevent unauthorized download of data from excel sheets.
    Final users don't access to bex analyzer by rrmx transaction
    Until know i'm testing with this user roles:
    1. ZBW:BEX_WEB:RFC (for web templates)
    S_RFC:
    ACTVT:     16
    RFC_NAME:
    RFC1
    RSBOLAP_BICS
    RSBOLAP_BICS_CONSUMER
    RSBOLAP_BICS_PROVIDER
    RSBOLAP_BICS_PROVIDER_VAR
    RSOBJS_RFC_INTERFACE
    RSRCI_LOCAL_VIEW
    RSWRTEMPLATE
    SDIFRUNTIME
    SYST
    RFC_TYPE:  FUGR
    2. ZBW:BEX:RFC (for Bex Analyzer):
    ACTVT:     16 
    RFC_NAME:
    RSOBJS_RFC_INTERFACE
    RSR_XLS_RFC
    RZX0
    SDIFRUNTIME
    SM02
    SUNI
    SYST
    RFC_TYPE:  FUGR
    please take in count this points:
    1. Prevent unauthorized download of data to excel sheets from users that should have accees only querys from web not bex analyzer (very important this point)=
    2. what are the disadvantages of BEx Analyzer, if only if limited by excel...from other point like performance, workprocess with long runtimes, memory issues, for said something.
    I don't know if i'm going by good way.
    Somebody could help me?
    Ramon

  • Doubts about "due date" and "overdue date" configuration

    Hello,
    On transaction FB5LN or FBL1N is possible to view the status of the items, and those statuses are referred to a "Net Due Date Symbol".
    Doubts:
    1) I want to know what is the difference between the "item is overdue" symbol and the "item is due" symbol?
    2) In our company the "due item" if configured as D (today) and the "overdue item" is as D+1 (ie. tomorrow), where can I configure those dates?
    Regards,
    Adriano Cardoso

    Hi
    I don't think you can configure anything to differentiate between Due and overdue. They have a simple English meaning. If an item falls due today based on payment terms, then it is shown "Due" in FBL1n. If the same item is not paid till tomorrow and if you see it tomorrow in FBL1n, it will be shown as "overdue".
    Jayaram

  • Doubt about Rollup Patches and Family Packs

    Hi All,
    What is the difference between Rollup patches and family packs?And also applying family packs will increase the codelvel?Please specify the naming convention of both the pacthes also.
    Thanks
    Rajasekar

    Thanks Kashif M &Hussein for your valuable replies.I've read the links. As per the documennt in r12.
    Product family release update pack (product family RUP)     An aggregation of patches on a given codeline created for all products in specific product family for a specific point release. For example, R12.FIN_PF.A.1.
    Release update pack (RUP)     A cumulative aggregation of product family release update packs on a given codeline created across Oracle E-Business Suite after the initial release. For example, 12.1.1.
    RUP in r12 is similar to family pack(11i) which will change the third digit (12.1.1 to 12.1.2).right?
    Product family release update pack(family pack) with new features called rollup patch?
    (or)
    About rollup patch I read in one apps dba blog
    Rollup patces are usually fixes of all issues popped up because of a particular minipack/familypack or maintenance pack. Lets assume you applied a family pack & because of that some issue/bug came into picture or all bugs reported soon after family pack or maintenance pack are fixed and released as Roll Up patch . These are usually denoted as roll up 1 rollup 2 or roll up A roll up B.
    So you will see maintenance pack 10 (11.5.10) roll up 1 or roll up2.
    How can we identify the roll up level?
    Thanks
    Rajasekar
    Edited by: user9113570 on Jun 5, 2012 8:30 AM

  • Doubt about select performance and keys in Select.

    Hi Gurus.
    I need select data from VBAK with key Vbeln (VBFA has value then i can use your vbelv i think)  then with VBAK-BSTNK and VBAK-KUNNR i goin to select data from KNA1 , only field ADRNR , then i going to ADRC table with field ADRNR  like key, then i could select CITY1, STREET, HOUSE_NUM1, HOUSE_NUM2, CITY2, POST_CODE1 e CITY1.
    1- I know that tables has many data then i need advices for a good performance. suggests is welcome.
    2- If i write any thing wrong please tell me .
    3-If anybody know any key that i don´t write please tell me.
    4-If anybody know other way .suggests is welcome.
    Thanks comunitty for help.

    Hi Ronaldo,
    It seems you have everything you need. You have primary keys for VBAK, KNA1 and ADRC, so the best option in my opinion is one select from vbak inner join KNA1. As fopr ADRC it may be tricy because of the date from / to, so this might be worth going FAE. But test both posibilities before settling for one.  I don't know why you need BSTNK though
    By the way, this I assume you are writing a report? cause if you only need one record at a time I suggest you use BAPIs for customer/address.
    Cheers,
    Custodio

  • Doubt about sys fans and connection of water cooler pump

    Hello, I have a motherboard MSI Z97 gaming 7 and need to know which connector you guys recommend connecting the water cooler pump H60 Corsair: sys fan or cpu fan?
    I want to connect the pump in the sys fan 1, 2 or 3, but need to know if I can put the SYS Fan running at full speed 100% for some bios option, it is possible? So I can leave the option CPU Fan 1 and 2 free for fans.

    Quote from: madmecca on 14-May-15, 06:56:08
    I have my h100i fans on cpu 1 and 2 and pump on system fan 3 no problems
    You can put the sys fan running the pump at maximum speed?

  • Integration CUCM with MCU Cluster, TCS and TMS

    Hi all,
    Do you have any guides, information and suggestions about integrating CUCM with MCU, TCS and TMS?
    To centralized IPT and Video Conference enviroment, i need to register MCU and TCS to CUCM v10.5.
    Also TMS should provision devices which are register to CUCM.
    Best Regards,
    Mesut

    Hi Mesut,
    You can refer below support forum links:
    https://supportforums.cisco.com/discussion/11281276/cucm-cts-and-tms-integration
    https://supportforums.cisco.com/discussion/11587226/registering-mcu-cucm-86
    Regards
    Sumeet

  • SAP BCM and VoIP technology

    Hello Experts,
    I just published an article on SDN about SAP BCM and VoIP technology. I believe it can be very helpful for those wishing to learn more about the SAP Contact Center solution and also for those who need a more technical detail about telecommunications.
    [SAP BCM and VoIP Technology u2013 A Technical Overview|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/30b8eca4-e42d-2d10-668a-fecca15cfbe9]
    Hope you enjoy it!
    Regards,
    Heber Olivar

    Hi,
    did you find information about the integration of SAP BCM with CUCM? Thanks
    Regards,
    Alberto

  • CME 7.1 with SCCP 7940G phones and SIP connection to a VOIP provider - inbound outbound fails

    Here's a quick and dirty diagram of a CME 7.1 configuration. The phone can all call each other but something is not quite right with the SIP provider. The registrar and SIP registration pieces are working but most of the configuration examples that I've seen make me think that the CME router was being used as the edge device to the internet. From my drawing, you can see that is not the case here. My edge device is a Cisco ASA5505 with 9.2.x software running. I might be missing something in the SIP gateway knowledge department. Without diving into the configuration, I'm wondering if SIP messages are failing for calls because of NAT'ing? Trying to do searches has been tricky because I keep running into information that is more about setting up CME for SIP phones or just getting SIP to work between CME and a SIP provider. I have that part working. I'm just a bit unsure about how an SCCP 7940G gets an outbound call or even gets one to come in.
    When I dial from my cell phone to the pilot number, there are no rings, it just goes to the VOIP provider's voice mail. When I try to dial out, I get a fast busy.
    So, is NAT a consideration? Will the SIP gateway set up a call (forward) via the pre-established SIP connection? Yeah, I do sound like a newb.
    If anyone has good information about, let's say, an inbound call and how that traffic flow works.
    Thanks!

    Have you configured your ASA to either NAT the IP address of the CME router or to do port forwarding for port 5060?

  • Sip trunk between CUCM7.0 and third party VOIP provider

    Hi all,
    I'm looking for a solution/howto configuration for setting up a SIP trunk between CUCM7.0 and a SIP-VoIP provider.
    Got SIP username, password and SIP-proxy IP from the provider.
    I've done such a setup on CUCME a couple of times, but never on the CUCM.
    Who can put me on right way?
    Can it be done on the CUCM, or must an IOS-Device be used (got a PSTN-GW connected through H323 with CUCM)?
    THanks for the hint,
    Greets Norbert

    Here we go.....
    CONFIG (Version=7.1)
    =====================
    Version 7.1
    Cisco Unified Communications Manager Express
    ! Calling nr. incoming
    voice translation-rule 40
    rule 1 /\(.*\)/ /0\1/
    ! Discard prefix (calling nr.)
    voice translation-rule 190
    rule 1 /^0\(.*\)/ /\1/
    rule 2 /^9\(.*\)/ /\1/
    ! Mapping, internat to external nr.
    voice translation-rule 191
    rule 10 /^[1-9].*/ /xxxxEXTERNALxxxx/
    ! for call-forwarding
    rule 15 /^0\(.*\)/ /\1/
    ! Mapping external to internal nr.
    voice translation-rule 192
    rule 2 /^xxxxxEXTERNALxxxx/ /4xx/
    voice translation-profile TP_IN_SIP
    translate calling 40
    translate called 192
    voice translation-profile TP_OUT_SIP
    translate calling 191
    translate called 190
    dial-peer voice 2001 voip
    corlist outgoing dialCORnoFax
    description *** SIP-TRUNK (OUT) ***
    translation-profile incoming TP_IN_SIP
    translation-profile outgoing TP_OUT_SIP
    max-conn 2
    destination-pattern 9.T
    session protocol sipv2
    session target ipv4:2xx.xxx.xxx.xxx
    session transport udp
    ! customer external nr. range (one dot at the and -> 0-9)
    incoming called-number xxxxxxxx.
    dtmf-relay rtp-nte
    codec g711alaw
    no vad
    gateway
    timer receive-rtp 1200
    sip-ua
    keepalive target ipv4:2xx.xxx.xxx.xxx
    authentication username xxEXTERNAL NR.xxxxx password 7 111111111111111111111
    calling-info pstn-to-sip from number set xxEXTERNAL NR.xxxxx
    retry invite 2
    retry response 2
    retry bye 2
    retry register 2
    retry options 1
    registrar ipv4:2xx.xxx.xxx.xxx expires 60
    host-registrar
    Greets,
    Norbert
    Hope this help......Please rate if helpful

Maybe you are looking for

  • Ticker on a JPopup?

    Kind of a weird question (stemmed from a weird request). In windows print dialog where you choose the number of copies, is ther anyway to have that control on a context menu popup? I have a popup on a textfield and when the user right clicks, i show

  • Need help uninstalling photoshop and reinstalling

    need help uninstalling and reinstalling photoshop

  • Startup Steps performed by weblogic 6.1 SP5

    Hi, I am beginner and very new to weblogic. I am working on an application developed on weblogic 6.1 SP5. There is an issue where weblogic shut down. The server is a two node Cluster server. Weblogic shut down on one node and failed to startup on the

  • Trigger portal event from 3:d party application

    Hi, I have a Web Dynpro project with an iView containing a 3:d party application. This application posts data (a few MBytes) to an URL (the URL is configurable), and I want a Portal Event to be triggered whenever this data is posted. Is it possible?

  • [SOLVED] .Xresources refuses to load except when loaded manually

    I'm running i3+SLiM with my URxvt config in .Xresources and xrdb -merge ~./Xresources in my .xinitrc but every time I start i3, the config is not loaded and URxvt appears in its default form.  When I open the terminal and type the same xrdb command a