I am trying to configure two WRV200 from 2 different loca...

I am trying to configure two WRV200 from 2 different location and ADSL
accounts. One location has PPPoE and the other has PPPoA. Both of it are
having a Speedtouch 356 6V modem. The router which using PPPoE and having a DDNS from TZO.com has no problem with the Quick VPN but the router which using a PPPoA connection could not able to connect even the quick VPN.
There is an option to ridirect the Public IP of Speedtouch to other network device and I manage to configure it and now my router who is having a PPPoA connection has a Public IP. But still the same problem VPN still not working.
Is there any chance that I could make this router work with the PPPoA connection. I will really appreciate if somebody could help me with this problem.

Sorry for making you confuse. Here is the VPN log details of the 2 routers.
Router 1:
000 "TunnelA": srcip=unset; dstip=unset; srcup=ipsec _updown; dstup=ipsec _updown;
000 "TunnelA": ike_life: 28800s; ipsec_life: 3600s; rekey_margin: 5s; rekey_fuzz: 100%; keyingtries: 5
000 "TunnelA": policy: PSK+ENCRYPT+TUNNEL+PFS+UP+AGGRESSIVE; prio: 24,24; interface: eth0; 000 "TunnelA": dpd: action:hold; delay:30; timeout:120;
000 "TunnelA": newest ISAKMP SA: #0; newest IPsec SA: #0;
000 "TunnelA": IKE algorithms wanted: 5_000-1-2, flags=strict
000 "TunnelA": IKE algorithms found: 5_192-1_096-2,
000 "TunnelA": ESP algorithms wanted: 3_000-1, flags=strict
000 "TunnelA": ESP algorithms loaded: 3_000-1, flags=strict
000 #12: "TunnelA":500 STATE_AGGR_I1 (sent AI1, expecting AR1); EVENT_RETRANSMIT in 9s; nodpd
000 #12: pending Phase 2 for "TunnelA" replacing #0
Router 2:
000 "TunnelA": srcip=unset; dstip=unset; srcup=ipsec _updown; dstup=ipsec _updown;
000 "TunnelA": ike_life: 28800s; ipsec_life: 3600s; rekey_margin: 540s; rekey_fuzz: 100%; keyingtries: 3
000 "TunnelA": policy: PSK+ENCRYPT+TUNNEL+UP+AGGRESSIVE; prio: 24,24; interface: ppp0;
000 "TunnelA": dpd: action:restart; delay:30; timeout:120;
000 "TunnelA": newest ISAKMP SA: #0; newest IPsec SA: #0;
000 "TunnelA": IKE algorithms wanted: 5_000-1-2, flags=strict
000 "TunnelA": IKE algorithms found: 5_192-1_096-2,
000 "TunnelA": ESP algorithms wanted: 3_000-1, flags=strict
000 "TunnelA": ESP algorithms loaded: 3_000-1, flags=strict
000 #3: "TunnelA":500 STATE_AGGR_I1 (sent AI1, expecting AR1); EVENT_RETRANSMIT in 8s; nodpd
000 #3: pending Phase 2 for "TunnelA" replacing #0
Hope this could help you.

Similar Messages

  • How do you join two tables from different Oracle schemas using a subquery

    I am trying to join two tables from different Oracle schemas using a subquery. I can extract data from each of the tables without a problem. However, when I combine the select statements using a subquery I get the Oracle error *'ORA-00936: missing expression'*. Since each SELECT statement executes on its own without error I don't understand what is missing. The result set I am trying to get is to match up the LINE_ID from PDTABLE_12_1 in schema DD_12809 with the MAT_DESCRIPTION from table PDTABLE_201 in schema RA_12809.
    The query is as follows:
    sql = "SELECT [DD_12809].[PDTABLE_12_1].LINE_ID FROM [DD_12809].[PDTABLE_12_1] JOIN " _
    + "(SELECT [RA_12809].[PDTABLE_201].MAT_DESCRIPTION " _
    + "FROM [RA_12809].[PDTABLE_201]) AS FAB " _
    + "ON [DD_12809].[PDTABLE_12_1].PIPING_MATER_CLASS = FAB.PIPING_MATER_CLASS"
    The format of the query is copied from a SQL programming manual.
    I also tried executing the query using a straight JOIN on the two tables but got the same results. Any insight would be helpful. Thanks!
    Edited by: user11338343 on Oct 19, 2009 6:55 AM

    I believe you are receiving the error because you are trying to JOIN on a column that doesn't exist. For example you are trying to join on FAB.PIPING_MATER_CLASS but that column does not exist in the subquery.
    If you want to do a straight join without a subquery you could do the following
    SELECT  DD_12809.PDTABLE_12_1.LINE_ID
    ,       FAB.MAT_DESCRIPTION
    FROM    DD_12809.PDTABLE_12_1
    JOIN    RA_12809.PDTABLE_201    AS FAB ON DD_12809.PDTABLE_12_1.PIPING_MATER_CLASS = FAB.PIPING_MATER_CLASS  HTH!

  • Hi can someone tell me if it is possible to have two accounts (from different countries) in the same laptop?

    Hi can someone tell me if it is possible to have two accounts (from different countries) in the same laptop?

    Hi...
    The issue is that your credit or debit card credentials must be associated with the same country where you reside to make purchases.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article
    Billing policy is the same for both the iTunes as well as Mac App Stores.

  • SUM two fileds from different rows from the same table

    I would like to SUM two fileds from different rows from the same table but I don't know how to do that.
    E.g.
    BillingTransactionsIndex      CreateDate      UserType      UserIndex      TransType      Reference      Total      Balance
    2      6/5/2008 15:02      1      51      1      150      -288.2      -288.2
    5      6/8/2008 11:55      1      51      1      157      -1.58674      -289.787
    In the table above I want SUM fields Total and Balance for the first row and the the next row SUM 2nd row Total with 1st row Balance
    Please help
    Thanks

    SQL> with tbl as
      2  (select 1 as ID,  90 as total from dual
      3          union all
      4  select 2 as ID,  23 as total  from dual
      5          union all
      6  select 3 as ID,  15 as total  from dual
      7          union all
      8  select 4 as ID,  20 as total  from dual)
      9  select id , total, sum(total) over (order by ID) as balance from tbl
    10  /
            ID      TOTAL    BALANCE
             1         90         90
             2         23        113
             3         15        128
             4         20        148
    SQL>

  • Trying to Configure AIR-CAP3602i from WLC Not working

    Hi,
    I posted a question similiar to this a few months back and got a repy that worked. So i tried the same thing this time but the AP is different this time.
    I'm trying to change the RF Channel and Tx power level on my AIR-CAP36021-E-K9 from my WLC WISM2. I do the following;
    Wireless --> 802.11 b/g/n --> Access Point --> Configure. I then select custom on both Power and Channel and make my change and then
    click Save Configuration in the top righthand corner. I go back to 802.11 b/g/n select my AP and the power and channel setting have reverted back to their default selection.
    Any ideas?
    Thanks
    Anthony

    No i didn't.  Screen shots below looking to have AP on Channel 6 with power 3.
    After i saved config and went back into 802.11b/g/n radio values have returned to what they were originally, 1 & 3

  • Time Machine is base station and trying to configure two airport express

    I have a time capsule as my base station and am trying to re-connect my (2) airport express devices as additional wireless sources. The (3) used to work in harmony, now the two airport express just flash amber and I can't reconnect. Can anyone help - i have read support documentation, but just can't seem to get the 2 to sync with the time capsule base station. Many thanks

    Guys,
    I agree with Don. This was my experience, and a brief description of my network... hope it helps.
    The network has the following: ADSL Router... attached via ethernet to Airport with antenna. At this location is also an AE. Another Aiport with Antenna, that then has a Cisco Linksys WRT 54G. For reference, I use a PC and Laptop at the AE end and various Mac's at the other.
    So to the point... I added the Linksys just before the AE. It took three days. There is an awful lot about the Linksys on the net, and for me..... which is not a suggestion, I added extra firmware. Either way, using Safari, I manually set up the router. There are about five pages that I found important..... I may be missing some, basically the DHCP on mine needed to be switched off. Once it recognised the rest of the network, via manual IP address and using a unique name, for a while I had both networks working side by side, .... because of where it was I didn't need to setup any of the ADSL modem side (its effectively a WDS relat base station in Airport terms) but that page is straight forward. Good idea to have it password protected and to change the IP, apparently. Anyway, the AE took longer to get working, and I believe that this was the result of a closely added firmware update as well.... ie, it took me about 4 times to get it to accept the update completely, and that had to be done with it attached via ethernet. The basic setup of this was straight forward after that just using the software.
    Hope this helps.
    G5,iBook SE, iMac Bondi, iBook G4,    

  • Question about suming two columns from different tables in Subquery?

    Hello everyone,
    I have a subquery that works great for getting the total SUM of a Billing table, but I also need to add to that SUM the total surcharges or additional charges from a separate table.  I tried this by doing something like so:
    (SELECT SUM(SUM(Amount) FROM Billing WHERE Billing.JobID = Jobs.ID AND Billing.BillingType = 'Invoice' AND Billing.InvoiceCanceled = 'No', SUM(Payment) FROM Payments WHERE Payments.JobID = Jobs.ID AND Payments.Type = 'Bill')) as [Amount],
    But it doesn't work as there is an incorrect syntax near 'FROM'.  I'm assuming this is because of the two FROM's in the Subquery?  But I am not sure how else I would be able to do this then?  
    Any help would be greatly appreciated.  I just noticed this bug and am hoping to get a fix out as quickly as possible.
    Thanks Again,

    Hi, sorry for taking so long to get back to this post. 
    I tried this example like so:
    (SELECT SUM(A1) AS Total1, SUM(A2) AS Total2
    FROM
    (SELECT
    (SELECT SUM(Amount) FROM Billing WHERE Billing.JobID = Jobs.ID AND Billing.BillingType = 'Invoice' AND Billing.InvoiceCanceled = 'No') AS A1,
    (SELECT SUM(Payment) FROM Payments WHERE Payments.JobID = Jobs.ID AND Payments.Type = 'Bill') AS A2),
    However, get an error that an Incorrect Syntax exists near the ','.  I remove the comma (Which I think should be there), and I get an error that an Incorrect Syntax exists near the '.'...
    I also tried doing it like this (Based on other suggestions I've found online:
    (SELECT SUM(SELECT SUM(Amount) FROM Billing WHERE Billing.JobID = Jobs.ID AND Billing.BillingType = 'Invoice' AND Billing.InvoiceCanceled = 'No') as [Amount],
    (SELECT SUM(Payment) FROM Payments WHERE Payments.JobID = Jobs.ID AND Payments.Type = 'Bill') as [Additional]),
    And I get an error that an Incorrect Syntax exists near 'SELECT'...
    I also tried doing something like this with the SQL I already had...
    (SELECT SUM(Amount) FROM Billing WHERE Billing.JobID = Jobs.ID AND Billing.BillingType = 'Invoice' AND Billing.InvoiceCanceled = 'No') as [BilledAmount],
    (SELECT SUM(Payment) FROM Payments WHERE Payments.JobID = Jobs.ID AND Payments.Type = 'Bill') as [Additional],
    SUM(BilledAmount + Additional) AS [TotalBilled],
    But I get an error that the alias' are Invalid Column Names...  I have used Alias' before so I'm not sure why this would be an issue here...
    As you can see, I've been trying to figure this issue out, but haven't had much luck...  :(

  • Can I do an Insert using two selects from different tables?

    Hi,
    I have three tables, Course (CID, NAME, TIME)
    Teacher (TID, NAME, DESCRIPTION) and OfferedBy(CID, TID) to match a course to a teacher.
    After I do an insert on Course, I want to be able to do an insert on OfferedBy using the CID of the course I inserted, and the TID of the teacher that's offering it.
    I tried this after doing inserts on Course and Teacher:
    INSERT INTO OfferedBy values (SELECT CID FROM Course where courseName = 'name' , SELECT TID FROM Teacher WHERE LastName = 'teacherName').
    I get an ORA 00907 error.
    What am I doing wrong? Can this actually be done?
    Thank you
    I

    Hi,
    How would you relate the TID with CID?
    I tried this after doing inserts on Course and Teacher:
    INSERT INTO OfferedBy values (SELECT CID FROM Course where courseName >= 'name' , SELECT TID FROM Teacher WHERE LastName = 'teacherName').
    I get an ORA 00907 error.You can use the query in this way:
    SQL> SELECT ( ( SELECT dummy FROM DUAL), (SELECT DUMMY FROM DUAL)) FROM DUAL;
    SELECT ( ( SELECT dummy FROM DUAL), (SELECT DUMMY FROM DUAL)) FROM DUAL
    ERROR at line 1:
    ORA-00907: missing right parenthesis
    SQL> SELECT 'AA',(SELECT dummy FROM DUAL) FROM DUAL;
    'A (
    AA X
    SQL>Regards

  • Publish two publications from different customers with the same Adobe DPS ID

    Hello:
    I have a publication made on InDesign and I have uploaded it to the Adobe Server with my Adobe DPS account. For the first publication, I published the publication with the Folio Producer on the digitalpublishing portal, and then I created the app using the Adobe Viewer Builder. Then, I tried it locally on my iPad. It was working fine and I could see my publication.
    Now, I do need to upload a new publication for a different customer with the same Adobe DPS account and I need to create a different app with the new customer look and feel but I don't want to show the first publication in this new app, only the last one.
    In a nushell, I need to keep separated two publications (or more) when they are published if I'm using the same DPS Account... Is that possible?
    Saludos Cordiales,

    Hi Leo,
    Every title should have its own publication AdobeID (a title can contain multiple editions / folios).
    So you have to request for every title you want to work on a provisioned account with Adobe. Make sure that you have setup the corresponding emailaddress / emailalias. For example [email protected] and [email protected]
    After the accounts have been provisioned you can:
    * upload and organize multiple folios for that publication in the corresponding Folio Producer
    * Create a viewer with your Viewer Builder and on the first page supply the AdobeID for the give publication
    You can request new publication accounts any time and these are included with your DPS subscription.
    When you first account got provisioned, you should have received an excel document to request provisioning for the various publications. In this document you can list the accounts you want to use for publications, individual users of the system and viewer builder access.
    With kind regards,
    Klaasjan Tukker
    Adobe Systems Benelux

  • Trying to display multiple people from different titles

    Get-ADUser -Filter {Title -like "Director"}
    This is what I've come up with. I want to display more than just director but I don't know how
    to do that.
    I have tried to use spaces and other things but I am not sure what im doing wrong.

    -filter {Title -eq 'Director' -or Title -eq 'Other  guy' -or Title -eq 'Dudes who rock'}
    help get-aduser -par filter
    ¯\_(ツ)_/¯

  • How to compare two fields from different list sharepoint designer?

    hi All,
    I need to add a value to a field using SharePoint designer workflow. The value is from another column.
    for example list A has the field has loginID,  and another list B has loginID  amd another column called Desig.
    i need to compare both and get the Desig field and store it to a column. how do i do that in sharePoint Designer workflow.

    Hi, 
    you can create a workflow variable ex.Test. and add an action set Workflow variable. Then you have to set this variable value using lookUps. something like(in look up window)
    Data source: Choose List B
    Field from source: Choose Desig
    Then under find the list item
    Field: Choose login Id
    Value :(Again open lookup window by clicking "fx") and in this window choose 
        data Source: List A
      field from source :LoginId
    and click ok.
    attached is the image for your reference. (I am using other lists,you can change appropriately )

  • Comparing two records from different tables error.

    Hi folks!
    I have this PL/SQL Block.
    I want to compare the only one record from both tables to see if the content of them are equal or not, but I don't want to specified column by column to do that.
    Any idea?
    Thanks a lot in advanced,
    Abdel E. Miranda S.
    Panama
    declare
    cursor c_aems_prueba is
    select nombre, direccion, telefono, limite, seq
         from aems_prueba;
    cursor c_aems_testing is
    select nombre, direccion, telefono, limite, seq
         from aems_testing;
    vc_aems_prueba c_aems_prueba%rowtype;
    vc_aems_testing c_aems_testing%rowtype;
    vt_aems_prueba aems_prueba%rowtype;
    vt_aems_testing aems_testing%rowtype;
    begin
    insert into aems_prueba
    values('ABDEL MIRANDA', 'PAITILLA', '215-3411', 1000, 1);
    insert into aems_testing
    values('ABDEL MIRANDA', 'PAITILLA', '215-3411', 1000, 1);
    commit;
    open c_aems_prueba;
    fetch c_aems_prueba into vt_aems_prueba;
    open c_aems_prueba;
    fetch c_aems_prueba into vt_aems_testing;
    if vt_aems_prueba = vt_aems_prueba
    then
         dbms_output.put_line('son iguales las variables, si funciona la comparacion de dos estructuras');
         else
         dbms_output.put_line('no son iguales las variables, no funciona la comparacion de dos estructuras');
    end if;
    close c_aems_prueba;
    close c_aems_testing;
    end;

    Satyaki De,
    Java is involving because an Outsourcing new project. The outsourcing company is developing the new application using JSF which invoke an interface java method [depending of the operation: select, update, insert] and them invoke the PLSQL API to precess tha operation.
    In the case I already wrote here, the issue is this:
    The user search for a specific data using the interface. The java method send a request for these operation through the API. the PLSQL process the request and return a beam, with all the column the user look for.
    The user see the information in the application windows. Assuming the user wants to change some data, he modify just one field [lets say telephone number] and press the update button. The application process the request using a different method, which invoke a different function within the PLSQL API.
    Once the information is returning to the API, I must know if at least one field change its value. So I was thinking to get the beam with the data before it was changed and compare it with the beam with the changing data.
    If current_beam = new_beam
    then
    update
    else
    no change to process
    end if;
    Any idea.

  • When i connect my ipad2 to my tv using the hdmi cord for video mirroring, nothing happens! I've tried it on two new and different types of tv's, what gives?

    When I connect my Ipad2 to my tv using the HDMI cord for video mirroring, nothing happens! I've tried it with new and different types of tv's, what gives?

    Do you have the correct input set on the TV, like HDMI 1, HDMI 2, etc?

  • Connecting two WRV200's to share same wireless and wired network

    I am looking at purchasing a second WRV200.  I want to have both wired together on the same network along with having them include the wireless on both to the same network. i.e. having two wired locations and two wireless AP's to get on to the one network.
    Is there a way to configure two WRV200's to do this?
    Regards...

    Yes. You can use the access point inside the WRV200 bypassing all the router functions. You configure the second WRV with a free LAN IP address inside your main LAN (e.g. 192.168.1.2 if 192.168.1.1 is your main router). You disable the DHCP server on the second WRV. Then you wire a numbered LAN port of the second WRV to your existing LAN. Do not use the internet port of the second WRV. Now you only use the wireless access point and the switch inside the WRV.
    To create a single wireless roaming network you set up the wireless on both WRVs with identical wireless settings (SSID, wireless security, keys, etc.) The only difference should be in the allocation of channels. They should not use the same channel to avoid interference.
    Message Edited by gv on 10-21-2009 07:40 PM

  • Is there a way to sync two clips with different bit rates?

    I have two clips from different camcorders of the same frame rate but slightly different frame rates. When trying to sync the 2 clips, it's nearly impossible because the frames aren't lining up. Is there anything I can do?
    Where I'm trying to sync the two clips is kind of between frames.
    Thanks,
    Bob

    Hi
    I only know of miniDV tape Cameras and SD-Video quality - and I use an external program to do this.
    JES_Deinterlacer (free on internet) - Mainly I use it to go from PAL (25fps) to NTSC (29.97fps).
    It does this so much better that just dropping into TimeLine in FCE/P or switch when going from iMovie/FCE/P to iDVD. They both does a sort of conversion - but the result has to me been very choppy/jumpy and not enjoyable at all.
    There are even better conversions - But those are Pro applications and costs are astronomical - and the end result is not that much better at all.
    Yours Bengt W

Maybe you are looking for

  • Project runs slow when it's uploaded to SCORM

    Hi, The project runs fine when the reporting is unchecked and I test it online but it runs slow and crashes flash when it's being run in a SCORM system. I'm using: Mac OSX 10.9.2 Captivate 7.0.1.237 About the project: 70 Slides, 3 videos (streamed vi

  • No Music On Apple TV's AirPlay

    My music will not play with AirPlay from my Apple TV when using my iPhone but my videos will, to get the music to play I have to reset the Apple TV and then it will play for a day or two... All my software is up to date on all devices.

  • Server Requirements - Always On in a single server? - Needs clustering even one server on another Data Center?

    Hello: I have been asking this questions to different forums and got different responses, so I wanted to know if asking to "Microsoft" will give me some good directions. (All in SQL Server 2012, including the OS) Question 1.- Always On "HAS" to be co

  • Passing values to modal popup

    Apexers, I need help with this modal popup, it works correctly but not passing values from page page1 to my page3. How do i pass these paramater values to page3, function modalWin() { if (window.showModalDialog) { window.showModalDialog("f?p=&APP_ID.

  • Epas Soap Login CUPS v8

    Hi, I want to enable Outlook Calendering for all presence users on CUPS, because this is not possible in Jabber 9.0. I know the correct Command Line equivalent, but It would be better, if I can do that via Soap. I tried to use the EpasSoap API with g