[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[6bone] In the summer time, we got cleaning to do... Where is UUNET?



John Fraizer [mailto:[email protected]] 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