UNSOLVED

rblumenthal

updated

18 years ago

R

rblumenthal

11 Posts

0

64078

January 7th, 2009 08:00

disable telnet on powerconnect 5324

I am looking to disable telnet access on the powerconnect 5324 switches but having trouble figuring it out. Thanks

  • Zitibake

    68 Posts

    807

    0

    Posted January 10th, 2009 08:00

    I believe you're looking for

    http://www.dell.com/downloads/global/products/pwcnt/en/app_note_14.pdf

    or the "management access-list" command from

    https://supportapj.dell.com/support/edocs/network/54XX/en/CLI/HTML/manageme.htm

    The following should permit https, snmp and ssh from 192.168.2.0/24, and no telnet from anywhere.

    management access-list no-telnet-please
    permit ip-source 192.168.2.0 mask 255.255.255.0 service https
    permit ip-source 192.168.2.0 mask 255.255.255.0 service snmp
    permit ip-source 192.168.2.0 mask 255.255.255.0 service ssh
    deny service telnet
    deny service https
    deny service snmp
    deny service ssh
    exit
    management access-class no-telnet-please
    exit

  • rblumenthal

    11 Posts

    807

    0

    Posted January 13th, 2009 10:00

    i did that and it still accepts telnet. any reason why that would be?

  • rblumenthal

    11 Posts

    807

    0

    Posted January 15th, 2009 07:00

    Got it working, thanks!