Infinite Mac can connect multiple emulator instances over a virtual AppleTalk network, enabling classic features like AppleShare file sharing and AppleTalk-based multiplayer games to work across separate browser tabs or even separate computers. Networking is zone-based: instances that share the same zone name are bridged together, while instances in different zones are fully isolated.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/mihaip/infinite-mac/llms.txt
Use this file to discover all available pages before exploring further.
AppleTalk networking is only supported by Basilisk II and SheepShaver. Other emulators (Mini vMac, DingusPPC, Previous, PearPC, Snow) do not support AppleTalk.
How it works
When a zone name is configured, each emulator instance creates aCloudflareWorkerEthernetProvider. This provider opens a WebSocket connection to:
init message with its MAC address when the connection opens, then send messages carrying the destination address and packet payload. Incoming frames arrive as receive messages and are passed directly to the emulator’s networking subsystem.
If the WebSocket connection drops, CloudflareWorkerEthernetProvider automatically reconnects after a one-second delay and replays any buffered outgoing messages.
Joining a named zone
Via URL parameter
Append?appleTalk=<zone-name> to any Basilisk II or SheepShaver session URL:
appleTalk value) will be joined to the same virtual network.
Via the custom configuration dialog
- Open the custom configuration dialog by clicking Customize… on a disk tile or navigating to
/run. - Select a system disk and machine that support AppleTalk (any Basilisk II or SheepShaver-backed release).
- In the Advanced section, check Enable AppleTalk and enter a zone name in the text field.
- Click Run.
Practical use cases
AppleShare file sharing
Run AppleShare or Personal File Sharing on one instance. Other instances on the same zone will see the shared volume in the Chooser and can mount it for read/write access.
Multiplayer games
Many classic Mac games (Marathon, Bolo, Spectre, and others) support AppleTalk network play. Join the same zone and open a network game from within the game itself.
AppleTalk printing
Services that expose a printer via AppleTalk will appear in the Chooser on all connected instances, enabling cross-instance printing (to virtual printers or real networked ones if bridged).
LocalTalk messaging
Applications like Talk and NetPresenz that use AppleTalk for messaging will discover peers automatically within the same zone.
BroadcastChannel provider (local/dev)
For local testing within the same browser page, Infinite Mac includes aBroadcastChannelEthernetProvider. Instead of a WebSocket, it uses the browser’s BroadcastChannel API on a channel named "ethernet". All emulator instances in the same browser origin that share this channel can exchange Ethernet frames without any server involvement.
This provider is activated via the broadcast_channel_ethernet=true URL parameter and is intended for development and testing, not production use.