Add support for Epson Network Scanner.
This commit is contained in:
@ -38,6 +38,17 @@ standard_vpn_port=1194
|
||||
standard_whois_port=43
|
||||
standard_xymon_port=1984
|
||||
|
||||
|
||||
# - Brother (brscan)
|
||||
# -
|
||||
standard_brother_brscan_port=54921
|
||||
|
||||
|
||||
# - Epson Network Scan
|
||||
# -
|
||||
standard_epson_network_scan_port=1865
|
||||
|
||||
|
||||
# - IPsec - Internet Security Association and
|
||||
# - Key Management Protocol
|
||||
standard_isakmp_port=500
|
||||
|
@ -1151,7 +1151,19 @@ printer_ips=""
|
||||
# - Blank seoarated list
|
||||
# -
|
||||
brother_scanner_ips=""
|
||||
brscan_port=54921
|
||||
brscan_port="$standard_brother_brscan_port"
|
||||
|
||||
# ======
|
||||
# - Epson Network Scan
|
||||
# ======
|
||||
|
||||
# - IP Adresses Epson Network Scanner
|
||||
# -
|
||||
# - Blank seoarated list
|
||||
# -
|
||||
epson_scanner_ips=""
|
||||
epson_scan_port="$standard_epson_network_scan_port"
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1126,7 +1126,18 @@ printer_ips=""
|
||||
# - Blank seoarated list
|
||||
# -
|
||||
brother_scanner_ips=""
|
||||
brscan_port=54921
|
||||
brscan_port="$standard_brother_brscan_port"
|
||||
|
||||
# ======
|
||||
# - Epson Network Scan
|
||||
# ======
|
||||
|
||||
# - IP Adresses Epson Network Scanner
|
||||
# -
|
||||
# - Blank seoarated list
|
||||
# -
|
||||
epson_scanner_ips=""
|
||||
epson_scan_port="$standard_epson_network_scan_port"
|
||||
|
||||
|
||||
|
||||
|
@ -404,6 +404,14 @@ for _ip in $brother_scanner_ips ; do
|
||||
brother_scanner_ip_arr+=("$_ip")
|
||||
done
|
||||
|
||||
# ---
|
||||
# - IP Adresses Epson Network Scanner
|
||||
# ---
|
||||
declare -a epson_scanner_ip_arr
|
||||
for _ip in $epson_scanner_ips ; do
|
||||
epson_scanner_ip_arr+=("$_ip")
|
||||
done
|
||||
|
||||
# ---
|
||||
# - IP Addresses PCNS Server
|
||||
# ---
|
||||
|
Reference in New Issue
Block a user