You're having firewall problems, eh?
You're at a client's, at work, or in a hotel that has restrictive firewalling rules. Perhaps you find yourself unable to use IRC.
IRC
Our IRC server listens on both ports irc://irc.codehaus.org:6667 and irc://irc.codehaus.org:7776. Additionally, an HTTP-based client is available at http://irc.codehaus.org/
SSH
If you can't ssh out of your location, you can also attempt to connect on port 443, which will generally get through as it masquerades as HTTP-over-SSL traffic, which proxies can't touch.
If you wanna do a CVS checkout, I found that the following script worked (save as ssh443)
#!/bin/sh ssh -p 443 $*
Then do
export CVS_RSH=ssh443
and perform your CVS checkout as normal and it works.
