Issue with 2wire dsl router when connecting power pc g4 via ethernet

Issue with 2wire dsl router when connecting power pc g4 via ethernet. The 2wire will keep resetting. When I connect my macbook pro via ethernet to the 2wire all is ok, but as soon as i connect the power pc. . . .reset. I have emailed 2wire support. They recommended using a different patch cable. Tried that.. .. anyone else having this issue???? Any help would be appreciated. . .

Search the discussions for issues with 2wire dsl routers. This has come up before in a discussion I've been involved with, but probably not to do with the MDD. I do remember it being a design issue with the router, something that was done to it before dispatch.
Let us know if you can't find it and we'll have a look.
If you afford it, bin the 2wire and go buy something decent like a Netgear.

Similar Messages

  • Issues with Skype & Viber only when connected to m...

    Hi there,
    I am having serious connection issues on Skype and Viber and can't seem to work out why. Here is my setup:
    -I am using a Macbook Air and iPhone 5, both of which were bought in the last year and both of which are completely up to date in terms of software
    -On my Macbook Air, I am using the Skype application and Skype through Facebook
    -On my iPhone 5, I am using the Skype application, Skype through Facebook and Viber
    -On all of these applications, I am connected to BT Infinity with a download speed of 69.5Mb and an upload speed of 17Mb
    Despite all of this, I have extremely bad connection on all combinations of device and application. It is not a problem with the two devices as they both work significantly better on other wifi connections. For example, my Dad's broadband is less than 10Mb in terms of download speed and has a terrible router but my iPhone can use Skype almost perfectly. Even on 3G I can call people on Viber through my phone and it's fine. It is also not a problem with the people I am speaking to as they experience no problems with the other people they use Skype or Viber with.
    From all of this, I have concluded that it must be my BT connection but my general browsing is largely fine (not perfect) and, having spoken to BT support, it has been confirmed that my connection is officially working as it should be. 
    So I am completely stumped and extremely frustrated. I need to be able to use Skype and Viber as I have close family and friends living abroad and my conversations with them are spoilt by this issue.
    Please could someone give me some advice as I have run out of ideas!
    Cheers,
    Rich

    You shouldn't need to but if you want to try "forgetting" it on your devices then restart the device and remake the connection it might help. Have you tried connecting your mac by Ethernet to see how it performs.
    When you first turned off Smart Set Up you said it seemed to be working. Is the slow down time specific? Have you tried a speed test when you get the poor connection. Disconnect from Skype or Viber and run a speed test.
    http://speedtest.btwholesale.com/
    You could try turning off "Smart Wireless". Download a Wifi Analyser app for you smartphone or use the free version of inSSider from forum member Keith Beddoe's website here. Sorry it's Windows only.  
    http://forumhelp.dyndns.info/software/insidder.zip
    It will show you the wireless channels and which one your Homehub is on. You want to find the channel with the least congestion, ie. least number of users. Once you have that you need to change your homehub onto that channel.
    See link how to change channel on homehub
    http://bt.custhelp.com/app/answers/detail/a_id/14094
    Another thing to try is Try giving the 2.4Ghz and 5Ghz frequencies different SSids. Just add a 5 to the end of the 5Ghz SSid so you know which is which. Check the 5 GHz Sync with 2.4 GHz: is set to NO.
    Once you have done that "forget" the connection and then restart the device and log onto both. The device should then automatically switch to the strongest signal.
    You'll need to connect your other devices that can use both frequencies to both SSids if you want them to be able to use both/either frequencies.
    See this link
    http://bt.custhelp.com/app/answers/detail/a_id/44798/~/i-have-problems-connecting-5ghz-and-dual-band...

  • Issue with My VB Code when connecting to SAP

    Hi Guys: I am trying to upload Customer Master Data information into SAP from Excel using VB. Here is my code.
    Private Sub CommandButton3_Click()
    ' Getting the last filled Row in Column A
    vLastRow = Cells(Rows.Count, "A").End(xlUp).Row
    ' Setting the necessary variables for R/3 connection
    Set objBAPICortrol = CreateObject("SAP.Functions")
    Set objConnection = objBAPICortrol.connection
    ' Establish a connection
    If objConnection.Logon(0, False) Then
        MsgBox "Connection Established"
    End If
    On Error Resume Next
    ' Assign the Parameters
    Set objCreateCustomer = objBAPICortrol.Add("BAPI_CUSTOMER_CREATE")
    Set objAccountGroup = objCreateCustomer.Exports("Acct Gr")
    Set objCompanyCode = objCreateCustomer.Exports("Co Code")
    Set objSalesOrganization = objCreateCustomer.Exports("Sales Org")
    Set objDistributionChannel = objCreateCustomer.Exports("Dist Ch")
    Set objDivision = objCreateCustomer.Exports("Div")
    Set objName = objCreateCustomer.Exports("Name")
    Set objStreet = objCreateCustomer.Exports("Street")
    Set objHouseNumber = objCreateCustomer.Exports("House Number")
    Set objPostalCode = objCreateCustomer.Exports("Postal Code")
    Set objCity = objCreateCustomer.Exports("City")
    Set objRegion = objCreateCustomer.Exports("Region")
    Set objCountry = objCreateCustomer.Exports("Country")
    Set objCountyCode = objCreateCustomer.Exports("County Code")
    Set objPhone = objCreateCustomer.Exports("Phone")
    Set objContact = objCreateCustomer.Exports("Contact")
    Set objFax = objCreateCustomer.Exports("Fax")
    Set objEmail = objCreateCustomer.Exports("Email")
    Set objDirections = objCreateCustomer.Exports("Directions")
    Set objCityCode = objCreateCustomer.Exports("City Code")
    Set objReconAccount = objCreateCustomer.Exports("Recon Account")
    Set objPaymentHistory = objCreateCustomer.Exports("Payment History")
    Set objCustomerPricingProcedure = objCreateCustomer.Exports("Cust Pricing Procedure")
    Set objCustomerStatisticsGroup = objCreateCustomer.Exports("Cust Stat Group")
    Set objIncoTerms = objCreateCustomer.Exports("Inco Terms")
    Set objTermsofPayment = objCreateCustomer.Exports("Terms of Payment")
    Set objAccountAssignmentGroup = objCreateCustomer.Exports("Acnt Assign Group")
    Set objTaxClassification = objCreateCustomer.Exports("Tax Classification")
    ' Now looping through all values create customer
    ' The data begin row is set to 2
    For vRows = 2 To vLastRow
    ' Set the Parameter Values
    objAccountGroup = ThisWorkbook.ActiveSheet.Cells(vRows, 1).Value
    objCompanyCode = ThisWorkbook.ActiveSheet.Cells(vRows, 2).Value
    objSalesOrganization = ThisWorkbook.ActiveSheet.Cells(vRows, 3).Value
    objDistributionChannel = ThisWorkbook.ActiveSheet.Cells(vRows, 4).Value
    objDivision = ThisWorkbook.ActiveSheet.Cells(vRows, 5).Value
    objName = ThisWorkbook.ActiveSheet.Cells(vRows, 6).Value
    objStreet = ThisWorkbook.ActiveSheet.Cells(vRows, 7).Value
    objHouseNumber = ThisWorkbook.ActiveSheet.Cells(vRows, 8).Value
    objPostalCode = ThisWorkbook.ActiveSheet.Cells(vRows, 9).Value
    objCity = ThisWorkbook.ActiveSheet.Cells(vRows, 10).Value
    objRegion = ThisWorkbook.ActiveSheet.Cells(vRows, 11).Value
    objCountry = ThisWorkbook.ActiveSheet.Cells(vRows, 12).Value
    objCountyCode = ThisWorkbook.ActiveSheet.Cells(vRows, 13).Value
    objPhone = ThisWorkbook.ActiveSheet.Cells(vRows, 14).Value
    objContact = ThisWorkbook.ActiveSheet.Cells(vRows, 15).Value
    objFax = ThisWorkbook.ActiveSheet.Cells(vRows, 16).Value
    objEmail = ThisWorkbook.ActiveSheet.Cells(vRows, 17).Value
    objDirections = ThisWorkbook.ActiveSheet.Cells(vRows, 18).Value
    objCityCode = ThisWorkbook.ActiveSheet.Cells(vRows, 19).Value
    objReconAccount = ThisWorkbook.ActiveSheet.Cells(vRows, 20).Value
    objPaymentHistory = ThisWorkbook.ActiveSheet.Cells(vRows, 21).Value
    objCustomerPricingProcedure = ThisWorkbook.ActiveSheet.Cells(vRows, 22).Value
    objCustomerStatisticsGroup = ThisWorkbook.ActiveSheet.Cells(vRows, 23).Value
    objIncoTerms = ThisWorkbook.ActiveSheet.Cells(vRows, 24).Value
    objTermsofPayment = ThisWorkbook.ActiveSheet.Cells(vRows, 25).Value
    objAccountAssignmentGroup = ThisWorkbook.ActiveSheet.Cells(vRows, 26).Value
    objTaxClassification = ThisWorkbook.ActiveSheet.Cells(vRows, 27).Value
    ' Function call
    objCreateCustomer.call
    ' Get return parameters & display in excel
    Set objReturn = objCreateCustomer.Imports("RETURN")
    ActiveSheet.Cells((vLastRow + vRows), 1) = objReturn.Value("MESSAGE")
    ' Error handling
    If Err Then
        MsgBox Err.Description
    End If
    Next vRows
    End Sub
    I am getting an error...
    "No Connection to SAP available".
    PLease advise how I can correct this.
    thanks
    Brian

    hi Brain,
            i hope the following URL's will be useful for you
    http://www.programmingtalk.com/archive/index.php/t-21399.html
    Re: VB and SAP connection with BAPI Active X control
    http://help.sap.com/saphelp_46c/helpdata/en/76/4a42f7f16d11d1ad15080009b0fb56/content.htm
    Reward points if useful
    regards,
    Pavan

  • I am having trouble connecting to my network all of a sudden. It is not an issue with the service/router. I keep getting kicked off and getting a ! in my airport... anyone know what's up with this?

    I am having trouble connecting to my network all of a sudden. I am able to connect to other networks but not my own. It is not an issue with the service/router because other devices connect fine. I keep getting kicked off and getting a ! in my airport. Last time it happended I called apple and the suggested I wipe my HD and reinstall everything. I did and it did not work. One day I turned my laptop on and it connected no problem. Now it has kicked me off again. I tried resetting my IP address but that does not work either! Has anyone had this problem?

    Try this:
    Apple menu / System Preferences / Network.
    Click Location: and select Edit Locations..
    Click + (plus sign), and enter a name for the new location - anything will do.
    Apply this.

  • Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi has anyone else had the same issues works fine with BigPond WiFi

    Cant open web pages when connected to the internet via Telstra's Pre Paid WiFi (this connection is working on other devices) has anyone else had the same issues, works fine with BigPond Wifi

    and now, when i tried to check again my network preference below the airport tab is showing a message that
    "my airport does not have an IP address and cannot connect to the internet!"
    then after seconds it will goes back to the first message that
    "airport has the self assigned IP address etc....."
    i don't know whats going on now!
    airport tab is not showing green color anyway! i'ts always in yellow!
    i tried turning it on and off but nothing happen! HEEELLLLPP!!!!

  • I have a problem with using MacBook Pro as wifi router when connected to ethernet

    I have a problem with using MacBook Pro as wifi router when connected to ethernet. The Airport icon changes to show a laptop inside, my iPad shows connected (I think) but Safari will not operate. I tried pinging my iPad, it seems to see the iPad, but no connection to Safari or to other apps such as Good on the iPad. I have read many posting and tried repeatedly via Sharing in Systems Preferences, but no luck. Suggestions to fix, or is this a Lion problem?

    Usually this is a problem related to the domain name server address. If you open Network preferences, select your Ethernet port then click on the Advanced button then on the DNS tab. You will likely see an entry like 10.0.1.1 already listed. Click on the Add [-] button and enter 208.67.222.222 then click on the OK button and then on the Apply button.  See if this helps.
    if it does not help then repeat the above but with the Airport port.

  • I started to have connectivity issues with a linksys router.  The linksys rep suggested ...Check from Apple if they have some particular ports for the Apple TV that we might need to open on the router, anyone have any suggestions for this?

    I started to have connectivity issues with a linksys router.  The linksys rep suggested ...Check from Apple if they have some particular ports for the Apple TV that we might need to open on the router, anyone have any suggestions for this?

    Hi RonWM,
    Thanks for visiting Apple Support Communities.
    This article lists the ports that are used by the Apple TV:
    Apple TV: TCP and UDP ports and protocols used
    http://support.apple.com/kb/HT2463
    Best Regards,
    Jeremy

  • Problems setting up WVC80N TZO account using my 2701HG-T 2Wire DSL Router

    Hi!
    I have 2 WVC80N cameras and I´m using a 2701HG-T 2Wire DSL Router, they are already configured and i can see them wireless, but i tryied again and again to configure both TZO accounts and always recived the next message:
    Oops, there was an error when setting up your camera for remote access.
    The wizard cannot automatically configure your router due to an invalid or unknown password. Please check your password settings on your router and try again. In many cases, your router may still have the default password setting.
    Can somebody help me? What i need to do? Is there another way to watch them throug internet?
    Regards!
    Ed.

    That link above wont work for you, you have a WVC80N and the signup is ON THE CD, not via the website.
    This error is due to the router password not working, do you know the admin PW for the router to add/remove port forwarding rules?
    If not, call your ISP or whoever gave you the router and get the password then try the setup again
    http://www.MyHomeServer.com
    Linksys IP camera reviews, Tutorials and How-To's on Web & Mobile Streaming

  • HT4623 Does anyone have an issue with your iPhone 5 when trying to play music? Mine won't, on the screen you see the player run through songs very quickly but never playing.... Help!

    Does anyone have an issue with your iPhone 5 when trying to play music? Mine won't, on the screen you see the player run through songs very quickly but never playing.... Help!

    Try this > Start a song, tap the screen, under the left side of the scrubberbar that appears, tap the icon to stop shuffle.

  • My iPod touch is having a little issue with the volume. When I plug in my headphones the volume works fine. When there aren't any headphones plugged in, no sound comes out from my iPod. When I go to turn up the volume, it still says headphones. Any tips?

    My iPod touch is having a little issue with the volume. When I plug in my headphones the volume works fine. When there aren't any headphones plugged in, no sound comes out from my iPod. When I go to turn up the volume, it still says headphones. I tried restarting it a few times, nothing worked. I looked up many tutorials, and still nothing did the trick. Any tips?

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so.
    Try the following to rule out a software problem
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.
    Apple Retail Store - Genius Bar
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                  
    A third-party place like the following will replace the jack for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the jack yourself
    iPod Touch Repair – iFixit

  • I just got the iPhone 5s, I have had a 4 for the last few years, my husband uses a galaxy.  I have never had issues with any of our phones connecting the the cars Bluetooth until this one sometimes it will connect and sometimes it won't.  I drive a gm car

    I just got the iPhone 5s, I have had a 4 for the last few years, my husband uses a galaxy.  I have never had issues with any of our phones connecting to the cars Bluetooth until this one sometimes it will connect and sometimes it won't.  I drive a gm car.  A friend of mine drives an Acura and said she is also having the same problem?  I have to connect the phone every time I get in the car. 

    Turn Off BT on your Phone & ReBoot..
    Delete the phone from the vehicles memory..
    Restart the Vehicle & go thro' the Pair set up..........

  • I want to set up my iphone to sync with my macbook but when I plug it in via USB my iphone doesn't show up under devices in itunes even though it is plugged in correctly and is charging through my computer. How do I get it to show up?

    I want to set up my iphone to sync with my macbook but when I plug it in via USB my iphone doesn't show up under devices in itunes even though it is plugged in correctly and is charging through my computer. How do I get it to show up? I've tried restarting my computer.

      If your iPhone does not appear under Devices in iTunes after you connect it to your Mac, refer to the troubleshooting suggestions here:
      http://support.apple.com/kb/ts1591

  • How do I set up my iPhone 4s to sync automatically to iTunes when connected to my iMac via USB?

        How do I set up my iPhone 4s to sync automatically to iTunes when connected to my iMac via USB?  Currently it only syncs when I manually click on sync.
        Somehow I do have my 5th gen. iPod set up to sync automatically with the same iTunes / computer.  But I do not actually see a checkbox for either device.
        (yes, the 'prevent devices from automatically syncing' is unchecked)
    thank you!

    Turn off mobile data?
    Talk to your carrier about the usage increase.
    Googling provides many tips- https://www.google.com/search?q=reduce+iPhone+data+usage&ie=utf-8&oe=utf-8

  • Best settings when connected to am amplifier via digital i/o

    There are all these crazy settings on the creative software and of course my amp has crazy settings as well. Wondering whats the best settings in the software so I am not "double processing" my soud. Seems to me I would want a neutral choice going to my nice amp to start with. something like default to av reciever so the reciever would process an unmodified signal. so not even perhaps make speaker choices dolby choices adc filtering effects et al. Now I know then I wouldnt be taking advantage of the cool software, but once set up a neutral connection I could mess around with the software.
    Any help and or opinion would be wonderful. Over and out.

    @Re: best settings when connected to am amplifier via digital i/ow of note and interesting is my Amplifier Harman Kardon avr320?displays PCM and 96 KHZ, not sure exactly what this means but I will be posting at audiogon and/or AVForums maybe look at audiholics to figure out if I really have the best case scenario here. Somewhere I read I would be better off with just bitstream.....which is what Ibelieve I selected?selected in soundblaster software.....things sound about as good as I can imagine but I'll check back in.
    I think Pandora one only streams at 48khz anyways. Not sure about Netflix. Looks like dvds can have even higher bitrates especially foy stereo. A yi yi, I think I'll just listen a bit to the bits.
    much is explained here, yikes its a heavy read perha
    ps.
    I just glanced.
    http://en.wikipedia.org/wiki/DVD-Audio

  • I have a 3rd party hard drive with movies on it ,it is connected to my airport extreme. The AE is connected to my tv via ethernet cable. Can I stream my movies to the Tv ?

    I have a 3rd party hard drive with movies on it ,it is connected to my airport extreme. The AE is connected to my tv via ethernet cable. Can I stream my movies to the Tv ?

    Not without a player..
    The AE is a dumb file server.. the hard disk you plug in is an even dumber hard disk.
    There are no smarts in this setup.. not even DLNA. So the TV would have to be an extremely smart one to read raw files on a network drive.. none do that I know of.
    A solution is WD live TV.. it can read files from just about any file source on network and play them to the TV.
    Nothing apple makes will do that.. ATV is a streamer not a media player. Everything in the Apple world is tied up with itunes. So you must have a computer running itunes to use it.
    You can download a more generic player for ipad, and put that as part of the network.. but you still need ATV to display the video.

Maybe you are looking for

  • With  'BAPI_REQUISITION_CREATE' not able to create service line item

    Hi Experts Please help me with this. Am working with 'BAPI_REQUISITION_CREATE'. Able to create PR ( with constant data) but the service line item is not seen with ME53N. No error message displayed. Have checked the SAP note 420331. The code is as bel

  • Connect WebCenter 11g PS3 to a clustered UCM 11g ?

    Hi, I am trying to figure out how to connect a WebCenter cluster to a UCM cluster. I have mainly been flowing the [Enterprise Deployment Guide for Oracle WebCenter|http://download.oracle.com/docs/cd/E14571_01/core.1111/e12037/toc.htm] but in this cru

  • Upgrading UCCX 7.0 (1) Build 109 to 7(0)2

    How can i upgrade the  uccx 7.0(1)bulld 109  to  Version 7(0)2, when i start 7.0.1SR01_build210 ,which is the  first avaialble download,  it stop and prompt the error, this build is meant for   7.0.1SR01_build168. this are the  available upgrade file

  • Feathers TextInput with AIR 3.9

    With the latest 3.9 Beta I'm seeing the Feathers TextInput field unmasked when it's set to 'password'. Has anyone else seen this? It worked fine under 3.8. It's possible it's a Feathers issue in combination with recent 3.9 updates.

  • Register 12 VerifyError exception when compiling jsp with that jsp tag!

              Hi everybody,           We implemented a tag which is charged with a simple task like just "out.println"s,           on production with WL5.1 SP11,jdk1.2.           Then we got java.lang.VerifyError exception which is also denoted at Giusep