First ...
... make it clear what @LOCAL means:
The @LOCAL line @LOCAL not exactly a variable - in the context of the CUPS configuration (/etc/cups/cupsd.conf) it is called a macro. You can use more macros: @IF , @GROUP , @ACL , @OWNER and @SYSTEM .
The @LOCAL macro was introduced in CUPS with version 1.1.15. The corresponding CHANGELOG entry reads:
- The Allow, Deny, BrowseAllow, BrowseDeny, and BrowseAddress directives now support the network interface names "@LOCAL" and "@IF(name)" for access control and browsing based on the current interface addresses instead of fixed names or IP addresses.
In other words: before introducing it into the CUPS code base, you had to hard-code the current host IPs in cupsd.conf . After that, you had the opportunity to simply write @LOCAL or @IF(eth0) or @IF(wlan1) in cupsd.conf , and CUPS will use the current IP address ( all local IP addresses if the field has several!), Even if he has changed. (Addresses for PPP / dialup connections are not considered local IP addresses ...)
Second...
... see why you can see the differences:
Without access to the full configuration of CUPS and network devices of both of your two machines, it is impossible to answer the question.
Perhaps one server has more network interfaces and / or more different IP addresses than others (for example, using the eth0:1 trick to use an additional virtual network interface).
You may also have stumbled upon a mistake in one of the two incarnations of CUPS of your machines.
source share