ipv6 fetch operation fails

Hi,

I try to fetch a file using the ipv6 address and I get the following error.

Code:
server2# fetch [url]http://10.2.8.2/ganesha.jpg[/url]
ganesha.jpg                                   100% of   70 kB 7797 kBps
server2# fetch [url]http://3fff::251/ganesha.jpg[/url]
fetch: [url]http://3fff::251/ganesha.jpg:[/url] parse error
server2# fetch -6 [url]http://[3fff::251]/ganesha.jpg[/url]
fetch: No match.
server2# fetch [url]http://[3fff::251]/ganesha.jpg[/url]
fetch: No match.

Doesn't fetch work with v6 or is the syntax wrong?
Thanks
Arvind
 
It's likely a shell escaping issue. Try
Code:
$ fetch -6 http://[::1]/
or
Code:
$ fetch -6 http://\[::1\]/
 
Back
Top