To start, in PaperCut MF go to Print Deploy (Enable Printing > Print Deploy) and click Add zone. The Add zone popup is displayed:
-
In Zone name, type a name that clearly reflects, from a SysAdmin’s perspective, where the zone is (e.g. Building 1).
-
In Display name, type a name that makes it easy for the users to know where the zone is (e.g. Main Admin Office).
-
Select the IP range you require:
-
All IP addresses - don’t restrict access to print queues based on an IP address. Use this option if you want to allow access to all computers.
-
Selected range - specifies one or more IP subnets (CIDR) or IP address ranges. You would use a selected range if, for example, you want to set up a zone for each campus or building, and restrict access to print queues outside of that campus or building.
If you selected Selected range, enter your IP range in one of the following formats:
- CIDR, for example,
10.100.10.0/24
- IP address range, for example,
10.100.10.0-10.100.10.254
- CIDR, for example,
-
-
If you want to add multiple IP ranges, click Add new and repeat the above steps.
-
Decide which users to include in the zone. Select:
-
All users - all users in PaperCut NG/MF.
-
Selected user groups - Select which PaperCut NG/MF groups you want to include. If you have a long list of groups, use the filter to fine tune it.
-
-
Decide which computers to include in the zone:
-
All computers - all computers using Print Deploy.
-
Computers matching this regex - Add a customised regex expression and validate it with the test hostname field. (see below for some examples )
-
-
Click Save. Your new zone is added to the list of zones on the Print Deploy page.
What’s next?
Set up Print Deploy for your environment. Choose one of the following:
- Set up Print Deploy in a print server environment
- Set up Print Deploy in a print serverless (Direct Print) environment
Hostname Regex examples
Regex expression | Description | Example Matches | Example Non Matches |
---|---|---|---|
.* | Default expression that matches all computers | All computers | N/A |
laptop | Matches any hostname with laptop anywhere in it | laptop laptop-01 staff-laptop 2020laptop02 | desktop-01 notebook-01 2020lapt02 |
^staff | Matches any hostname starting with staff | staff-laptop staff-desktop staff-johncitizen | laptop-01 john-staff |
(^lab-a1|^lab-a2) | Matches any hostname starting with lab-a1 OR lab-a2 | lab-a1-01 lab-a2-25 lab-a1 | lab-a3-01 floor-01-lab-a101 lab_a1_01 |
^laptop-01$ | Matches one hostname | laptop-01 | All other variants |
(?i)janescomputer | Case insensitive matching allowed | JanesComputer JANESCOMPUTER janescomputer | BobsComputer Janes-Computer |
^(computer1|computer2|computer3|computer4)$ | A simple list of computer names | computer1 computer2 computer3 computer4 | J8JBP99 lab_a1_01 |
Comments