Need to create contiguous subnet using 2 rv120w gateways

Hi,
I have been tasked to create a Voip system using Cisco UC320 to serve one main and one auxiliary office. I think there is no way to use the UC320 as a VOIP gateway on multiple subnets so  I need to create contiguous IP space between the two branches. I was able to create site-to -site VPN using the RV120W firewalls but I have two subnets 192.168.1.1 and 192.168.2.1  and the IP phones in the auxiliary office do not register. Any ideas how this can be achieved?
Thanks!!

Dear Svetoslav,
Thank you for reaching the Small Business Support Community.
It's been several days since you posted your inquiry with no answer from the community members yet, I therefore suggest you to inquire about this in the Small Business Voice and Conferencing support group;
https://supportforums.cisco.com/community/netpro/small-business/voiceandconferencing
Just in case notice you may request from others support channel available;
https://supportforums.cisco.com/community/netpro/small-business/sbcountrysupport
Please do not hesitate to reach me back if there is any further assistance I may help you with.
Kind regards,
Jeffrey Rodriguez S. .:|:.:|:.
Cisco Customer Support Engineer
*Please rate the Post so other will know when an answer has been found.

Similar Messages

  • I need to create a image using some numeric values and i want to display values in image,

    I need to create a image using some numeric values and i want to display values in image, Numeric values be enterd by text file, excel file or user input by dialog box,
    this is the sample if image.
    http://s17.postimg.org/5xvtzbztn/5_01_03_I.png
    128 x 16 Pixels , Back ground Black, Numbers in Red, Should be same as above picture.
    Because i have hundreds of images to create like this.
    If any one can make a script for this it is very good.
    Sorry about my English.
    Thank you.

    Have you checked out data driven graphics?
    https://helpx.adobe.com/photoshop/using/creating-data-driven-graphics.html

  • Need to create a list using Price Adjustments and org contact detail

    I need to create a list containing data from the OE_PRICE_ADJUSTMENTS table, data about the product(s) ordered and customer data related to the order(s). What tables and what common fields can I use to join this data?

    ok I was able to get the price adjustments information in my output, but my organization contact information (names, email addresses, etc) are not populating. The fields are there, but they are blank. Why aren't these fields populating with the order information?
    I'm using OE_PRICE_ADJUSTMENTS_V as my parent data source, and I have 2 child data sources related: Order Detail (from AMS_DS_ORDERS_V) and information from QP_LIST_HEADERS_ALL.
    Message was edited by:
    user458832
    Message was edited by:
    user458832

  • Help/Example needed for creating JMSQueues/JMSTopics using the MBean API

    I am trying to create JMSQueues programmatically using the MBean API. When
    I use MBeanHome.createAdminMBean(), a queue appears in the root of the
    config file. This is progress, but the queue is in the wrong place! I need
    the queues to be part of my JMS server's "destinations" as seen on the
    console.
    So now I am trying to use createConfigurationMBean() instead, but I can't
    figure out what the "parent" parameter should be- no documentation! My
    first guess was that the parent might be the JMSServer, but that doesn't
    work.
    Anyone have example code to insert JMSQueues and JMSTopics into a specific
    JMS server's destinations?
    Here is the code I tried... All goes well until the final
    createConfigurationMBean call, where it throws a MBeanCreationException:
    // Get the MBeanHome bean
    Object obj = jndiContext.lookup("weblogic.management.adminhome");
    MBeanHome mbeanhome = (MBeanHome) javax.rmi.PortableRemoteObject.narrow
    (obj, MBeanHome.class);
    // Get the server MBean
    JMSServerMBean jmsServerMB =
    (JMSServerMBean)mbeanhome.getMBean("examplesJMSServer",
    JMSServerMBean.class);
    // Create the new Queue
    JMSQueueMBean jmsQMB = (JMSQueueMBean)mbeanhome.createConfigurationMBean
    ("weblogic.examples.jms.fooQueue", "JMSQueue", jmsServerMB);

    Ok, I still don't see how I can do it differently with the admin tool. If
    you want to see the commands I'm using, I can post them, but the basic one
    is shown below in the previous message. We're trying to set up a script so
    that developers can just run it and properly configure WebLogic with the
    right components.
    Thanks,
    Michelle
    "Michelle Baxter" <[email protected]> wrote in message
    news:[email protected]...
    I am using the weblogic.Admin tool, not doing this in code. I will attempt
    to translate your advice when I get time again.
    My commands look like this:
    java weblogic.Admin -url 127.0.0.1:7001 -username system -passwordweblogic
    CREATE -mbean "mydomain:Type=JMSQueue,Name=MyJMSQueue"
    I create this, I create the JMSServer MBean, then do and INVOKE (insteadof
    CREATE) and call the addDestination method, adding the JMS Queue MBeanthat
    I created previously, using the same naming scheme as in the above CREATE.
    "Viresh Garg" <[email protected]> wrote in message
    news:[email protected]...
    Daron Cole wrote:
    You can use createConfigurationMBean with JMSQueueConfig but in the
    end
    I used
    the code below to create a topic.The code that you posted is the right way to create queus/topics. alwayscreate admin mbeans to admin
    server and let admin server internally create config Mbeans on the
    managed
    server as per the
    location/targets that you set in admin Mbeans.
    Queue's are the same, just replace the word
    Topic with Queue and it should work. It should show up in the console
    app.
    MBeanHome home = (MBeanHome)ctx.lookup(MBeanHome.JNDI_NAME+".myserver");
    ServerMBean myserver =(ServerMBean)home.getMBean("myserver",ServerMBean.class);
    String topicName = "MyNewTopic";
    JMSServerMBean jmsServerMB =(JMSServerMBean)home.getMBean("JMSServer","JMSServer","mydomain");
    JMSTopicMBean jmsTopicMB =(JMSTopicMBean)home.createAdminMBean(topicName,"JMSTopic","mydomain");
    jmsTopicMB.setJNDIName(topicName);
    jmsServerMB.addDestination(jmsTopicMB);
    Viresh Garg
    Principal Developer Relations Engineer
    BEA Systems
    "Michelle Baxter" <[email protected]> wrote:
    There is no JMSQueueConfigMBean. What do you mean?
    "Daron Cole" <[email protected]> wrote in message
    news:[email protected]...
    Try JMSQueueConfig instead of JMSQueue.
    "Michelle Baxter" <[email protected]> wrote:
    Me too! I'm trying to use the weblogic.Admin class to set up
    queues
    and
    topics and the JMS server. The same results in the config file:
    the
    queues
    and topic were set up at the root, the JMS server was added, but
    no
    destinations, even though I invoked the addDestination method withthe
    created MBean queues and topic as arguments. No exceptions, just
    no
    destinations on the JMS server resulted. What's the right order ofexecution
    for this stuff??
    Thanks,
    Michelle
    "Jude DeMeis" <[email protected]> wrote in message
    news:[email protected]...
    I am trying to create JMSQueues programmatically using the MBean
    API.
    When
    I use MBeanHome.createAdminMBean(), a queue appears in the root
    of
    the
    config file. This is progress, but the queue is in the wrong
    place!
    I
    need
    the queues to be part of my JMS server's "destinations" as seen
    on
    the
    console.
    So now I am trying to use createConfigurationMBean() instead,
    but
    I
    can't
    figure out what the "parent" parameter should be- no
    documentation!
    My
    first guess was that the parent might be the JMSServer, but that
    doesn't
    work.
    Anyone have example code to insert JMSQueues and JMSTopics intoa
    specific
    JMS server's destinations?
    Here is the code I tried... All goes well until the final
    createConfigurationMBean call, where it throws aMBeanCreationException:
    // Get the MBeanHome bean
    Object obj =
    jndiContext.lookup("weblogic.management.adminhome");
    MBeanHome mbeanhome = (MBeanHome)javax.rmi.PortableRemoteObject.narrow
    (obj, MBeanHome.class);
    // Get the server MBean
    JMSServerMBean jmsServerMB =
    (JMSServerMBean)mbeanhome.getMBean("examplesJMSServer",
    JMSServerMBean.class);
    // Create the new Queue
    JMSQueueMBean jmsQMB =(JMSQueueMBean)mbeanhome.createConfigurationMBean
    ("weblogic.examples.jms.fooQueue", "JMSQueue", jmsServerMB);

  • Need to create Meeting Request using Powershell with Outlook 2010 / 2013

    We will be creating around 100 meeting request based on data from excel, so planning to migrate it to SQL & using powershell we need to speed-up the progress.
    Script tried :
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/e88ca51c-62dd-493b-a0d1-ffe6a8696fdf/create-view-in-outlook-2013-using-powershell?forum=ITCG
    http://en.community.dell.com/techcenter/powergui/f/4833/t/19576698.aspx
    http://www.amandhally.net/2013/08/30/powershell-and-outlook-create-and-send-a-new-email-using-powershell-outlooktools-module/
    Do we have any working scripts, i tried few scripts it fails throwing error as below:
    New-Object : Exception calling ".ctor" with "0" argument(s): "Retrieving the COM class factory for component with CLSID 
    {0006F03A-0000-0000-C000-000000000046} failed due to the following error: 80080005 Server execution failed (Exception from HRESULT: 
    0x80080005 (CO_E_SERVER_EXEC_FAILURE))."
    At line:2 char:6
    + $o = New-Object Microsoft.Office.Interop.Outlook.ApplicationClass
    +      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [New-Object], MethodInvocationException
        + FullyQualifiedErrorId : ConstructorInvokedThrowException,Microsoft.PowerShell.Commands.NewObjectCommand
    You cannot call a method on a null-valued expression.
    At line:4 char:1
    + $a = $o.CreateItem($olAppointmentItem)
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
        + FullyQualifiedErrorId : InvokeMethodOnNull
    Ganapathy

    Hi Ganapathys,
    For the error "failed due to the following error: 80080005", please Make sure that Outlook and Powershell are either both running as a standard user (not elevated) or that they are both running elevated as Administrator. They need to be running at the same
    integrity level to avoid that error.
    Please try to run powershell as standard user without "run as admin".
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community Support

  • I need to create a report using only one record

    I have all this records in my database but i would like to create a layout where it will automatically fill it up with the information of a record i would chose.
    example:
    i got a list of over 200 hundred products and i would like to see in a personalized layout the complete report and characteristics of only the record selected.

    Shaka,
    assuming each record has a unique identifier (like an item number) you can use the function vlookup() to "pull" data out of the database table.
    Beyond that it would be most efficient if you provided the firlds of your database and the layout of the report.

  • Which privileges are needed to create workspace for using existing schema

    Hi,
    until now I always created new workspaces creating new schemas.
    today I decided to use existing schemas. i created an user (default tablespace "users", with a lot of privileges (create any context, create table, etc..)
    i tried to create a workspace.
    now i got an error: no sufficient privileges for tablespace "users".
    how to solve ?
    Leo

    Leo, you might try altering your site preferences using the apex_admin app so that it doesn't try to install the sample/demo applications during workspace creation. Then repeat the provisioning attempt. If it works, then you'll know the error had something to do with sample/demo app creation in the schema. If it still gives you an error we'll know that too.
    Scott

  • Need help creating a form using show/hide functionality

    I'm tring to add javascript to a drop down box so that, when a selection has been made in the drop down box, it will display a image/button. I need the drop down box to have a default value that will hide all images/buttons.
    The list in the drop down box is going to be a list of products e.g. product A, B, C, and the default value to be "please select a product..."
    Can this be done in Acrobat Pro X? If so can someone point me in the right direction?
    Cheers

    Your site is running on an Apache server, so it definitely doesn't support ASP. Apache frequently supports PHP, but I couldn't tell from the headers sent by your server whether it's supported on your site.
    I suggest that you contact BT Business support to see if they offer a formmail script. Most hosting companies do. The support pages should describe how to set it up.

  • SSRS adhoc (2005/2008) - Need to create Report Model (.smdl file) for adhoc using Stored procedure

    Hi All,
    I need to create Report Models using stored procedures. But whenever I am going to create data sources for same, I am just getting tables and views to use. Please see the screenshot below:
    Is there any way out to create data source based on stored procedure? Please help.
    Thanks in Advance
    Regards
    Kumud

    Hi Kumud,
    As per my understanding, it is not support to create a Datasource View (DSV) using stored procedures.
    In a DataSource View, only views, tables or named queries can be used. We can use stored procedures in a query. No parameterized queries, parameterized stored procedures or parameterized UDFs can be used in a DSV named query. You can try to using below approach
    to achieve what you are require:
    To build views in our relational source and add the views to the datasource view to proceed with modelling.
    There is a similar issue, you can refer to it.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/22207c21-03c7-4e5a-bb67-0372f29220a3/sql-server-reporting-services-2008-creating-report-models-using-stored-procedures
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Office 2013 - Creating desktop shortcuts using OCT

    I need to create desktop shortcuts using the Office Customization Tool. But how does one do this when they have both 32 and 64 bit machines in the environment? The "Start In" path below is obviously going to be different when dealing with
    32 and 64 bit OS machines (c:\program files vs c:\program files(x86))
    I'm following these directions but they look to be specific to a 64 bit machine: http://mystang69.blogspot.com/2013/08/office-customisation-tool-2013-adding.html

    https://technet.microsoft.com/en-us/library/cc179097.aspx?f=255&MSPPError=-2147217396#Configure_shortcuts
    Start in
    Enter a path to specify the default starting folder for the application. If you leave this box blank, the default folder is set to the folder where the destination file resides. If the path is not valid on a user's
    computer, the user sees an error message when the user tries to use the shortcut.
    Do you need to set a start in location?

  • Creating a PO using OREDERS05 IDOC

    Hi All,
    I need to create a PO using the OREDRS05 Idoc, insted of that a standard SO is getting created as I am using ORDE process code. I dnt find any process code for creating a PO related to ORDERS05.
    Is there any process code for creating a PO or we need to it any other way.
    Please let me know how to reslove this. Its an urgent requirment needs to be resolved ASAP.
    Thanks,
    Srikanth

    Hi,
    Here is the sample code to do that...
    *---> po header data
      wa_poheader-vendor    =  your vendor..
      wa_poheader-doc_type  =  Your doc type..check with Functional contact....
      wa_poheader-purch_org =  Purchasing Org..
      wa_poheader-pur_group =  Purchasing Group
    *---> po header data (change toolbar)
      wa_poheaderx-vendor    =  'X'.
      wa_poheaderx-doc_type  =  'X'.
      wa_poheaderx-purch_org =  'X'.
      wa_poheaderx-pur_group =  'X'.
    *---> poitem data
    data: item like ekpo-ebelp.
    item = '0010'.
    loop at t_parts.
      it_poitem-po_item  =  '00010'.
      IT_POITEM-PLANT    =  Plant..
      IT_POITEM-STGE_LOC =  Sloc...
    *---> poitemx (item data change toolbar)
      it_poitemx-po_item  =  '0010'.
      it_poitemx-po_itemx  =  'X'.
      IT_POITEMX-PLANT    =  'X'.
      IT_POITEMX-STGE_LOC =  'X'.
    *---> add record's to internal table
      APPEND:  it_poitem,
             it_poitemx.
    endloop.
    *call bapi_po_create1
      CLEAR v_ebeln.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader         = wa_poheader
          poheaderx        = wa_poheaderx
        IMPORTING
          exppurchaseorder = v_ebeln
        TABLES
          return           = it_return
          poitem           = it_poitem
          poitemx          = it_poitemx.
    *---> check the return table for error message
      READ TABLE it_return WITH KEY type = 'E'.
      IF sy-subrc NE 0.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
      endif.
    Thanks,
    Murali

  • Probelm with Creating purchase order using BAPI_PO_CREATE1

    Hi Experts,
    I am trying to create a PO using the "BAPI_PO_CREATE1".
    The BAPI is returning a PO number but when I am checking for the same in ME23 its saying that the number doesnot exsists.
    In BAPI retrun I am gettig an info message as "Stock transport ord. Created number 4500016833". What does this indicate and what do I need do for the PO to get created?
    Thanks & Regards,
    Suma

    If so how can we make use of the PO create BAPI from an Integration like XI?
    I need to create a PO using BAPI from XI, and the returned PO number has to taken reference and create a Goods receipt using BAPI_GOODSMVT_CREATE. I am testing the data before using the same for XI.
    So what do i need to do for creating a PO from XI?
    Thanks,
    Suma

  • Create FI documents using both amount in local currency and document

    Hi All,
    I need to create FI documents using both amount in local currency and amount in document using BAPI_ACC_DOCUMENT_POST. Please tell me how to do that.
    Chinmay

    Hi,
    Firstly get the exchange rate, do the calculation using the document currency amount and populate the local currency amount field.
    Whenever you use BAPI, use BAPI_TRANSACTION_COMMIT to commit the changes.
    Thanks & regards.

  • Create a view using a select statement

    Hi
    I need to create a view using a select statement to view details from 2 different tables which will only show data where the holidays commence after june.
    I am new to oracle so any help will do.
    Thanks

    Hi
    I need to create a view using a select statement to view details from 2 different tables which will only show data where the holidays commence after june.
    I am new to oracle so any help will do.
    Thanks

  • Need of a sample ALV using OO

    Hi all,
    I need to create an ALV using OO approach in which the user should change,insert,delete and save the values which should be reflected in the internal table also.
    Can u guys supply me with a sample program so i can refer it.

    Hello Sharan,
    Please refer to program BCALV_GRID_EDIT for your requirement.
    Hope this helps and please don't forget to reward points.
    Cheers,
    Sougata.
    p.s. if your Dev client has no flight model data already, first run program SAPBC_DATA_GENERATOR to create flight model data in your client.
    Edited by: Sougata Chatterjee on Jun 4, 2008 4:13 PM

Maybe you are looking for

  • Question on the topic from Project Systems

    Hi Friends, Iam creating Activities in my program for a given network using the bapi Function module " BAPI_BUS2002_ACT_CREATE_MULTI " but the bapi is throwing the following error for me in the creation of an activity "Enter a time unit, since you ha

  • Assigning stored procedure output value to java variable

    I have one stored procedure which is having ref cursor as the output parameter. How to assign refcursor value to my java variable?

  • Tarot (Thai Version) (free app download but charging in app from True Move)

    I've downloaded free app Tarot (Thai Version) from App Store. This app is Free but when I opened the app, it has charged 10 baht per time to play this app. I will pay via True Move payment gateway. So I don't understand, it should be in Free app cate

  • Removing  #OPEN_FORM# (urgent  plz)

    Hi all i want to create a form with method=post and action=mypage i created the items using the htmldb wizard and removed the #OPEN_FORM# ,#CLOSE_FORM# from my template and i added my own form tags . but when i am running the page i get this error ER

  • CS2 Crashes After Launching

    Hi there, My Photoshop CS2 has been crashing soon after I open it. Usually it's not more then a minute after. I don't know where to begin looking to find where the problem is, but the copied crash report is below. Any help would be appreciated! Proce