How do I get IP of installed network printer

71,302

Solution 1

To expands on @JUH's solution above...

avahi-browse --all -t -r

Is the proper solution for autodiscover printers.

Unfortunately many printers simply don't expose their IP address in any usable form to you, the end user. This is by design. https://www.cups.org/doc/network.html

Most network printers support a protocol known as Bonjour, which is a combination of zero-configuration networking (ZeroConf), multicast DNS (mDNS), and DNS service discovery (DNS-SD) standards published by the Internet Engineering Task Force (IETF), the same group that defined TCP/IP and all of the networking we use today

Quoting the mDNS page:

When an mDNS client needs to resolve a hostname, it sends an IP multicast query message that asks the host having that name to identify itself. That target machine then multicasts a message that includes its IP address. All machines in that subnet can then use that information to update their mDNS caches. Any host can relinquish its claim to a name by sending a response packet with a time to live (TTL) equal to zero.

So to properly find the IP address of an mDNS printer, you'd need a tool capable of reading the cache.

Quoting one of the OP's comments:

Thanks. In my case, lpoptions shows indeed a lot of info, but not the IP. The concerned field looks like device-uri=hp:/net/hp_LaserJet_2420?zc=HP2420ROOMXXX, so again the same as what I get from GUI tools. So I assume the IP isn't stored in my machine...

This makes avahi-browse the best tool for the job... (or if you got here looking for a Mac utility, Apple offers one called dns-sd)

Quoting the Avahi page:

Avahi is a system which facilitates service discovery on a local network via the mDNS/DNS-SD protocol suite. This enables you to plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. Compatible technology is found in Apple MacOS X (branded "Bonjour" and sometimes "Zeroconf").

Avahi is primarily targetted at Linux systems and ships by default in most distributions. It is not ported to Windows at this stage, but will run on many other BSD-like systems. The primary API is D-Bus and is required for usage of most of Avahi, however services can be published using an XML service definition placed in /etc/avahi/services.

See also the nss-mdns project, which allows hostname lookup of *.local hostnames via mDNS in all system programs using nsswitch

Solution 2

Using lpoptions

lpoptions  -p <printer_name> | awk '{for (i=1; i<=NF; i++) {if ($i ~ /device-uri/) {print $i}}}'

Example

$ lpoptions  -p TOSHIBA_e-STUDIO2330C | awk '{for (i=1; i<=NF; i++) {if ($i ~ /device-uri/) {print $i}}}'
device-uri=socket://192.168.20.43

To get an overview lpinfo

Example

$ lpinfo -v | grep -P '://'
network dnssd://HP%20LaserJet%201022n._pdl-datastream._tcp.local/
network dnssd://TOSHIBA%20e-STUDIO2540C-07279076._printer._tcp.local/
network socket://192.168.20.201
network socket://192.168.20.203
network socket://192.168.20.204
network socket://192.168.20.205
network socket://192.168.20.206
network socket://192.168.20.207
network socket://192.168.20.43

or nmap

nmap -sT <adress_or_address_range>

and grep the service printer

Example

$ nmap -sT 192.168.20.43

Starting Nmap 6.47 ( http://nmap.org ) at 2015-07-03 08:38 CEST
Nmap scan report for 192.168.20.43
Host is up (0.0017s latency).
Not shown: 991 closed ports
PORT     STATE SERVICE
21/tcp   open  ftp
25/tcp   open  smtp
80/tcp   open  http
139/tcp  open  netbios-ssn
445/tcp  open  microsoft-ds
515/tcp  open  printer
631/tcp  open  ipp
8080/tcp open  http-proxy
9100/tcp open  jetdirect

Solution 3

According to the HP Laserjet 2400-series User Guide, the IP address is available on the control panel of the printer itself.

enter image description here

Solution 4

Look at the arp-scan command (similar to ip neigh). You will probably have to install it:

sudo apt-get install arp-scan

And to give further detail:

sudo arp-scan --interface=eth0 --localnet

Where eth0 is your device (or wlan0 or wlp2s0). You can find your device with ifconfig or:

ip -c addr

Or try installing nmap (sudo apt-get install nmap) and type nmap 192.168.1.0/24 substituting 192.168.1 with the first three parts of your ip address (find out using ip addr).

Solution 5

A bit late but this might help.

avahi-browse --all -t -r

Share:
71,302

Related videos on Youtube

kebs
Author by

kebs

Comic Sans hater

Updated on September 18, 2022

Comments

  • kebs
    kebs almost 2 years

    I have installed a network printer in my Ubuntu 14.04 machine by using system-config-printer. This GUI program offers a "Find network printer" function, that explores the local network. It returns a list of printers names, associated with IP adresses.

    So let's say I choose one and successfully install it.

    Now after a while I realize the one I installed is the wrong printer. So I do the process again, and... oh wait, there are several printers of same type (and name), with different IP adresses!

    Ok, no problem, lets just check the IP of the one I just installed, so I make sure I don't install the wrong one again. So the question is: how to I get the IP of an installed printer ?

    Apparently, the "properties" dialog (sample below) does not give access to this information (no, its not hidden in the URI line).

    No success either by using the CUPS webserver through http://localhost:631, it seems to be basically another way of getting the same information.

    Edit: the question isn't related to the printer below but is more general: as the OS is able to fetch the printer's IP at the network exploring step, I assume that information is stored somewhere. Where is it stored and how do I access it ? Or maybe it isn't stored anywhere ?

    printer properties dialog

  • kebs
    kebs about 9 years
    Thanks ;-) Wasn't exactly what I expected, but useful anyway. But isn't a way to get that from the OS ? The question wasn't specifically about that printer...
  • kebs
    kebs almost 9 years
    Thanks. In my case, lpoptions shows indeed a lot of info, but not the IP. The concerned field looks like device-uri=hp:/net/hp_LaserJet_2420?zc=HP2420ROOMXXX, so again the same as what I get from GUI tools. So I assume the IP isn't stored in my machine...
  • kebs
    kebs almost 9 years
    Tried nmap, does its job, but doesn't return the name/type of printer that is connected. I guess that's the best I can get.
  • kebs
    kebs almost 9 years
    For nmap, it doesn't return name/type of printer, thanks anyway.
  • kebs
    kebs almost 6 years
    Thanks, but... no (for me). It only shows how to reach the printer: protocol and URI, for example dnssd://HP%20ENVY%205XXXX. However, it clearly shows that the IP isn't stored and how reaching the device is done.
  • sudodus
    sudodus over 5 years
    +1 to this answer: @kebs, Running Lubuntu 18.04 LTS, I use the output from ip a to get the interface (in my case not eth0), and then the arp-scan command line (of this answer) outputs the IP address, the MAC address and the name of the identified devices.
  • sudodus
    sudodus over 5 years
    @kebs, I booted into a live drive made from the file lubuntu-14.04.1-desktop-i386.iso, and the arp-scan command line (of this answer) outputs the IP address, the MAC address and the name of the identified device also in this case. There must be something strange with your operating system.
  • kebs
    kebs over 5 years
    Thanks, but... as written in the question: no, its not hidden in the URI line.
  • Peter Flynn
    Peter Flynn about 5 years
    nmap is slow but gets there. You need to pick out the printer port, having memorised the immediately-preceding scan report IP address, eg $ nmap -sT 192.168.1.0/24 | awk '/report/ {ip=$5} /printer/ {print $1,ip}'
  • Simon Sudler
    Simon Sudler almost 5 years
    Hello and welcome to AskUbuntu. Can you please explain what the command and the switches are doing? Also a link to a manpage or something similar would be nice.
  • JUH
    JUH almost 5 years
    Hi, thanx, as far as I understand it lists network services available. source : systutorials.com/docs/linux/man/1-avahi-browse
  • dotancohen
    dotancohen over 2 years
    Thank you, this was the only command that returned the actual IP address of the device on the network.