| ▲ | yjftsjthsd-h 2 hours ago | |||||||||||||||||||||||||
> In order to disambiguate what's the host and what's the port, you typically format the IPv6 address in square brackets, so fe80::4 on port 80 would look like this: > [fe80::4]:80 I really do wish they'd just stuck with dots. Or if we must upend things, commit to the bit and change the character to separate ports. | ||||||||||||||||||||||||||
| ▲ | sedatk an hour ago | parent | next [-] | |||||||||||||||||||||||||
> I really do wish they'd just stuck with dots Then it would get confused with domain names (e.g. babe.cafe). | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||
| ▲ | an hour ago | parent | prev | next [-] | |||||||||||||||||||||||||
| [deleted] | ||||||||||||||||||||||||||
| ▲ | anyfoo an hour ago | parent | prev [-] | |||||||||||||||||||||||||
Yeah. I think that's actually my one, biggest gripe about IPv6, those damn colons. And those damn brackets that were made to mitigate the colons, that just cause more problems: Just yesterday I tried to use rsync (like I do all the time, in my mind there's no reason to use scp when rsync does everything better), but this time I needed to specify an IPv6 address. On the (admittedly ancient) rsync version that comes with macOS, this doesn't work: rsync foo 'user@[fe80::4]:/tmp' Note already, how I had to put the second argument in quotes, because otherwise the shell tries to expand the square brackets as filename expansion. But even then rsync just complains, because rsync itself separates host from path through colon. I think the only workaround is to do something like `rsync -e 'ssh user@[fe80::4] ...'`... but I just used an updated rsync from homebrew, which is of course the saner method. Still, just another colon/bracket-caused issue. | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||