Start a Conversation

Solved!

Go to Solution

1 Rookie

 • 

16 Posts

133

September 12th, 2022 12:00

Remote access to Switch 6224F and 3524

I appreciate your help before hand in helping me to configure the switch dell  6224F and 3524 to remote access via telnet ssh using putty. I have already followed the others threads found on this community but still no luck 

I have enable admin and password level 15 I have also assign an ip address to vlan 1 but not still have a message from putty saying connection refused. 

Moderator

 • 

5.1K Posts

September 12th, 2022 23:00

Hi,
Connect to the switch via CLI
To enable SSH, enter the following commands:
console> enable
console# config
console(config)# crypto key generate rsa
console(config)# crypto key generate dsa
console(config)# ip ssh server

To enable HTTPS, enter the following commands"
console(config)# crypto certificate 1 generate
console(config)# ip https certificate 1
console(config)# ip https server

https://dell.to/3QEHI4T
This is the link for reference BUT NOT all the commands work as per link, that's why we have modified accordingly (PC6224).

https://dell.to/3RCLXiH is CLI manual, please go through manual first and configure accordingly..
This feature is enabled by default (Telnet).  Telnet feature is enable my default on the switch
console#configure
console(config)#ip telnet server disable
console(config)# no ip telnet server disable


If you want to disable telnet, the above commands can be used
console(config)#interface vlan 1
console(config-vlan)#ip address xx.xx.xx.xx
255.255.255.0
That is vlan 1 configuration


https://dell.to/3eMtWQ7

Configuring an Initial Terminal Password
To configure an initial terminal password, enter the following commands:
console(config)# aaa authentication login default line
console(config)# aaa authentication enable default line
console(config)# line console
console(config-line)# login authentication default
console(config-line)# enable authentication default
console(config-line)# password george


Configuring an Initial Telnet Password
To configure an initial Telnet password, enter the following commands:
console(config)# aaa authentication login default line
console(config)# aaa authentication enable default line
console(config)# line telnet
console(config-line)# login authentication default
console(config-line)# enable authentication default
console(config-line)# password bob


Configuring an Initial SSH password
To configure an initial SSH password, enter the following commands:
console(config)# aaa authentication login default line
console(config)# aaa authentication enable default line
console(config)# line ssh
console(config-line)# login authentication default
console(config-line)# enable authentication default
console(config-line)# password jones.

Configuring an initial HTTPS password
To configure an initial HTTPS password, enter the following commands:
console(config)# ip https authentication local
console(config)# username admin password user1 level 15

Configuring an initial HTTPS password
To configure an initial HTTPS password, enter the following commands:
console(config)# ip https authentication local
console(config)# username admin password user1 level 15

In the Web browser enable SSL 2.0 or greater for the page content to be displayed.
console(config)# crypto certificate generate key_generate
console(config)# ip https server


console# configure
console(config)# interface ethernet vlan 1
console(config-if)# ip address x.x.x.x x.x.x.x
console(config-if)# exit
console(config)#

No Events found!

Top