192 |
- |
1 |
### magicolor.conf
|
|
|
2 |
###
|
|
|
3 |
### here are some examples for how to configure the Magicolor backend
|
|
|
4 |
|
|
|
5 |
### Timeout settings: SNMP autodetection, Scan data read requests and other
|
|
|
6 |
### read requests. All values are given in milliseconds,
|
|
|
7 |
### i.e. 1000 is 1 second.
|
|
|
8 |
|
|
|
9 |
# SNMP auto-detection waits 1.5 seconds
|
|
|
10 |
snmp-timeout 1500
|
|
|
11 |
|
|
|
12 |
# wait 15 seconds for scan data (color scans take ~6 seconds to initialize,
|
|
|
13 |
# so we need to wait longer than that)
|
|
|
14 |
scan-data-timeout 15000
|
|
|
15 |
|
|
|
16 |
# Wait 5 seconds for all other data requests
|
|
|
17 |
request-timeout 5000
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
### Network: Format is "net IP_ADDRESS [USB_ID]" or "net autodiscovery"
|
|
|
21 |
### if USB_ID is left out, SNMP is used to detect the device type
|
|
|
22 |
|
|
|
23 |
net autodiscovery
|
|
|
24 |
#net 10.0.0.5
|
|
|
25 |
|
|
|
26 |
### The following is a magicolor 1690mf with explicit IP-Address
|
|
|
27 |
#net 10.0.0.5 0x2098
|
|
|
28 |
# net 192.168.0.1
|
|
|
29 |
|
|
|
30 |
### USB: format is "usb" for automatic (libusb) discovery, based on USB IDs,
|
|
|
31 |
### or "usb <vendor ID> <device ID> to force the use of a particular
|
|
|
32 |
### device (the backend has some additional checks and will not use
|
|
|
33 |
### non-KONICA MINOLTA devices, though)
|
|
|
34 |
|
|
|
35 |
usb
|
|
|
36 |
|
|
|
37 |
### For libusb support for unknown scanners use the following command
|
|
|
38 |
### usb <product ID> <device ID>
|
|
|
39 |
### e.g.:
|
|
|
40 |
|
|
|
41 |
# usb 0x132b 0x2098
|
|
|
42 |
|