-1

I'm trying to reverse-engineer the protocol used by HP ePrint. For some reason the printer responds with an error when I override the DNS to point to my own local server, so I decided to create a static routing entry on the router to send traffic headed for the ePrint IP (15.240.60.112) through my server (192.168.1.13). Of course, my server doesn't know what to do with traffic intended for that IP, so (I'm assuming) it drops the packets. What I want to do is have Apache respond to those packets as if they were intended for 192.168.1.13 using a self-signed SSL certificate, which the printer hopefully won't treat differently. How can I set this up?

Sparkette
  • 111

1 Answers1

1

I figured it out on my own.

All I did was ifconfig eth0 add 15.240.60.112 on the server to tell it to respond on that IP as well. My virtual host is set to respond on *:443, so it will respond on any IP it gets packets addressed to.

Sparkette
  • 111