Hi,
Are you a Telstra Cable user who's suffering under those 
http://www/cable.. style web pages that Telstra insist on using?
Here's a little a fix I found that doesn't involve rewiring your DNS tables or anything horrible like that.
Download the cgi web proxy from 
http://www.jmarshall.com/tools/cgiproxy/.
(Its a great cgi based proxy to use anyway!)
In the source code, look for the subroutines called proxy_encode and proxy_decode.
Change them to the following:
sub proxy_encode {
    local($URL)= @_ ;
    $URL=~ s/\/www\//\/www.nsw.bigpond.net.au\//;
    $URL=~ s#^([\w+.-]+)://#$1/# ;                 # 
http://xxx -> http/xxx
#    $URL=~ s/(.)/ sprintf('%02x',ord($1)) /ge ;   # each char -> 2-hex
#    $URL=~ tr/a-zA-Z/n-za-mN-ZA-M/ ;              # rot-13            
    return $URL ;
}
sub proxy_decode {
    local($PATH_INFO)= @_ ;
#    $PATH_INFO=~ tr/a-zA-Z/n-za-mN-ZA-M/ ;        # rot-13
#    $PATH_INFO=~ s/([0-9A-Fa-f]{2})/ sprintf("%c",hex($1)) /ge ;
    $PATH_INFO=~ s#^([\w+.-]+)/#$1://# ;           # http/xxx -> 
http://xxx    $URL=~ s/\/www\//\/www.nsw.bigpond.net.au\//;
    return $PATH_INFO ;
}
If you stick the proxy program in an ibay (along with chmoding the right permissions),run the CGI program from your web browser (eg. .../ibay/nph-proxy.cgi), type '
www.telstra.com' into the program's URL section and hit go: You're off!
I know it's not the best possible fix... but I found it easy.
Regards,
Luke