I've been kicking around some ideas about the best way to provide the ability to 'recover' a hosted linux installation without the need for a traditional console (ie VNC to the console or IPKVM).
Consoles are traditionally rather difficult to deliver over the internet in a way that's fast and secure. Some solutions that others have come up with include serial console hooked into a server that can do ajax-based delivery of the text on the serial console. That's a cool implementation that I like but seems really intensive to implement.
My most recent idea for easy remote recovery of a hosted VPS is this: dismount the hard drive from the VPS that requires recovery. Re-mount that drive as a secondary disk on a linux VPS that is running fine, ie, with net connectivity. Once the disk is mounted, use a chrooted SSH session to allow the owner of the broken VPS to remotely log in and fix their configuration files. This seems really elegant to me in that we can provide SSH access to the disk itself and allow the owner to recover network settings, without any crazy need for serial consoles, etc.