Results 1 to 2 of 2

Thread: Using Xerox workstation over the network

  1. #1
    Join Date
    2013-Nov
    Posts
    14

    Exclamation Using Xerox workstation over the network

    guys , any body installed a printer or scanner on kali before? i have my workcenter connected directly to the router , using cups am able to print , but even with sane i cant control the scanner over the network , i tried every **** tutorial on the net and still no use.....help will be appreciated
    p.s: ok , now am able to use the scanner over usb but not over the network and this sux coz thats not practical at all

  2. #2
    Join Date
    2013-Aug
    Location
    Italy
    Posts
    65
    Quote Originally Posted by randvoo12 View Post
    guys , any body installed a printer or scanner on kali before? i have my workcenter connected directly to the router , using cups am able to print , but even with sane i cant control the scanner over the network , i tried every **** tutorial on the net and still no use.....help will be appreciated
    p.s: ok , now am able to use the scanner over usb but not over the network and this sux coz thats not practical at all
    I have a xerox printer and it works for me properly try to see if your printer model is supported
    what model you have ?? I have installed in this way
    Code:
     sudo adduser root scanner
    Code:
    sudo adduser root saned
    Code:
    apt-get install inetutils-inetd sane-utils
    Code:
    gedit /etc/inetd.conf
    add this line
    sane-port stream tcp nowait saned:saned /usr/sbin/saned saned
    save and exit
    Code:
    sudo gedit /etc/services
    see in the text if is present this line
    sane-port 6566/tcp sane saned # SANE network scanner daemon
    if is not present add here
    save and exit
    Code:
    sudo gedit /etc/default/saned
    set to yes to start saned
    RUN=yes
    save and exit
    Code:
    sudo gedit /etc/sane.d/saned.conf
    in text find and replace
    #data_portrange = 10000 - 10100
    in
    data_portrange = 10000 - 10100
    find
    ## Access list
    and add this line (in my case router have ip 192.168.1.1 change ip for your network )
    192.168.1.0/24
    127.0.0.1
    save and exit
    Code:
    sudo gedit /etc/sane.d/net.conf
    in text find and replace
    # connect_timeout = 60
    in
    connect_timeout = 60
    save and exit
    Code:
    sudo gedit /etc/sane.d/xerox_mfp.conf
    find in text
    #xerox_mfp.conf
    and replace whit
    xerox_mfp
    tcp wc3220 9400
    Code:
    service inetutils-inetd restart
    Code:
    sudo service saned restart
    Code:
    sane-find-scanner
    Code:
    scanimage -L
    if not work try to reboot
    and type again
    Code:
    sudo service saned restart
    Code:
    scanimage -L
    this and the only solution I can give you right now I hope it can help you if you have problems please do not hesitate to contact me
    Est modus in rebus
    cd /usr/bin/bad

Similar Threads

  1. Kali network problems on vmware workstation
    By Defiance in forum TroubleShooting Archive
    Replies: 0
    Last Post: 2022-01-14, 21:06

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •