Jack Knowlton put forth on 8/15/2010 4:53 PM: > Is it possible to store a CIDR access table on a mysql database?
I'm pretty sure the answer is, NO. The solution to your problem is sticking the Postfix access table files you want shared across your MX farm on an NFS/CIFS server and mounting the share into, say, the directory /etc/postfix/tables on each MX host. "man 5 cidr_table" You will need to automount the remote NFS/CIFS share at boot, so you'll need to add an entry to fstab, use autofs, or execute a startup script with the appropriate mount command. I'd recommend doing it via fstab, appending an entry such as this to the bottom of the /etc/fstab file: nfsserver_ip:/postfix-access-files /etc/postfix/tables nfs See your operating system's documentation for mounting remote nfs filesystems via fstab. -- Stan