VDX's NOS - IPv4Address and Wildcard Mask do not work? A bug?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-21-2019 12:21 PM
hi everyone
I test a following ACL on a VE(10.5.8.254)
If I remove seq 10 & 11 then both hosts 10.5.8.97 & 10.5.8.49 loose connection to 10.5.8.254.
What do I miss here?
A bug?
many thanks, P.
I test a following ACL on a VE(10.5.8.254)
code:
ip access-list extended protect-10_5_8_0-VE
seq 10 permit ip host 10.5.8.97 host 10.5.8.254
seq 11 permit ip host 10.5.8.49 host 10.5.8.254
seq 20 permit ip 10.5.8.0 255.255.255.0 host 10.5.8.254
seq 21 permit tcp 10.5.8.0 255.255.255.0 host 10.5.8.254
seq 22 permit udp 10.5.8.0 255.255.255.0 host 10.5.8.254
seq 30 hard-drop ip any host 10.5.8.254
If I remove seq 10 & 11 then both hosts 10.5.8.97 & 10.5.8.49 loose connection to 10.5.8.254.
What do I miss here?
A bug?
many thanks, P.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-24-2019 08:03 PM
Please update the subnet mask to 0.0.0.255, then retry.
code:
ip access-list extended protect-10_5_8_0-VE
seq 10 permit ip host 10.5.8.97 host 10.5.8.254
seq 11 permit ip host 10.5.8.49 host 10.5.8.254
seq 20 permit ip 10.5.8.0 0.0.0.255 host 10.5.8.254
seq 21 permit tcp 10.5.8.0 0.0.0.255 host 10.5.8.254
seq 22 permit udp 10.5.8.0 0.0.0.255 host 10.5.8.254
seq 30 hard-drop ip any host 10.5.8.254
