Oct 10, 2008 #1 dhibsystel Technical User Joined Jan 30, 2007 Messages 254 Location TN I want to block telnet access to BD from @ IP 192.168.11.10 what is the ACL to implement ?
Oct 11, 2008 #2 Clip203 Technical User Joined Oct 11, 2008 Messages 13 Location US entry block_TELNET { if { protocol 6; source-address 192.168.11.10/32; destination-port 23; } then { deny; } } Protocol 6 is TCP Welcome Upvote 0 Downvote
entry block_TELNET { if { protocol 6; source-address 192.168.11.10/32; destination-port 23; } then { deny; } } Protocol 6 is TCP Welcome
Oct 13, 2008 Thread starter #3 dhibsystel Technical User Joined Jan 30, 2007 Messages 254 Location TN Is there a command CLI to put it ? Upvote 0 Downvote