IPv6 prefix lists
Is anyone familiar with IPv6 prefix lists...i'm trying to lab a scenario in GNS3 and i've come across a disparity between context sensitive help and what I can actually put in the router
The command i'm trying to enter (from the ROUTE FLG)
ipv6 prefix-list PREFIX_103 permit 103::/64 any
This is as far as I can get
ipv6 prefix-list PREFIX_103 permit 103::/64
context sensitive help doesn't show any of the commands past prefix list. been researching and this appears to be an 12.4T IOS bug. Cisco shows the following arguments for the prefix-list option:
ipv6 prefix-list list-name [seq seq-number] {deny ipv6-prefix/prefix-length | permit ipv6-prefix/prefix-length | description text} [ge ge-value] [le le-value]
Is the FLG just wrong? I checked the errata and it isn't listed.
The command i'm trying to enter (from the ROUTE FLG)
ipv6 prefix-list PREFIX_103 permit 103::/64 any
This is as far as I can get
ipv6 prefix-list PREFIX_103 permit 103::/64
context sensitive help doesn't show any of the commands past prefix list. been researching and this appears to be an 12.4T IOS bug. Cisco shows the following arguments for the prefix-list option:
ipv6 prefix-list list-name [seq seq-number] {deny ipv6-prefix/prefix-length | permit ipv6-prefix/prefix-length | description text} [ge ge-value] [le le-value]
Is the FLG just wrong? I checked the errata and it isn't listed.
Cisco was my first networking love, but my "other" router is a Mikrotik...
Comments
-
tiersten Member Posts: 4,505MississippiGuardsman wrote: »ipv6 prefix-list PREFIX_103 permit 103::/64 any
This is as far as I can get
ipv6 prefix-list PREFIX_103 permit 103::64
I just tried it with 12.4.15T8 and it works fine.Router(config)#ipv6 prefix-list PREFIX_103 permit 103::/64 ge 123 Router(config)#
-
srg Member Posts: 140ipv6 prefix-list PREFIX_103 permit 103::/64 should work. you cant have "any" there, just <cr> or specify ge or le
-
vinbuck Member Posts: 785 ■■■■□□□□□□You're missing the / there?
I just tried it with 12.4.15T8 and it works fine.Router(config)#ipv6 prefix-list PREFIX_103 permit 103::/64 ge 123 Router(config)#
Yeah...I had in the command but fat fingered it when i re-typed itCisco was my first networking love, but my "other" router is a Mikrotik... -
vinbuck Member Posts: 785 ■■■■□□□□□□ipv6 prefix-list PREFIX_103 permit 103::/64 should work. you cant have "any" there, just <cr> or specify ge or le
That's what i was trying to figure out...looks like the FLG has a typo. Thanks guys!Cisco was my first networking love, but my "other" router is a Mikrotik... -
tiersten Member Posts: 4,505MississippiGuardsman wrote: »Yeah...I had in the command but fat fingered it when i re-typed it
In that case then its what srg said and what you initially thought. Mistake in the FLG! -
vinbuck Member Posts: 785 ■■■■□□□□□□Sorry! Had to ask
In that case then its what srg said and what you initially thought. Mistake in the FLG!
Haha no worries...that's what I get for doing the lab on my laptop and posting the question on my desktop so that I can't cut and paste.Cisco was my first networking love, but my "other" router is a Mikrotik...