[6bone] In the summer time, we got cleaning to do... Where is UUNET?
Jeroen Massar
jeroen@unfix.org
Thu, 1 Aug 2002 15:56:23 +0200
John Fraizer [mailto:tvo@EnterZone.Net] wrote:
> Border2-BGP(config)# ipv6 prefix-list test1 seq 30 permit
> 2002::/16 ge 16 le 48
> % Invalid prefix range for 2002::/16, make sure: len < ge-value <=
le-value
You could interpret that message as:
"PrefixLen" should be smaller than the greatest which should be
smaller/equal the smallest.
In this case:
16 < 16 <= 48
Your router bugs, it should do: 16 <= 16 <= 48
other-way-around logic: le <= prefixlen <= ge
or in this case: 16 <= 16 <= ge
Greets,
Jeroen