kodakaio.conf 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. ### kodakaio.conf
  2. ###
  3. ### here are some examples for how to configure the kodakaio backend
  4. ### Timeout settings: SNMP autodetection, Scan data read requests and other
  5. ### read requests. All values are given in milliseconds,
  6. ### i.e. 1000 is 1 second.
  7. # snmp-timeout controls auto-detection timeout in ms (1500=1.5s).
  8. snmp-timeout 2000
  9. # scan-data-timeout controls the timeout for scan data
  10. # (scans may take several seconds to initialize, so we need to wait longer)
  11. scan-data-timeout 10000
  12. # request-timeout controls all other data requests
  13. request-timeout 5000
  14. ### Network: Format is "net IP_ADDRESS [USB_ID]" or "net autodiscovery"
  15. ### if USB_ID is left out, SNMP is used to detect the device type
  16. ### Currently autodiscovery seems to not work
  17. ### So always use "net IP_ADDRESS [USB_ID]" as shown below
  18. ### You can find the printer's IP address on its control panel
  19. ### There is a list of USB_IDs at the end of this file
  20. net autodiscovery
  21. ### The following is a kodak HERO 9.1 with explicit IP-Address
  22. #net 10.0.0.5 0x4067
  23. # kodak ESP5250 is usb 0x040a 0x4041
  24. #net 192.168.1.2 0x4041
  25. # kodak HERO 9.1 is usb 0x040a 0x4067
  26. #net 192.168.1.17 0x4067
  27. ### USB: format is "usb" for automatic (libusb) discovery, based on USB IDs,
  28. ### or "usb <vendor ID> <device ID> to force the use of a particular
  29. ### device (the backend has some additional checks and will not use
  30. ### non-kodak devices, though)
  31. usb
  32. ### For libusb support for unknown scanners use the following command
  33. ### usb <product ID> <device ID>
  34. ### e.g.:
  35. # kodak ESP5250 is usb 0x040a 0x4041
  36. #usb 0x040a 0x4041
  37. # kodak HERO 9.1 is usb 0x040a 0x4067
  38. #usb 0x040a 0x4067
  39. ### List of USB device IDs
  40. # 0x4059, /* kodak ESP 2150 */
  41. # 0x4066, /* kodak ESP 2170 */
  42. # 0x4043, /* kodak ESP 3200 */
  43. # 0x4031, /* kodak ESP 3300 */
  44. # 0x4053, /* kodak ESP 4100 */
  45. # 0x4028, /* kodak ESP 5000 */
  46. # 0x4025, /* kodak ESP 5100 */
  47. # 0x4041, /* kodak ESP 5200 */
  48. # 0x4026, /* kodak ESP 5300 */
  49. # 0x4027, /* kodak ESP 5500 */
  50. # 0x4054, /* kodak ESP 6100 */
  51. # 0x4056, /* kodak ESP 7200 */
  52. # 0x4065, /* kodak ESP 9200 */
  53. # 0x4032, /* kodak ESP 5 */
  54. # 0x403E, /* kodak ESP 7 */
  55. # 0x403F, /* kodak ESP 9 */
  56. # 0x4057, /* kodak ESP C110 */
  57. # 0x4058, /* kodak ESP C115 */
  58. # 0x405D, /* kodak ESP C310 */
  59. # 0x405E, /* kodak ESP C315 */
  60. # 0x4060, /* ADVENT WiFi AIO AW10 */
  61. # 0x406D, /* kodak Hero 3.1 */
  62. # 0x4064, /* kodak Hero 5.1 */
  63. # 0x4062, /* kodak Office Hero 6.1 */
  64. # 0x4063, /* kodak Hero 7.1 */
  65. # 0x4067, /* kodak Hero 9.1 */