In order to create an access list with course address of the range 192.168.1.5 - 13 you need to brake it up in three conditions:
Forth octet
000001 01 192.1668.1.5
000001 10 192.1668.1.6
000001 11 192.1668.1.7
Wildcard mask = 0.0.0.3
000010 00 192.1668.1.8
000010 01 192.1668.1.9
000010 10 192.1668.1.10
000010 11 192.1668.1.11
Wildcard mask = 0.0.0.3
0000110 0 192.168.1.12
0000110 1 192.168.1.13
Wildcard mask = 0.0.0.1
So, your access list:
access-list 1 permit 192.168.1.5 0.0.0.3
access-list 1 permit 192.168.1.8 0.0.0.3
access-list 1 permit 192.168.1.12 0.0.0.1
Hope this helps,
Chris
Don't forget to rate all posts!