CMTS info

Helpful linux and DOCSIS/CMTS howtos and tips

Setting SSH on Cisco devices

1) 3560G Switch

Follow these commands to configure ssh2 on newer cisco switches:

  enable
  configure terminal
  aaa new model 
  username example-user secret example-password 
  ip domain name example-domain.com
  crypto key generate rsa general-keys modulus 1024
  ip ssh version 2
  line vty 0 X (X-last vty)
  transport input ssh
  end
  wr mem
2) UBR7246

Follow these commands to configure ssh1 on older cisco CMTS.

Warning only ssh 1 and DES supported!!

  enable
  configure terminal
  aaa new model 
  username example_user secret example_password 
  ip domain name example_domain.com
  generate rsa general-keys label ssh_key modulus 2048
  ip ssh rsa keypair-name ssh_key
  line vty 0 255
  transport input ssh
  end
  wr mem

Template: designsbydarren.com on license
All trademarks belong to their respective owners. All materials presented here for informational purposes only.