Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,21 @@ Both modes use efficient server-side device listing (4-5 API calls regardless of
}
```

## Network proxy

`asbmutil` honors the macOS system proxy / PAC by default — no configuration needed in most managed environments.

For headless or container use you can also set the standard env vars:

```bash
export HTTPS_PROXY=http://proxy.corp.example:8080
export NO_PROXY=*.internal.example,localhost
```
Comment on lines +622 to +625

`HTTPS_PROXY` is preferred (all API traffic is HTTPS); `HTTP_PROXY` is honored as a fallback. `NO_PROXY` is matched against the auth host (`account.apple.com`) and the scope-specific API host (`api-business.apple.com` or `api-school.apple.com`); if every host is bypassed, the env-var proxy is skipped and the system proxy applies. Lowercase variants (`https_proxy`, etc.) work too.

Proxies that require authentication should rely on system credentials (Negotiate/Kerberos via macOS); embedded `user:pass@` in the proxy URL is not currently extracted.

## Requirements

* macOS 14 or newer
Expand Down
Loading
Loading