RE: A different Wildcard Mask [1:2082]

2001-02-23 Thread COULOMBE, TROY
Alright, Coming out of "lurker mode" . ;-) http://www.cisco.com/univercd/cc/td/doc/cisintwk/ics/cs003.htm#xtocid2185611 There are two and a half (2.5) answers at the bottom (in cut/paste mode) pending further clarification: Exclamation points are of course (of course!) comments and can be cut/

Re: A different Wildcard Mask [1:2082]

2001-02-23 Thread W. Alan Robertson
Allow 172.17.2.64 0.0.0.63 to telnet, or deny 172.17.2.96 0.0.0.63... You are simply shifting 1 more bit to the right in the netmask... Whenever we are dealing with Half of a subnet range, we can simply shift 1 bit in the subnet mask. Your access-list is not aware of what the real subnet is. I

Re: A different Wildcard Mask [1:2082]

2001-02-23 Thread W. Alan Robertson
y, February 23, 2001 2:58 PM Subject: Re: A different Wildcard Mask [1:2082] > Allow 172.17.2.64 0.0.0.63 to telnet, or deny 172.17.2.96 0.0.0.63... > > You are simply shifting 1 more bit to the right in the netmask... Whenever we > are dealing with Half of a subnet range, we can simply

Re: A different Wildcard Mask [1:2082]

2001-02-23 Thread Mike Fountain
Try this -> Look at the bits in the last octet 96 = 0110 127 = 0111 The common bits are the first three, so you want to mask it like this -> 0001 or, 31 65 = 0101 95 = 0101 The common bits are again the first bits, so again the mask is -> 0001 or 31 So, your list