Non-recommended #OpenSSH tip du jour:
If you have to do as much SSH tunneling as I am doing to investigate this insane network form hell, clearing out the SSH Host Key entries from ~/.ssh/known_hosts gets old fast.
I know I shouldn't do this, but I'm doing it anyways. I've added this to my ~/.ssh/config file:
Host 127.0.0.1
UserKnownHostsFile=/dev/null
StrictHostKeyChecking=no
Essentially, if I am SSH tunneling, i don't store the key, and I don't ask about the key.
Hopefully, I remember to remove this once I finish unfucking this network.