|
This is a quick explanation of how to use a Linux box to configure a new
HP network printer.
- Get the printer's hardware/MAC address. The easiest way to do that is to
print the configuration page.
- Add a static route for 192.0.0.192 on the Linux box:
route add -host 192.0.0.192 eth0
- Add an arp table entry for that IP using the printer's hardware
address:
arp -s 192.0.0.192 hardwareaddress
- You should now be able to telnet to 192.0.0.192 and configure the
printer through its built in menu system. Put in the IP address and
remember to save the settings before exiting.
-
Remove the arp table entry and route:
arp -d 192.0.0.192
route del -host 192.0.0.192
|