[BUG] Cowork (macOS): all outbound egress lost mid-session from BOTH the desktop workspace and the cloud container; file access unaffected
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
Summary
During an active Cowork session on macOS, Claude lost outbound network access from both of its
shells at the same moment — the desktop workspace VM on my Mac and the cloud container. Only
package registries and Anthropic's own endpoints still resolve. Local file access is completely
unaffected.
This had been working for days, and worked earlier in the same session (Claude cloned a GitHub
repo and queried the HuggingFace API that afternoon).
This is not the Windows drive-access incident posted on the status page on 10 Sep. That one is
Windows-only, is about the workspace losing access to the local drive, and states that file
reading and editing still work. Mine is macOS, file access is fine, and the cloud container — which
is not my hardware at all — is affected identically.
Environment
- Cowork, macOS (Apple Silicon), desktop app linked to the computer
- Max plan (personal — no Organization settings available)
- Connected folders working normally throughout
Expected
Outbound HTTPS from Claude's shells reaches the internet, as it had for days.
Actual
Measured from the cloud container:
| host | result |
|---|---|
| pypi.org | 200 |
| registry.npmjs.org | 200 |
| github.com | 400 (reachable) |
| api.anthropic.com | 404 (reachable) |
| huggingface.co | 000 |
| api.elevenlabs.io | 000 |
| www.google.com | 000 |
| docs.claude.com | 000 |
Measured from the desktop workspace VM (device_bash): same public hosts fail, and a private
LAN address returns a proxy error:
http://192.168.2.75:8189/ -> 403
HTTP/1.1 403 Forbidden
X-Proxy-Error: blocked-by-allowlist
The agent proxy's own status endpoint reports:
"recentRelayFailures": [{
"kind": "connect_rejected",
"detail": "gateway answered 403 to CONNECT (policy denial or upstream failure)",
"host": "api.elevenlabs.io:443"
}]
and its noProxy list contains 192.168.0.0/16, so the private address should not have been
proxied at all. (Note curl does not honour CIDR entries in no_proxy, only hostnames — so LAN
traffic goes through the proxy in practice.)
What is unaffected
- Reading, writing and editing local files on the Mac — works perfectly throughout
- Running local commands in the workspace — works
WebSearch/WebFetch— work (documented as not subject to egress rules)- My own terminal on the same Mac reaches every one of these hosts without issue
Tried, no effect
- Rebooting the Mac
- Starting a brand-new Cowork session (network profile is set at session creation, so this was the
most promising — it failed identically)
curl --noproxy '*'— returns 000; the workspace VM has no independent route
Impact
Claude can no longer reach any external API or any host on my LAN. In my case that means it cannot
call ElevenLabs or drive a local ComfyUI server, which is the substance of the work. The workaround
is for me to run every network-touching command in my own terminal and let Claude read the results
off disk — functional, but it turns a one-step task into three.
Timing
Began around 21:30 UTC on 10 Sep 2026, mid-session.
What Should Happen?
Claude's shells should have outbound network access, as they did for days before this and
earlier in the same session.
Specifically: HTTPS requests from both the desktop workspace VM and the cloud container should
reach public hosts such as api.elevenlabs.io and huggingface.co, and requests to a private LAN
address should not be refused by the egress proxy — the proxy's own noProxy list contains
192.168.0.0/16, so LAN traffic should bypass it entirely rather than returning
403 blocked-by-allowlist.
Nothing about the session changed to warrant this: same plan, same machine, same folders, no
settings altered. Whatever narrowed the allowlist mid-session should not have applied to a
running session, and should not persist into new ones.
Error Messages/Logs
1. Private LAN host, from the desktop workspace VM:
$ curl -s -m 10 -D- -o /dev/null http://192.168.2.75:8189/system_stats
HTTP/1.1 403 Forbidden
Content-Type: text/plain
X-Proxy-Error: blocked-by-allowlist
Date: Thu, 10 Sep 2026 22:24:05 GMT
Connection: keep-alive
Keep-Alive: timeout=5
Transfer-Encoding: chunked
Response body: "Connection blocked by network allowlist"
2. Public hosts, from the cloud container (curl exit 28 / no response):
pypi.org 200
registry.npmjs.org 200
github.com 400 (reachable)
api.anthropic.com 404 (reachable)
huggingface.co 000
api.elevenlabs.io 000
www.google.com 000
docs.claude.com 000
support.claude.com 000
3. Agent proxy status endpoint (curl -sS "$HTTPS_PROXY/__agentproxy/status"):
{
"enabled": true,
"port": 36379,
"selective": false,
"standalone": false,
"toolScoped": false,
"noProxy": "localhost,127.0.0.1,::1,...,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,...",
"recentRelayFailures": [
{
"ts": "2026-09-10T22:29:33.957Z",
"kind": "connect_rejected",
"detail": "gateway answered 403 to CONNECT (policy denial or upstream failure)",
"host": "api.elevenlabs.io:443"
}
]
}
4. Python client, same host (vo.py calling the ElevenLabs API):
urllib.error.URLError: <urlopen error Tunnel connection failed: 403 Forbidden>
5. Forcing a direct connection past the proxy from the workspace VM:
$ curl -s --noproxy '*' -m 10 http://192.168.2.75:8189/system_stats
000 (no route)
Steps to Reproduce
I don't have a reliable trigger — it appeared mid-session with no change to settings, plan,
machine or connected folders. These are steps to observe the state, not to cause it.
- Start Cowork on macOS with the desktop app linked to the computer and a folder connected.
- In the cloud container, check a few hosts:
for h in pypi.org github.com huggingface.co api.elevenlabs.io www.google.com; do
echo "$h $(curl -s -m 8 -o /dev/null -w '%{http_code}' https://$h/)"
done
Observed: pypi 200, github 400 (reachable), huggingface / elevenlabs / google all 000.
- In the desktop workspace shell (device_bash), request any host on the local network:
curl -s -D- -o /dev/null http://<a-host-on-your-LAN>/
Observed: 403 with X-Proxy-Error: blocked-by-allowlist.
- Read the proxy's own status:
curl -sS "$HTTPS_PROXY/__agentproxy/status"
Observed: recentRelayFailures contains
"gateway answered 403 to CONNECT (policy denial or upstream failure)".
- Confirm the machine itself is fine — the same hosts respond normally from a normal terminal
on the same Mac.
- Confirm file access is unaffected — reading and writing files in the connected folder works
throughout.
Timeline on my machine: worked for several days, including earlier in the same session (a
github clone and HuggingFace API calls both succeeded that afternoon), then stopped at
approximately 21:30 UTC on 10 Sep 2026. A Mac reboot and a brand-new Cowork session both
reproduced the failure identically.
Claude Model
Opus
Is this a regression?
Yes, this worked in a previous version
Last Working Version
Cowork desktop app: 1.49585.0
Claude Code Version
v2.1.268
Platform
Anthropic API
Operating System
macOS
Terminal/Shell
Warp
Additional Information
_No response_
6 Comments
Second account, different machine, same night. Confirming this and adding three things that are not in the report above.
My Cowork session lost policy-proxy egress at about 22:25 UTC on Sep 10, an hour after your 21:30, after working normally for roughly 90 minutes earlier in the same session (it had been deploying to Firebase Hosting). Same signature throughout, including
gateway answered 403 to CONNECTinrecentRelayFailuresand the sameenabled: true, selective: false, standalone: false, toolScoped: false. I also confirm your brand-new-session result independently: a Cowork container created at 02:30 UTC, 47 seconds old when probed, failed identically.1. claude.ai chat sessions on the same account are unaffected
This is the part that seems most diagnostic. Same script, same account, two containers about 90 seconds apart:
Non-000 status codes mean CONNECT succeeded, which is what is being tested; the 404s are those endpoints answering without credentials. So this is scoped to Cowork rather than to the account, the plan, or upstream networking.
2. The environment's Network access setting has no effect
I have not seen this mentioned yet. The environment was on Trusted when the outage started. I changed it to Full, saved, got "Environment updated", and nothing changed, in either an existing or a brand new Cowork session.
raw.githubusercontent.comand*.googleapis.comare documented Trusted defaults and are refused.example.comis on no list and is refused identically. The effective host list behaves as empty rather than as narrowed, on both settings.3. The
noProxybypass list is now failing too, in newer containerspypi.organdregistry.npmjs.orgare in the proxy's own hard-codednoProxystring, so they should never reach the policy gateway. They return 200 in your report and in my long-lived session, which came up at 01:43 UTC. In a container created at 02:30 UTC they returned 403, arriving at the HTTP layer rather than at CONNECT.If that reproduces, the failure is getting worse over time rather than holding steady, and package installs are affected in newer containers as well.
Still working
GitHub is reachable from the blocked container:
api.github.comreturns 200 andgit ls-remotesucceeds whileexample.comis refused. MCP connectors also work, consistent with both being routed outside the session allowlist by design. That is currently the only route out, and I have had to rebuild a Firebase Hosting deploy to push to GitHub and let a GitHub Action do the Google-facing half.Environment
Linux 6.18.44-fc-v24Correction to point 3 in my comment above, and a re-test five and a half hours in.
The
noProxybypass hosts are fine. The 403s I reported frompypi.organdregistry.npmjs.orgwere specific to that one container at 02:30 UTC, not a progression. They are back to 200. Nobody should chase that.Re-tested at 04:05 UTC in a container 17 seconds old:
Underlying cause unchanged:
gateway answered 403 to CONNECT (policy denial or upstream failure). So the steady state is that the bypass list and GitHub work and everything through the policy gateway does not, which matches the "collapses to a handful of hosts" shape reported in #93525.Everything else in my earlier comment stands: chat sessions on the same account are unaffected, and the Network access setting makes no difference at Trusted or at Full.
Related open reports with the same signature, for whoever picks this up: #93507, #93512, #93520, #93525. The timelines cluster tightly. A scheduled task in #93507 ran clean at 22:09 UTC and failed after, the last good session in #93507 was 23:15 UTC, and mine broke at 22:25 UTC, across macOS and Windows and across personal and admin-managed accounts.
Same fingerprint here, tracked in #93507 (now 4 accounts: 3× macOS + 1× Windows, all breaking between ~21:30 and 23:15 UTC on 2026-09-10; one report has an hourly scheduled task giving a clean before/after at 22:16 → 23:10 UTC). Your
X-Proxy-Error: blocked-by-allowliston a LAN host is the clearest evidence so far that the "All domains" setting is being enforced as "package managers only" at session creation. Linking the two so triage can merge them.Same issue here last night. Searched and found this.
Resolved here as of 2026-09-11 23:27 UTC.
Full egress is back in a fresh Cowork cloud session, and the setting is being honoured:
example.comandcloudflare.comboth answer, not just the Trusted defaults.$HTTPS_PROXY/__agentproxy/statusreportsenabled: true, selective: falsewith zero recent relay failures. I also checked the real work rather than the host probe: a 9,409-byte file fetched clean off a.web.apphost, and the Firebase Hosting endpoints are reachable again.Outage window on this account: 2026-09-10 ~22:25 UTC to some point between 17:38 and 23:27 UTC on 09-11, so roughly 25 hours. My last confirmed-broken check was 17:38 UTC today, identical to the earlier failures.
Nothing changed on my side. I did not touch the Network access setting again, reinstall, or relink.
Worth someone from Anthropic confirming what changed and whether it can recur, since five accounts lost a day to this and the setting genuinely had no effect throughout. Leaving the issue open for that rather than closing it myself.
Full egress restored for me as well. Nothing changed on my side.