-
Notifications
You must be signed in to change notification settings - Fork 87
MacIP Gateway
As of Netatalk 4.0.0, we bundle Stefan Bethke's macipgw daemon in our tarball, enabling you to build and launch it as any other Netatalk daemon.
The macipgw
daemon provides a MacIP gateway that allow old Macs to use the MacIP network stack to access TCP/IP resources from a LocalTalk network.
Previously, macipgw
was a stand-alone daemon that linked against Netatalk's libatalk shared library to access the AppleTalk stack and atalkd
network management daemon.
In order to use the Mac IP gateway, you need to configure a network tunnel and IPv4 packet forwarding.
On Linux, this can be done with f.e. iptables or nft. On *BSD you can use pf or npf. You may need to set up NAT (Network Address Translation) .
When launching macipgw
, choose a subnet address and mask that doesn't conflict with the rest of your network. For the nameserver, you can use your own or a public DNS server such as Google's (8.8.8.8
and 8.8.4.4
).
If you want to see debug information, launch it with an appropriate debug flag with -d
, example below that enables all debug logging.
macipgw -d0x111 -n 8.8.8.8 192.168.151.0 255.255.255.0
Make sure your Mac has MacTCP or Open Transport installed. From for instance the TCP/IP control panel, choose the "MacIP" network stack. Let the server assign the IP address. Pick the correct AppleTalk zone if the server is defining one.
Once both the server and client have synchronized with the AppleTalk network, you should see both of them represented in the NBP cache, f.e.:
$ nbplkup
192.168.151.1:IPGATEWAY 65280.21:72
alien:TimeLord 65280.21:129
alien:AFPServer 65280.21:128
alien:netatalk 65280.21:4
alien:Workstation 65280.21:4
192.168.151.2:IPADDRESS 65280.177:72
rescue:AFPServer 65280.177:253
rescue:Workstation 65280.177:4
When the gateway and tunnel are up and running, you should be able to browse the web or access an AFP-over-TCP server from the Mac.
The Linux kernel has a feature called IPDDP which unfortunately filters out the traffic that the MacIP gateway relies on. This feature was removed from the Linux kernel in version 6.7. If you are using an earlier version, you need to recompile your kernel with IPDDP disabled. Later versions of the kernel should work out of the box.
- macipgw manual page
- Example of NAT configuration on Debian Linux, from A2SERVER
Resources
OS Specific Guides
- Installing Netatalk on Alpine Linux
- Installing Netatalk on Debian Linux
- Installing Netatalk on Fedora Linux
- Installing Netatalk on FreeBSD
- Installing Netatalk on macOS
- Installing Netatalk on NetBSD
- Installing Netatalk on OmniOS
- Installing Netatalk on OpenBSD
- Installing Netatalk on OpenIndiana
- Installing Netatalk on openSUSE
- Installing Netatalk on Solaris
- Installing Netatalk on Ubuntu
Technical Docs
- CatalogSearch
- Kerberos
- Special Files and Folders
- Spotlight
- AppleTalk Kernel Module
- Print Server
- MacIP Gateway
Development