I changed my network subnet from 192.168.1.0
to 10.10.10.0
, but some rogue process is trying to hit port 9100
on 192.168.1.145
I have tried sudo lsof -n | grep TCP | grep 9100
with no luck.
I have also tried sudo netstat -nlpt | grep 192.168.1.145
without luck.
My conclusion is that this isn't working because of the fact that the connection is not being established.
Besides waitig for a complete search for the ip in all files (sudo grep -Ril -e ´192.168.1.145´ * 2>/dev/null
) to finish, or setting up some sort of dummy nic/ or a nc
and route to let it connect to, what else can I do to find the process causing this.
I have checked that cups is not installed.
Update
It turned out i had misread the IP and it was an old printer installed on a windows machine. uninstalling that fixed it