IPv6 address in regexp lookup tables

2011-06-07 Thread Wolfgang Zeikat
How would I specify all IPv6 addresses starting with 2001:638:700:1005 in a regexp table? Regards, wolfgang

Re: IPv6 address in regexp lookup tables

2011-06-07 Thread Wietse Venema
Wolfgang Zeikat: How would I specify all IPv6 addresses starting with 2001:638:700:1005 in a regexp table? /^2001:638:700:1005:/, assuming a /64 or smaller subnet. But I wonder why CIDR tables would not be a better solution. Wietse

Re: IPv6 address in regexp lookup tables

2011-06-07 Thread Wolfgang Zeikat
In an older episode, on 2011-06-08 01:21, Wietse Venema wrote: /^2001:638:700:1005:/, assuming a /64 or smaller subnet. Thank you, Wietse. I have realized that I actually need to match all IPv6 addresses starting with 2001:638:700:, but /^2001:638:700:/ works fine, too. Best regards,