Networking problems w/ DSL and hub


Recommended Posts

Okay recently our ISP, Qwest, merged with MSN.

Therefore we got an MSN DSL modem in the mail.

Now, before, with the Cisco 675 DSL modem, I just plugged it into the uplink on our network hub, plugged the other computers in the house into the other ports, and everything worked fine- internet on all 3 computers.

Now, however, with this new modem (NetDSL 800) I can only use one computer connected to the hub at a time. If I connect another computer it says "network error, IP conflict" or something very similar. If I try to renew the IP on whatever computer isn't working, it just hangs for a while then says there was an error renewing the IP.

Any ideas on how to get all the computers to work on the hub?

Keep in mind I'm not very well versed in this area, so the simplest answer possible would be good :)

Link to comment
https://www.neowin.net/forum/topic/3487-networking-problems-w-dsl-and-hub/
Share on other sites

Nope same exact hub, and I agree that it doesnt' seem to be assigning seperate IPs.

  Quote
Originally posted by poolman

I don't know anything about DSL, but, maybe you check the DHCP setting under your network. I know a router automatically does this for you and you have to disable it under yor network settings. Maybe you can make sure it is enabled??

Hope this helps

poolman

Um so is DHCP supposed to be on or off???

a hub is not a router, its a hub. it just transfers data, it has no real brain besides determining where the info is to go.

on the rare times you can plug a dsl or cable modem into uplink, its a fluke with the way the isp's network is set up. if it does not work now you cant do anything about it.

options open. buy a second NIC and then use your computer as a router, for the other computers. or buy a router. option 1 is best costs like 10 bucks. (CDN)

anywho, sorry to tell you the bad news

I used to be on cogeco @home and i could share with just a hub, then i moved back to Ottawa with rogers@home and no more hub share, DHCP (dynamic host config protocol) gives each computer a unique ip addr. each computer must have a unique ip. the sharing of the net with a uplink port on a hub is just luck given the isps config. by all technical means it should not work, but it does :)/... sometimes.

you dont have to have dhcp id you dont want to, you could set ip for each computer if you wanted to, but dhcp makes it easier, and he is right the only way the "uplink-hub" works is if dhcp is enabled, that way you get your ip from a dsl server.

again, 10 buck and 5 mins solves the entire problem

the uplink port is for upgrading your hub. say you have a 4 port hub and get a 5 or 6 comp, you dont need to buy a new 8 port, you can buy another 4 port and plug it into the uplink port and it acts as a 8 port, more or less.

hubs are chain-able by using the uplink port. if someone knows a way to make any connection work over uplink PLEASE PLEASE tell me!!

ok so you choose a "host" computer, say yours, this computer must be on for the others to use the internet. in that computer there are to network cards. 1 connects to the dsl modem, the other connects to the hub in a normal jack. all the others connect to the hub like normal. then in xp go to the network properties box and tick "share connection" for the dsl network card. a little salt for flavor stir, mix garnish with lime. ta-da

  Quote
Originally posted by Killa-b

ok so you choose a "host" computer, say yours, this computer must be on for the others to use the internet. in that computer there are to network cards. 1 connects to the dsl modem, the other connects to the hub in a normal jack. all the others connect to the hub like normal. then in xp go to the network properties box and tick "share connection" for the dsl network card. a little salt for flavor stir, mix garnish with lime. ta-da

Love that ending! Thats Great

  Quote
Originally posted by Killa-b

ok so you choose a "host" computer, say yours, this computer must be on for the others to use the internet. in that computer there are to network cards. 1 connects to the dsl modem, the other connects to the hub in a normal jack. all the others connect to the hub like normal. then in xp go to the network properties box and tick "share connection" for the dsl network card. a little salt for flavor stir, mix garnish with lime. ta-da

Love that ending! Thats Great

  Quote
Originally posted by Killa-b

ok so you choose a "host" computer, say yours, this computer must be on for the others to use the internet. in that computer there are to network cards. 1 connects to the dsl modem, the other connects to the hub in a normal jack. all the others connect to the hub like normal. then in xp go to the network properties box and tick "share connection" for the dsl network card. a little salt for flavor stir, mix garnish with lime. ta-da

Thanks, that's about what I figured you would have to do... I've messed around with sharing a dial up connection the same way.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Guys, you should find another way to promote your deals... It's the third article in the last months that promote this deal for an upgrade from 10. Considering that upgrade from 10 to 11 is free it's a total non-sense.
    • Store should be a shrine of useful applications, vetted and verified. Easily sorted by publisher. Windows should start with not much installed and have things as options in the store. Not the wild west mess that it is. You could delete 95%+ of the crap on there and no one would notice. They need to add a better UI to the updates, it's awful right now.
    • Obsidian 1.9.2 brings breaking changes, UI improvements and several bug fixes by David Uzondu Obsidian 1.9.2 (Desktop) is now live, bringing some significant updates, especially if you have been using the Bases feature. If you're not familiar with Markdown, it's a simple way to write formatted text using a plain text editor; Obsidian is a free editor that lets you create and link notes using Markdown files stored right on your own computer. Obsidian is free to use, but if you support the project with a Catalyst license, you get access to early builds. Version 1.9.2 is in Early Access right now, so you'll need a Catalyst license to try it out This new version introduces some major breaking changes to Bases, so you'll want to pay attention here. The developers have overhauled the formula syntax and the .base file format itself. If you're using Obsidian Sync or sharing your vault across multiple devices, the team strongly recommends upgrading all your devices at the same time to dodge any annoying sync issues with files using different syntaxes. The new formula syntax in Bases is designed to be more flexible and easier to use, and it should feel familiar if you code in JavaScript. For instance, functions are now object-oriented; instead of writing contains(file.name, "Books"), you would now use file.name.contains("Booksou can also chain functions together, like property.split(' ').sort()[0].lower(). Other highlights include: Property names are no longer wrapped in backticks (`). Instead, to reference properties with spaces or special characters, the syntax is note["Property Name"] There is a new type system which provides greater control when writing formulas. New functions, such as link, date and list for converting a value to a different type. New file properties: file.path, file.links (a list of all internal links in this file), and file.tags (a list of all tags in this file, including frontmatter). Some functions have been replaced by comparison operators. For example, dateBefore(date1, date2) is now date1 < date2. Date modifications are now much simpler. Instead of dateModify(date, string), you can use date + string, for example, date("01/01/2025") + "1 year" For those wondering, the Bases feature was introduced back in Obsidian 1.9.0 as a way to turn notes into structured databases. You can learn more about the updated syntax here. Alongside these syntax changes, the .base file format has been updated for better extensibility, including a new properties section for configurations like displayName. There are some smaller improvements too, like Bases now showing the number of results in the current view and the operator dropdown for filters becoming searchable. Outside of Bases, the update brings fixes for the following: Tags view: Fixed "Show nested tags" showing the full tag name (e.g. #parent/child) File explorer: Fixed "Move folder to..." menu item not showing in context menu. Bases: Fixed view not closing after deleting the file. Bases: Fixed codeblock not rendering when "Indent with tabs" is enabled. On a related note, the creator of Markdown, John Gruber, recently shared his thoughts on rumors about Apple Notes potentially adding Markdown export. While he had reservations about Apple Notes becoming a full-blown Markdown editor, he seemed to think an export option would be useful. If the rumors are true, users will be able to easily export notes from Apple Notes and edit them in editors like Obsidian.
    • 1. DRM is the worst plague, I like my games clean. 2. Third party launchers are an overhead and annoyance.
  • Recent Achievements

    • First Post
      Uranus_enjoyer earned a badge
      First Post
    • Week One Done
      Uranus_enjoyer earned a badge
      Week One Done
    • Week One Done
      jfam earned a badge
      Week One Done
    • First Post
      survivor303 earned a badge
      First Post
    • Week One Done
      CHUNWEI earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      430
    2. 2
      +FloatingFatMan
      239
    3. 3
      snowy owl
      212
    4. 4
      ATLien_0
      211
    5. 5
      Xenon
      157
  • Tell a friend

    Love Neowin? Tell a friend!