You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

macOS Sequoia network issues

Like many others, Sequoia started behaving very sluggish from the very beginning. The computer itself was slow, but I also had trouble accessing the company's Microsoft 365 environment. I couldn't access SharePoint, OneDrive repeatedly asked me to log in, DNS resolution frequently didn't work, Teams refused to allow me to join meetings, the browser versions of Office, Excel etc didn't work, etc.


First thing was to uninstall the VPN software I sometimes have to use to connect to the office network from home. I'll wait for the vendor to release an update.


While at the office, my MacBook Pro is connected to both WiFi and cabled Ethernet. Once I unplugged the cable, things started behaving better - that's clearly a bug, and it has always worked just fine in older versions of macOS.


Setting Private Wi-Fi address to "fixed" helped with the frequent network disconnects. I've now set it to "off" (because I rarely use public Wi-Fi networks).


Things are now mostly back to normal. I hope this helps others struggling with similar issues.

MacBook Pro 15″, macOS 15.0

Posted on Sep 19, 2024 2:07 PM

Reply
Question marked as Top-ranking reply

Posted on Sep 26, 2024 6:25 PM

Yes, this is a widely reported bug in Sequoia (just google intermittent internet connection Sequoia). As stated turning off the firewall usually works, it did on my 2019 imac and 2023 mac studio. This appears to be the only workaround until Apple fixes the network bug(s). The real question is, of course, why did Apple release an operating system update where many Mac owners have to to turn off the built-in firewall to get a stable internet connection?

67 replies
Question marked as Top-ranking reply

Sep 26, 2024 6:25 PM in response to etresoft

Yes, this is a widely reported bug in Sequoia (just google intermittent internet connection Sequoia). As stated turning off the firewall usually works, it did on my 2019 imac and 2023 mac studio. This appears to be the only workaround until Apple fixes the network bug(s). The real question is, of course, why did Apple release an operating system update where many Mac owners have to to turn off the built-in firewall to get a stable internet connection?

Oct 16, 2024 8:56 AM in response to Starbreeze

After updating to macOS 15.0.1, I started having problems with connections, to be specific with Apple Remote Desktop. I also tried using other apps like VNC Viewer but I still have the same issues with the remote session where connection dropping every few minutes. I try everything but only what works seems to be turning the Firewall off. I turned off the firewall and didn't get a session disconnection for a while.


Unfortunately Apple has become worse than Microsoft with updates. The previous version (macOS 14) had a problem with HDMI connections on M2 chips and still hasn't been fixed. This is totally unfair because Apple devices are too expensive to have issues like this!

Oct 29, 2024 4:05 AM in response to Starbreeze

Problem Solved! - And an alternative Solution for Network Issues on Macs with Sequoia 15.0.1 (Intel Chip)


Hey everyone,


I wanted to share a workaround and the latest update on an issue we ran into recently with some Macs at our company. We have around 15 Macs, and they were all working fine until a few days ago, when we started seeing frequent, frustrating network issues:

  • Random disconnections from our internal software
  • Email failures
  • DNS resolution issues (resulting in no internet connection)


Here’s what I found:

After looking closely at the differences between the Macs having issues and those that weren’t, I realized the problem only affected iMacs that were:

  • Updated to Sequoia 15.0.1
  • Running on Intel chips

Meanwhile, iMacs running Sequoia on M1 or M2 chips or those on Sonoma (Intel, M1, or M2) were working perfectly.


Troubleshooting Steps Tried (Spoiler: Didn’t Work)

I tried everything I could think of: replacing cables, configuring devices with DHCP, setting Fixed IPs, assigning IPs based on MAC addresses, adding IPs and DNS into our firewall, disabling firewalls and VPNs, and fiddling with advanced Ethernet settings. Nothing seemed to work.


Temporary Fix (Before the final solution)

While troubleshooting, I managed to identify a way to reproduce the issue: simply rebooting an affected iMac. After a reboot, it wouldn’t immediately connect due to (what I think it is)a bug in the “mDNSResponder” process, which affected auto-discovery and server detection.


To work around this, I wrote a script to:

  1. Detect the active Ethernet interface
  2. Shut it down temporarily, then turn it back on after 10 seconds.


#!/bin/bash

# List all active network interfaces
for interface in $(networksetup -listallhardwareports | awk '/Device:/{print $2}')
do
  # Get IP address assigned to the interface
  ip=$(ifconfig $interface | awk '/inet /{print $2}')

  # If IP address is assigned, print the interface and the IP
  if [ -n "$ip" ]; then
    echo "Ethernet Interface: $interface"
    echo "IP Address: $ip"
    # Turn off the interface
	sudo ifconfig $interface down
    # Wait for 10 seconds
	sleep 10
    # Turn the interface back on
	sudo ifconfig $interface up   
  fi
done


Running this script daily helped keep our iMacs connected – not a pretty solution, but it worked.


The Real Fix (Finally!)

Yesterday, I noticed that Apple released Sequoia 15.1. I updated one of the affected iMacs last night, and today it’s been working perfectly. After several reboots, the problem hasn’t resurfaced, which looks promising!

I’ll be updating the rest of our affected iMacs at the earliest opportunity and will report back if there are any hiccups.

Hope this helps! If this solution worked for you or you found this useful, please upvote so others can find it easily.


Thanks!

Junior.

Oct 2, 2024 7:31 AM in response to Starbreeze

If you are having connection issues with application XYZ, try the following steps:

1) Open a Terminal command window.


2) In order to see whether your OS firewall allows or blocks connection from application XYZ, enter the following command from the Terminal command window:

/usr/libexec/ApplicationFirewall/socketfilterfw --listapps


3) If the output from that command lists application XYZ as blocked by your OS firewall, you can allow application XYZ firewall access by entering the following command from the Terminal command window:

/usr/libexec/ApplicationFirewall/socketfilterfw --add /Applications/XYZ.app

( where XYZ.app is the name of the given application as listed in the /Applications folder, including case sensitive )


Oct 24, 2024 3:59 AM in response to Starbreeze

Since a unexpected update to Sequoia from Sonoma, i've started to have lots of problems with network connections, VPN, WiFi connections and also wired connections..

I'm working mostly from home and there are no issues with my internet connection, every other device that is not a Mac works flawlessly..

I work using VPN and it disconnects very more than often/day. The WiFi connection never drops from Mac OS but during the "disconnection time" i am not able to browse anything , means a possible internal DNS problem?? , but i am able to ping 8.8.8.8 or whatever . i'm working leaving a terminal window with a active ping to 8.8.8.8 and when my VPN gets disconnected the ping stops too and i get the shell prompt..

I've read all the posts, i have no active firewall, i've a fixed ip for wifi, the connection disconnects also with a WIRED cable (tried with different LAN adapters) and wifi down.

The only good point, looking at all the messages on this thread , is that i am not alone.. but someone (Apple?) should fix this behavior . Before with Sonoma everything worked well..

Thanks.

Oct 2, 2024 8:41 AM in response to Starbreeze

Hi,


Same issues seen here after upgrading to MacOS 15, this is a mess!! It is very frequent that I can't open websites at the first try with Chrome, and I do run Zwift for my cycling workouts, and keeps dropping the connection every 1-2 mins, my teammates says that my avatar just disappears.


I have tried to:


-Re-add the Wifi adapter

-enable/disable Bluethoot, Location services

-Reinstall apps

-Change wifi settings to fix ip or alternate.


My next step will be to perform a reinstallation of the whole OS from scratch and see if that works.


Again, this issue started after upgrading my Mac to Sequoia, it is a Macbook Pro 16 inch M1, before that update it was working perfectly fine for 2 years now, how is this possible? Apple should test the Operating Systems before publishing them to the customers, this is a mess.


[Edited by Moderator]

macOS Sequoia network issues

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.