question on acl [7:75258]

2003-09-11 Thread Yong Wee
Hi, How do you write an ext acl to block telnet access from even addresses in subnet 192.168.2.0/24 (i.e, .2, .4, .6 etc) to server 192.168.1.254? thks, yongwee Message Posted at: http://www.groupstudy.com/form/read.php?f=7i=75258t=75258 --

RE: question on acl [7:75258]

2003-09-11 Thread Salvatore De Luca
Here is an example of a named ACL to Block Specific even HOST sources to destination port 23 to the address you specified. You can use: ip access-list extended BLOCK_TELNET_EVEN deny tcp 192.168.2.0 0.0.0.254 host 192.168.1.254 eq telnet permit ip any any Just practice and play

RE: {Spam?} question on acl [7:75258]

2003-09-11 Thread Robert Perez
, September 11, 2003 11:34 AM To: [EMAIL PROTECTED] Subject: {Spam?} question on acl [7:75258] Hi, How do you write an ext acl to block telnet access from even addresses in subnet 192.168.2.0/24 (i.e, .2, .4, .6 etc) to server 192.168.1.254? thks, yongwee **Please support GroupStudy

RE: {Spam?} question on acl [7:75258]

2003-09-11 Thread Salvatore De Luca
aware of. -Original Message- From: Yong Wee [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 11:34 AM To: [EMAIL PROTECTED] Subject: {Spam?} question on acl [7:75258] Hi, How do you write an ext acl to block telnet access from even addresses in subnet

RE: {Spam?} question on acl [7:75258]

2003-09-11 Thread Reimer, Fred
PROTECTED] Subject: RE: {Spam?} question on acl [7:75258] You would have to do each host individually as: access-list 110 deny tcp host 192.168.2.2 host 192.168.1.254 eq 23 You cannot choose only even addresses with any kind of command. Atleast not that I am aware of. -Original Message