RT31P2/WRT350N Cascading Problems

Problem: Using the WRT350N as the main router connected to the Motorola Cable modem, I have now added the RT31P2 for phone service. I am trying to establish only one subnet, so i have disabled NAT on the RT31 and connected the RJ45 to Numbered ports on both WRT and RT3 routers, this gives me DHCP from WRT350 on all the ports and routers - PC's work great and Internet access is working fine... Issue is the Phone Services is not working, looks like the RT31p2 is not getting a DHCP address from the WRT350n so the voice registration is not working properly.
Do i need to work with Static Routing? -- All of this networking is confusing and i have not figured out what is needed... just a side note.. i can plug the RT31P2 WAN Plug to a numbered plug on the WRT350 and i get phone access just fine... but the problem with this is that the routing of DHCP addresses to the numbered ports on the RT31 no longer work...
Sorry for the long post... thanks for any help you can provide...
Message Edited by Sleadrider on 04-09-2008 01:16 AM

the RT31p2 eeds the WAN conection to get the voice up and running. I believe you do not need to do static routing on this. BUt you will need to disable the NAT on the router " Advance routing" make sure to disable the DCHP as well on the rt31p2. with the NAT disabled on the router. then you should be able to recieve IP from the wrt350n and get the voice running also.

Similar Messages

  • RT31P2 + WRT54GL + Vonage problems

    Hey guys, I've been having a recurrent issue for a while now, and lately the problem has gotten a lot worse.  Before I describe the problem, I would like to explain the exact set-up that I have to better explain the situation. (I have had this set-up for a good 4-5 years now)
    - I have vonage phone service, and they provided me with the the RT31P2 router for use to connect my phone lines to. Since this is not a wireless router, I went out and bought a WRT54GL, so I can get wireless access for my laptop.
    - In order to set up the two routers, I connected the ethernet cable from my cable modem and plugged it directly into the WAN of the RT31P2. I took another ethernet cable, plugged it into one of the ethernet ports on the RT31P2, and plugged the other end into the ethernet port of the WRT54GL.
    Note: Before I did the above connections, I disabled the DHCP on the WRT54GL and changed the starting IP address to 192.168.15.2. Also set up a secure password enabled network.  For the RT31P2 router, all the settings remained the same, and it's IP is 192.168.15.1.
    - For the most part, this set up has been absolutely fine. My home phones would work with no static, no dropped calls, etc. I have one PC that is hooked up via ethernet on the RT31P2. Three laptops that connect wirelessly to the WRT54GL.
    Problem:  A couple of days ago, I noticed my internet speeds became drastically reduced on the PC's that are connected via WiFi. (Normally, I would get speedtest.net results with a range of download: 9-10Mbps and upload: ~ 0.54Mbps.) The speeds I was getting instead were close to 2Mbps (download), and even lower for upload. I isolated the problem and found out that only PC's connected via WiFi were experiencing this slowness. The one PC connected via ethernet was still getting its average normal speeds. (Currently, I hooked up two laptops to the RT31P2 via ethernet and disabled the WRT54GL router, and its running at normal speeds).
    I called up my ISP to come and take a look and see where the proble might be, and everything on their end seems to be fine. Since they only provided the cable modem, anything extra has to be taken care of the party that is responsible for it. So basically, everything via direct connection from Cable modem, or ethernet connection from RT31P2 is good, but my wireless connection from WRT54GL is no longer usable because of the slowness.  I have not changed the above-mentioned set-up at all, there were no hardware changes, nothing that can explain why all of a sudden devices connected to my wifi would be this slow. This issue seems to occur maybe 2-3 days every two weeks or so, but currently, it's been going on for about a week.  I think I also had a similiar problem like this sometime last year, and it took a long long time for the wifi to become stable again (close to a month). At that time, my ISP said the same thing to me - that there is no fault on their part because the signal strength was good on their end.
    So does anybody have any idea/know why this might be happening with my wireless router?
    *Also, another issue with vonage phone service - right when the wifi started acting up, I noticed that my home phone was getting a lot of static, making calls unbearable. I would get a dial tone, but it was absolutely impossible to carry out a conversation with that amount of static. So I called Vonage this morning, and we spent a good amount of time trying to isolate the problem.  What we came up with is the fact since I kept my cable modem and routers literally on top of each other, that it was causing some type of interference. When I moved all the devices away from each other, the static disappeared (only a little bit remained, but not a big deal). However, after I hung up the phone with vonage support, I realized that the static was not gone because I moved the routers away from each other, but the fact that the static only occurs if i have another ethernet cable plugged into the RT31P2 (which is the router where the phone lines connect to), where the other end of ethernet cable is connected to a PC. Any ideas on what might explain that? Do you guys think there is a correlation between the static on the vonage and the wifi problems, even though they are on different routers..?
    I know it's a long message, but I would really appreciate if somebody would take the time to go over this post and help me out. Thanks a lot to anybody with suggestions.

    Hi rsayeed   and welcome to the Cisco Home Community!
    The RT31P2 is now being handled by the Cisco Small Business Support Community.
    For discussions about this product, please go here.

  • Cascading problems

    Hi,
    We are testing some JPA code and are having problems with the cascading behaviour of our test code.
    Firstly, we have a main Person bean with the following attributes and is the owning side of the two relationships:
    @Id
    @Column(name = "id")
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer id;
    @Column(name = "firstname")
    private String firstname;
    @Column(name = "lastname")
    private String lastname;
    @ManyToOne(fetch = FetchType.EAGER, cascade = CascadeType.ALL, targetEntity = OccupationJpaImpl.class)
    @JoinColumn(name = "occupation_id")
    private Occupation occupation;
    @ManyToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, targetEntity = BeverageJpaImpl.class)
    @JoinTable(name = "person_beverage", joinColumns = { @JoinColumn(name = "person_id") }, inverseJoinColumns = { @JoinColumn(name = "beverage_id") })
    private Set<Beverage> beverages;Each of the non-owning sides are set up as follows:
    Beverage:
    @Id
    @Column(name = "id")
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer id;
    @Column(name = "description")
    private String description;
    @Column(name = "alcoholic")
    private Boolean alcoholic;
    @ManyToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "beverages", targetEntity = PersonJpaImpl.class)
    private Set<Person> people;
    Occupation:
    @Id
    @Column(name = "id")
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Integer id;
    @Column(name = "description")
    private String description;
    @OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, mappedBy = "occupation", targetEntity = PersonJpaImpl.class)
    private Set<Person> people;We have a few tests of which one works and the rest fail:
    1 - If we remove a Beverage from a collection of beverages belonging to a Person and merge the Person then the underlying join table has the appropriate mapping record removed which we want.
    2 - If we remove a Person from a collection of people belonging to a Beverage and merge the Beverage then the underlying join table does not have the appropriate mapping record removed.
    3 - If we delete an Occupation then the associated people, and any of their associated records, are not deleted but rather an attempt is made to insert a null into the occupation_id column of the underlying person table. This does not happen if there is no many-to-many relationship on Person to Beverage, then the people are deleted.
    Any explanation as to why 2 and 3 do not work as expected would be greatly appreciated.
    Regards,
    Chris.

    I am no JPA expert but I did have a similar problem recently. My problem was having the cascade setting in both the owning and non-owning entity classes. When I merged a non-owning entity it would cascade it's current data up into the owning entity which in my case would overwrite data I had just set and merged in the owning entity.
    I believe you need to remove the cascade setting in your non-owning entity classes and / or know exactly what is set in each property of your non-owning entities before you attempt to merge them so you will know what table modifications you can expect to see.
    In my particular case cascading in both directions was causing my problems.
    Hope this helps.

  • WRT350N Storage problem

    Using WRT350N with Firmware 1.03.2.
    I can't detect any USB storage device attached to the router.
    I have tried numerous USB Storage devices and numerous file systems (including  FAT32), but I can not get the router to recognize these drives.
    the Mass Storage devices that I use are in various sizes (128MB, 64MB, 160GB).
    I even formatted the disks to get them blank.
    to observe the problem:
    If I go to the "Storage" Tab and "Disk" sub-tab, all I can see is:
    Next to "Disk detail" i see the message "There are currently no available disks"
    next to "Erase Disk" i see the message "No disks are currently defined"
    what can be done to fix this?

    Well try upgrading the firmware of the router & keep on holding tightly
    the reset button in such a way that power light is blinking on the
    router & then do a complete network power cycle i.e., unplug the power
    cables from the modem & from the router & then plug in the power cable
    to the modem first once all the lights are solid green you could plug
    in the power cable to the router & then check using the administrative login it will definately work!!

  • WRT350N VPN problems

    I have a server running SBS 2003 and MS VPN set up and running.  I can test the connection using the support tools utilities provided by XP/2003 using the pptpclnt and pptpsvr utilities.  Both the TCP port 1723 packets and GRE (protocol 47) packets are sent and received successfully.  Then I point the client to my external IP address and the TCP packets get through but the GRE packets do not.  The only way I have to test it right now is with a computer that is on the same network as the server.  I don't know if that is my issue but right now I don't have much of an alternative.  I assume the traffic goes out of the network then back in through the firewall but I can't tell for certain.  I have port 1723 forwarded to my server and all of the VPN options are enabled.  Has anyone had any success using a setup like I described?  I don't see any other router settings to play with but maybe I  missed one?  Also, I have tried it with the SPI firewall diasabled and enabled, the server in the DMZ and out, unpnp disabled and enabled and all permutations of the three with no success.  Can anyone help?
    Thanks!

    I seem to be having the same problem.  I think it has something to do with IP PROTOCOL 47 (GRE) but can't find how to enable this in the wrt54gs.  I only have the same 3 setting to enable under the VPN tab in the router.  I can connect to the VPN when I am inside the network, but when i try from outside the network is can't connect.
    Any ideas
    thanks

  • WRT350N security problem

    i just bought WRT350N, after i installed it, i try to connect to the internet & it works fine but after i try to use the wireless security options it won't connect to the internet & setup menu either. so now everybody's using my internet connection for free. HOW TO FIX THIS?!?!

    What kind of security are you trying to use?
    ► WEP: 64 bit or 128 bit?
    ► WPA: TKIP or AES?

  • Yosemite and mail - BIG problems with memory leak

    Our small company has had significant problems since upgrading (?) to Yosemite, which by all we could glean from Apple would be a relatively bug free install. At random times, usually while composing an e-mail, the mail program will just spike in memory consumption, going from a couple hundred Mb of RAM consumption to over 70 Gb in just 3-5 minutes. This obviously causes the entire machine to come to a standstill and the mail process needs to be killed. A cascading problem is that when this happens any other programs will also become non-responsive, and they also will need to be killed, often at the loss of work. I've talked with the support people at Apple and disappointingly they seem to be unaware that this is an issue, or more likely they are aware of it (I mean, just do a search of "Yosemite mail memory" and see what you get) and want to downplay that the release has been a HUGE failure for MANY people. After about 20 of these application memory events since upgrading over this past weekend at our company I would like to see where Apple is on fixing this. BTW Apple, your user base is fairly sophisticated with computing, and having your online assistants continue to try and point the problem at the users - who are all having the EXACT SAME ISSUE - is alienating your user base. I've been using Apple for over 20 years and this is the worst release you've ever had. I think you're well on your way to becoming Microsoft in 1994, we need the old Apple company back.

    I have the same problem and after a few days I am thinking seriously about abandoning Apple mail and .... going back to Outlook, I do not like MS, but may not have another option. Any suggestions.
    I am amazed that Apple does not give any information about the problem. It does look like they are loosing their touch and appear to be following the Microsoft and Blackberry path.
    Within a small company like mine, another few days of this and it will be impossible to keep it.
    Hate to say it, but for the first timewith Apple I miss the old OS, it did not look as good but at least it worked..

  • Top Ten Things a Motion Graphics Artist should know...

    As many of you regulars know, I'm writing a book on Motion. As well as the projects, this book has Interlude Essays - that is a couple of pages of writing on related motion graphics topics. For instance, one is "Where do I get my ideas?" another is "How to speed up Motion", etc...
    I thought I'd include one on Things a Motion Graphics Artist should know. And I'm open to suggestions. Got any tips? What do YOU think a Motion Graphics Artist should know? Please contribute as many or as few as you like.
    I can't credit you in the book, but I will thank you en masse...
    While this thread is not strictly within the confines of the technical troubleshooting this forum exists to serve, I hope the Powers That Be don't pull it, because it could be an excellent resource for all who frequent this forum.
    Many thanks,
    Patrick

    Yes - that reminds me of a quasi-questionable practice I sometimes employed as an editor of music videos that I and other editors called "The Velcro Dog".
    It goes back to the fact that you never wanted to turn in a "perfect" edit on the first pass. In fact, I could count on one hand the number of times that I turned in an edit that the record label said "perfect, don't change a frame". Maybe it's human nature to justify their jobs, but inevitably, those in charge of approval would have to make some comment, request some change...
    If your cut was perfect, often these changes would be for the worse, so sometimes it paid to add an obvious flaw to the edit that wasn't hard to change - thus the Velcro Dog, something bad that could be easily torn off. It might be as simple as a line that was out of sync - or maybe a shot where the lead singer had his hair in his mouth, or a story shot that was out of place. This gave those in charge something to focus on that you could fix without causing the cascading problems that more complex changes might require.
    It was also something that you could change without problem if no one picked up on it.
    But WOE to you if someone in the chain of Artist, Video Commissioner, Management, A&R, Marketing, etc... decided they actually liked your little velcro dog... Then you had to live with seeing it on TV like that.
    Patrick

  • DVD vs. Screensaver--a battle

    I've got an iBook G4, Mac OS X 10.3.9, and my DVD player is version 4.0.
    For the last 18 months, since I got my laptop, I've watched movies on it. Tonight, for the first time, the screensaver began coming on as the movie was playing. I have had my screensaver Preference set at four minutes--have not changed it since setting it 18 months ago--and it was interrupting the movie after four minutes. I had to click the screen to get the movie back, but the saver would come on again four minutes later.
    The sound was unaffected, if that provides any clues as to what is and is not involved.
    I could go in and set the screen saver Preference to "Never," but I WANT the screen saver to come on after four minutes when I'm working at the computer and have to step away for awhile. Also, it's inconvenient to have to go in and reset the Preferences every single time I stop or start playing a DVD.
    So, 1.) I'm wondering what the problem is, 2.) Is this a symptom of cascading problems, and of course 3.) how can I fix this so it's functioning normally again, i.e., not coming on at all while the DVD is playing. Anyone have ideas? Thanks. Erin S.

    Not really sure if this will help, but it couldn't hurt. Try resetting the PRAM. Go here for instructions:
    http://docs.info.apple.com/article.html?artnum=2238
    If that doesn't work, try resetting the PMU. Go here:
    http://docs.info.apple.com/article.html?artnum=14449
    Good luck,
    Susan

  • Cascading E4200 to RT31P2

    As the subject says, I’m trying to cascade a new E4200 wireless router to an old RT31P2 VOIP Vonage/Linksys router that I use for my home phone.  I’ve had this set up before with my old WRT54G router, but after recently purchasing a Boxee media player, I ran out of open ports.  The old setup had each of these set up on their own subnet.  The WRT on 192.168.1.1 and the VOIP on 192.168.15.1.  The connection went:
    Cable modem -> RT31P2 ->WRT54G -> Computers/Printers
    Cable modem went into the “Internet” port of the RT31P2, and then an Ethernet port on the RT31P2 to the “Internet” port of the WRT54G.  Didn’t connect anything to the RT31P2 Ethernet ports at the time.  DNS was handled by the WRT54G.
    Now with the new E4200 and Boxee, I want both routers to be on the same subnet, since I need the extra ports.  So I have it hooked up this way:
    Cable modem -> E4200 -> RT31P2 ->Computers/Printers
    The Cable modem goes into the “Internet” port of the E4200, and then an Ethernet port on the E4200 to the “Internet” port of the RT31P2.  Connected this way the phone lines work.  However, even with DNS disabled on the RT31P2, and a static IP address assigned in the same range as the E4200 (192.168.1.1 for the E4200, and 192.168.1.2 for the RT31P2). I can’t see or ping a computer or printer connected to the RT31P2 from a computer on the E4200 router.  I’ve read other threads on the subject, and seem to think I need to forward some ports or something on the RT31P2 to get this to work.  I’ve read that instead of using the “Internet“ port on the RT31P2, I should use one of the Ethernet ports instead.  I’ve tried this, and while I can see the RT31P2 and computers/printers, this disables or doesn’t allow me to use the phone ports, which is the main purpose, so I need to use the “Internet” port connection.
    Anyone know what else I need to configure to make this work?  I suppose I could purchase a switch to connect to the E4200 to get a few more ports, but why spend another $20 if I can use the ports on the RT31P2?
    Any help would be greatly appreciated. 

    Well last nite I tried using port forwarding to get this to work.  Based on an old Linksys PAP2 thread on this, I opened ports 5060 - 5061 and 16384 - 16482 on the E4200.  But still nothing.  Is there some port I need to open on the RT31P2?  I would think it needs to know how to negotiate.
    Also, Is there a separate IP address for the WAN as opposed to the LAN? for the RT31P2?
    Still looking to get this to work.  Really don't want to reverse the routers and use the RT31P2 for DHCP.  It's old, and flaky, and having just spent $150 for the E4200, I want to use as many feature on it as possible, and not delegate it to second, which may cause more problems.

  • Problem with "Row-specific or Cascading Lists in Table Layout"

    Hello, friends!
    I have read article "Row-specific or Cascading Lists in Table Layout" written by Steven Davelaar. I have maked several table layouts with this technique and it worked fine.
    But now I have one problem, and this problem is very strange. One of VOs for which I use this table layouts throw exception after commit changes on first LOV attribute (Deptno). First time it was error
    (oracle.jbo.ReadOnlyAttrException) JBO-27008: for atribute mgrList
    at oracle.jbo.AttrValException.<init>(AttrValException.java:112)
         at oracle.jbo.ReadOnlyAttrException.<init>(ReadOnlyAttrException.java:40)
         at oracle.jbo.server.ViewRowImpl.setAttribute(ViewRowImpl.java:815)
         at oracle.jbo.jbotester.JboTesterUtil.setData(JboTesterUtil.java:173)
    Then I setted updateable property of MgrList attribute to always and now i have this error:
    oracle.jbo.domain.DataCreationException: JBO-25009: Cannot create an object of type:java.util.List with value:[{}]
         at oracle.jbo.domain.TypeFactory.get(TypeFactory.java:721)
         at oracle.jbo.domain.TypeFactory.getInstance(TypeFactory.java:85)
    I don't know why, but all worked fine yestarday. And same code works fine for another VOs. And article Test application works fine too.
    Help me, please.
    Thank you.

    <table id="OsnovaniyaPrikazEnd" model="${jhsTableBindings.OsnovaniyaPrikazEnd_1B}" detailDisclosure="${uix.eventResult.detailData}" partialRenderMode="multiple" partialTargets="messageBox _uixState " proxied="true" alternateText="${nls.NO_ROWS_FOUND}" width="50%" rendered="${bindings.newGroup_end2Iterator.findMode!='true'}">
    <tableFormat tableBanding="rowBanding"/>
    <contents>
    <formValue value="${uix.current.rowKeyStr}" name="rowKeyStr" id="${ui:concat('OsnovaniyaPrikazEnd:rowKeyStr:',uix.current.tableIndex)}"/>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'Id')}" text="Id" required="yes"/>
    </columnHeader>
    <contents>
    <messageTextInput id="${ui:concat('OsnovaniyaPrikazEnd:Id:',uix.current.tableIndex)}" model="${ui:cond(uix.current.isNewRow,null,uix.current.newGroup_end2Id)}" text="${uix.current.OsnovaniyaPrikazEndId}" name="Id" promptAndAccessKey="&Id" rows="1" maximumLength="1" columns="1">
    <onSubmitValidater>
    <decimal/>
    </onSubmitValidater>
    </messageTextInput>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'IdPrikaz')}" text="IdPrikaz"/>
    </columnHeader>
    <contents>
    <messageTextInput id="${ui:concat('OsnovaniyaPrikazEnd:IdPrikaz:',uix.current.tableIndex)}" model="${ui:cond(uix.current.isNewRow,null,uix.current.newGroup_end2IdPrikaz)}" text="${uix.current.OsnovaniyaPrikazEndIdPrikaz}" name="IdPrikaz" promptAndAccessKey="&IdPrikaz" rows="1" maximumLength="1" columns="1">
    <onSubmitValidater>
    <decimal/>
    </onSubmitValidater>
    </messageTextInput>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'IdOsnovanie')}" text="&#1053;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;"/>
    </columnHeader>
    <contents>
    <messageChoice id="${ui:concat('OsnovaniyaPrikazEnd:IdOsnovanie:',uix.current.tableIndex)}" model="${ui:cond(uix.current.isNewRow,null,uix.current.IdOsnovanie)}" name="IdOsnovanie" promptAndAccessKey="&IdOsnovanie" selectedValue="${uix.current.newGroup_end2IdOsnovanie}">
    <contents childData="${jhsTableBindings.Osnovaniya_not_viewVO_1T.rangeSet}">
    <option value="${uix.current.Id}" text="${uix.current.Text}"/>
    </contents>
    <primaryClientAction>
    <firePartialAction event="whenListChanged" formSubmitted="true" unvalidated="true" targets="${ui:cond(uix.current.isNewRow,'OsnovaniyaPrikazEnd', 'OsnovaniyaPrikazEnd')}"/>
    </primaryClientAction>
    </messageChoice>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'IdMoves')}" text="IdMoves"/>
    </columnHeader>
    <contents>
    <messageChoice rendered="${uix.current.ListLength>'1'}" id="${ui:concat('OsnovaniyaPrikazEnd:IdMoves:',uix.current.tableIndex)}"
    model="${ui:cond(uix.current.isNewRow,null,uix.current.OsnovaniyaPrikazEndIdMoves)}" name="IdMoves" promptAndAccessKey="&IdMoves"
    selectedValue="${uix.current.newGroup_end2IdMoves}">
    <contents childData="${uix.current.MovesList.inputValue}">
    <option value="${uix.current.Id}" text="${uix.current.Fam1}"/>
    </contents>
    </messageChoice>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" columnDataFormat="iconButtonFormat"/>
    <columnHeader>
    <text text="&#1059;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100;?"/>
    </columnHeader>
    <contents>
    <checkBox name="deleteRow" value="ok"/>
    </contents>
    </column>
    </contents>
    </table>
    Thank you.

  • WRT350N - How to tell if it's V1 or V2? Having major problems with it

    I have a WRT350N that I purchased about a year or so ago and I'm trying to figure out if it's V1 or V2. Seems like tons of people are having problems with this series. I was having problems with the wireless connection going dead constantly (5+ times a day). Since I work from home this was obviously not acceptable. I upgraded the firmware after talking with Linksys tech support. After that, the problem got much worse. Now the wireless connection goes down as well the router loses it's internet connection. I finally removed it from my home network and put my old reliable D-Link 614 back in place. It's been working fine and actually has way better range. Before I throw this WRT350 in the trash I would like to see if mine is V1/V2 and if there is anything I can do with it.
    Thanks!
    Matt

    To find out the router's version number look at the bottom of the router, it should say Model Number : WRT350N, right next to the model number if it says V2 then it is version 2 else it is V1...I assume it should be V1...
    If you have intermittent connection, you should download and upgrade your router's firmware from here
    Follow these steps to upgrade the firmware on the device : -
    Open an Internet Explorer browser page on a computer hard wired to the router...
    In the address bar type - 192.168.1.1...Leave the Username blank & in Password use admin in lower case...
    Click on the 'Administration' tab- Then click on the 'Firmware Upgrade' sub tab- Here click on 'Browse' and browse the .bin firmware file and click on "Upgrade"...
    Wait for few seconds until it shows that "Upgrade is successful"  After the firmware upgrade, click on "Reboot" and you will be returned back to the same page OR it will say "Page cannot be displayed".
    Now reset your router :
    Press and hold the reset button for 30 seconds...Release the reset button...Unplug the power cable from your router, wait for 30 seconds and re-connect the power cable...Now re-configure your router...
    For Wireless Settings, please do the following : -
    Click on the Wireless tab,
    - Wireless Network mode should be mixed...
    - Provide a unique name in the Wireless Network Name (SSID) box in order to differentiate your network from your neighbours network...
    - Set the Radio Band to Standard-20MHz and change the Standard channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on Save Settings...
    Please make a note of Wireless Network Name (SSID) as this is the Network Identifier...
    For Wireless Security : -
    Click on the Sub tab under Wireless > Wireless Security...
    Change the Wireless security mode to WEP, Encryption should be 64 bit.Leave the passphrase blank, don't type in anything...
    Under WEP Key 1 type in any 10 numbers please(numbers only and no letters eg: your 10 digit phone number) and click on save settings...
    Please make a note of WEP Key 1 as this is the Security Key for the Wireless Network...
    Click on Advanced Wireless Settings
    Change the Beacon Interval to 75 >>Change the Fragmentation Threshold to 2304, Change the RTS Threshold to 2304 >>Click on "Save Settings"...
    Now see if you can locate your Wireless Network and attempt to connect...

  • Problem with cascade delete and remove bean

    I am working with two entity beans that map to two tables that have a foreign key relationship. Table B has a foreign key to A and in the database that foreign key is set for cascaded updates and cascaded deletes.
    The problem occurs when the the sytem first tries to remove bean 1 (mapped to table A) and then remove bean 2 (mapped to B) where bean 2 is associated with bean 1 with a foreign key relationship. The first remove works but then when it tries to remove bean 2 it throws a very ugly "CORBA TRANSACTION_ROLLEDBACK 9998" Maybe exception. My guess is that the reason is because bean 2's reocrd in the database was deleted when bean 1 was removed but the 'bean object' was not removed from the container.
    When I go into our Application Server and look at how it see's the tables, it show the wrong relationship. It shows a restrict delete and a restrict update realationship.
    My question is, am I wrong to think that this is a application server problem or a configuration problem? It seems to me that attempting to remove a non-existant record should not cause an error. It won't cause any SQL exceptions. Is this a flawed viewpoint? As a work around I made sure that the dependent records are deleted first but it kind of defeats the point of cascaded deletes.
    We have a limited number of support calls, should I use one or am I at fault here?

    If the database removes the record from the second
    table, why is the system trying to remove it once
    again? You should try to remove an entity from a
    single place, should it be the database or the
    application. Don't try to remove it twice.
    Regards,
    DimitarI could do this but it is a huge pain in my ass. The problem is that you might want to remove the dependent bean without removing it's parent. The object structure is a little questionable, I'll admit that. It is, as they say, the eleventh hour and I can't really change that now.
    The way this work is that the server gets a list of objects marked either as new, modified, or deleted. It then relates those changes back to the database.
    In this case we have two lists(which makes me realize where the class structure sucks.) In order to do what you suggest I would have to get all the deleted parent objects and then search all the deleted child objects for ones that have the parent's key in them.
    It would be prefferable to fix the class structure but again this is not an option.
    Anyone want to answer the question I asked?

  • Problem in cascading the Prompt..

    Hi Guru's,
    I need your expert advice on problem related to Prompt.
    I have 5 columns in one Prompt which belong to different dimension from same subject area which are joined from Fact table.
    Report month is from Buisness month table and Reportdate is from TimeDim which is snow flacked.
    rest A,B and C dim are joined with time Dim from Fact table.
    ReportMonth>> ReportDate>>ADim>>BDim>>CDim
    Only Report date is Constrain rest all dont require cascading.
    In mine Prod Env. when i select A B and C prompt the Reportdate is getting cascaded and the logical query has all paramteres i.e. Reportmonth, ADim,BDim and CDim in logical sql but when i see the physical query only A,B and C are getting passed to the database but ReportMonth is not passed which is an calculated column in RPD.
    But in mine local or Dev env the Physical query is passing all the parameter i.e Report month,A,B,C to the database.
    Because of this am facing performace issue while selecting the Prompt.
    Am on production now so not ina stage to change the RPD and bring all the dimension in one LTS.:(
    Any query pls let me know.
    Any help would highly be appriciated.
    Cheers,
    Rajeev

    hi,
    I m using following code for selecting Countries
    public List getSelectedCountries() {
    if (selectedCountries == null || refreshSelectedList) {
    selectedCountries = attributeListForIterator("EmployeeMapCountryCity2", "CountryId");
    return selectedCountries;
    That is working but
    And same code is using for  selecting cities, it's not working
    public List getSelectedCities() {
    if (selectedCities == null || refreshSelectedList) {
    selectedCities = attributeListForIterator("EmployeeMapCountryCity2", "CityId");
    return selectedCities ;
    Above method won't get the value of selected cities
    please help me.
    Regards
    Abhijeet
    Edited by: AbhijeetPS on Jan 31, 2013 4:49 PM
    Edited by: AbhijeetPS on Jan 31, 2013 4:58 PM
    Edited by: AbhijeetPS on Jan 31, 2013 4:59 PM

  • Migration Microsoft SQL Sever 2005 to Oracle 11g cascade on delete problem

    Hi, I'm trying to migrate a sql server 2005 database to oracle 11g version with the lastest version of Oracle SQL Developer. All works fine but there is a little thing that I can't migrate. I have a few tables in the sql server database that has cascade on delete but I can't migrate this through Oracle Sql Developer.
    I know that Oracle database server supports it, then I can manually change the resulting database creation sql script but I'd like to know how I can do it with Oracle Sql Developer.
    Thanks in advance :)

    Hello,
    sorry for the delay.
    Even after some more research I couldn't find this problem described anywhere. I can confirm your observations, the problem is easy to reproduce. Thus I reported it to SQL Developer development as this looks like a bug.
    One workaround is to edit the generated DDL script and to add the ON DELETE CASCADE clause to the ALTER TABLE statement. If you don't like that: apply the scripts as they are and finish the migration. Then, in SQL Developer, right-click the table in your Oracle RDBMS schema, and click on Edit. In the pop-up window, select "Foreign Key". Then, in the lower right corner, there appears a small scroll-down menu where you can change the delete option from RESTRICT to CASCADE.
    Best regards
    Wolfgang

Maybe you are looking for