2960シリーズの設定サンプル
Switch>en
Switch#conf t
! LLDP有効化
lldp run
! ホスト名の設定
Switch(config)#hostname RT1
! 未定義のコマンドをDNSサーバへ参照しに行かないようにする
RT1(config)#no ip domain-lookup
! 入力途中でログが割り込まないようにする
RT1(config)#line console 0
RT1(config-line)#logging synchronous
RT1(config-line)#exit
! sshの設定準備とログ割り込みしないように
RT1(config)#line vty 0 4
RT1(config-line)#login local
RT1(config-line)#logging synchronous
!sshのみ接続を許可
RT1(config-line)#transport input ssh
RT1(config-line)#exit
! ドメイン名を指定 ドメイン名は適宜変更してください
RT1(config)#ip domain-name cisco.com
! RSA鍵生成
RT1(config)#crypt key generate rsa
!
!
! ここで入力を求められます。を入力します。1024
!
!
! sshのVersion指定
RT1(config)#ip ssh version 2
! 特権モードへ入るためのPW
enable secret PASSWORD
! PWは暗号化されずに保存される
username USER1 password PASSWORD
! 最後にPW全般の暗号化
service password-encryption
- 管理VLANのIP決めと
- デフォルトゲートの設定