Recommended Posts

Hey,

Last weekend (7th till 9th) we had are internet go out. No real explantion from my ISP, at one point I got a guy telling me it has to do with the DNS, but it really made no sense to me.

So the 9th comes, and I got internet back, things seem fine. Then shortly after that, maybe a day, start having issues loading websites. Some sites just don't load at all, some load very slowly, some load partly. Sometimes a website won't load, and then it will another time.

It is two different systems having the problem, one is Windows 7, one is Windows 8. I have tried both Chrome & IE on each system. I have reset/turned off the router and modem many times now. I have even switched routers, and changed my DNS. Nothing has worked.

Cleared all caches and items like that from browsers, flushed the DNS, even did a system restore on one of the systems.

I called the ISP today, and the guy said he thinks there might be something wrong with my external IP address. Didn't give me details, said he was unsure, but might be fixed by end of today (which it's not). That kinda makes sense, but I don't understand how something can be wrong with my external IP.

Anyways, assuming it's not my ISP (going to keep dealing with them and try to get it fixed) what could possibly be causing my problem?

Link to comment
https://www.neowin.net/forum/topic/1125670-internet-website-loading-issues/
Share on other sites

if you can reproduce it on both systems that takes the systems themselves out of the equation. At this point the issues is the modem, the router or the ISP. I would bypass the router and go straight into one of the computers with the modem to take the router out of the equation. Just make sure your windows firewall is on when you do so.

Yea the problem is that I can't do that, where the computers are and where the modem is, is very far and would be a huge hassle.

Wouldn't replacing the router with another router do the same thing, which I said I did?

Please read the original post properly, yes I tried that.

Also, as I said it was a pain, very far from my computer but, for the sake of it, I managed to plug my system into the modem directly.

And weirdly, my computer acting like it was unplugged from the internet, didn't work at all. Is this possible? Working sorta while plugged in through router, dead when directly to modem?

Please read the original post properly, yes I tried that.

Also, as I said it was a pain, very far from my computer but, for the sake of it, I managed to plug my system into the modem directly.

And weirdly, my computer acting like it was unplugged from the internet, didn't work at all. Is this possible? Working sorta while plugged in through router, dead when directly to modem?

Sometimes you have to powercycle the modem once you plug it into your computer so it can give your computer an internet IP. Modems are weird that way.

Once you do that type windows key + r then type cmd and press enter and type ipconfig and press enter.

if done correctly your ip address should be an interent IP it should not be starting with 192

"I had to unplug it to do it, so yes it powercylced."

Not the PC, the modem itself - what is the make and model of your modem? And you also mention a router, if your on some sort of dsl based connection I would guess your "modem" is not really just a modem but a gateway (modem/router combo) And you could be double natting for starters - should work, but can be flaking - especially if you for example have same network on both sides of your router.

Taking the router of the equation couldn't hurt for testing, but if its an actual "modem" then yes quite often you have to power cycle when you change the device connected to it, be it a router or pc, etc.

As to this info

"should be an interent IP it should not be starting with 192"

This a bit lacking. There are plenty of pubic IPs that can start with 192.

NetRange: 192.1.0.0 - 192.1.255.255

OrgName: BBN Communications

NetRange: 192.2.0.0 - 192.2.255.255

OrgName: Level 3 Communications, Inc.

NetRange: 192.254.0.0 - 192.254.15.255

OrgName: Group Health Cooperative

etc.. ;)

Its quite possible his ISP uses 192.x.x.x, the private address space is 192.168.x.x, 10.x.x.x, 172.16-31.x.x so if your directly connected to the public net and not behind a NAT, then your IP should be something other than those. If you fail to get an IP from a dhcp server, then your IP could be 169.254.x.x which is APIPA and just means some random IP your machine gave itself when a dhcp server didn't answer - this will not be routable on the public net, etc.

If you get an IP other than in the ranges listed, this should be from your ISP when directly connected to your "modem" and lets see if you still have the issue.

While your directly connected to your "modem" and working, ping your gateway - you can find this from ipconfig /all -- also look to see what your dns servers are. If your internet stops working, ping the gateway address - does it respond? Are you getting packet loss? Ping it it with

ping ipaddressofgatewway -t

and let it run for awhile, do some pings not answer -- after about 100 or so, hit cntrl+C what does it show you for amount lost (% loss) if this not zero it points to issue with your ISP.

If that is working great and still internet problems, test your dns -- do a nslookup to something, does it respond? Flush your dns, ipconfig /flushdns Do queries with nslookup, do they respond or timeout? If they timeout, then you have issue with dns if your ping test to gateway showed no loss, etc.

I don't think anyone is reading my post.

It's cable internet, Modem, and a router. I have flushed my DNS, changed it and everything. And yes, I was talking about my modem when I said I powercycled.

Haven't done any pinging will see.

Well that is the weird thing, just checked it, and I appear to have the same one I had throughout the problem.

So just wondering if that was just bullcrap they guy told me, or maybe they fixed them some how. I just wish they would explain exactly what happened, or someone could.

*Just found out this..

"There were two issues presently in Ottawa. Customers served off of St Laurent POI receiving an IP address from a certain subnet would experience an intermittent browsing/routing issue. This should be fixed now. Problem was with Rogers Access Control List on their equipment.

Second issue related to subscribers served off of Richmond POI not getting an IP address(169 IP only) is still outstanding. We have tickets opened with Rogers and waiting for resolution."

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

    • No registered users viewing this page.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      524
    2. 2
      PsYcHoKiLLa
      232
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!