初期化後の状態では、
(1)adminユーザが未登録
(2)IPアドレスやDHPCが設定されていない
(3)Web設定画面がでない
です。
そこで下記を実施します。
①admin-user 追加と パスワード設定
Router# configure
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)# username admin-user password plain 1 *e***3** administrator
% User 'admin' has been added.
※設定のセーブ
Router(config)# write memory
Building configuration...
% Warning: do NOT enter CNTL/Z while saving to avoid config corruption.
Router(config)# exit
Router#
②ipアドレスの設定
Router# configure
--------------------------------------------------
!
logging buffered
logging subsystem all warn
logging timestamp datetime
!
ip ufs-cache enable
ip dhcp enable
ip access-list web-http-scl permit ip src any dest 192.168.1.254/32
!
######http-server ip access-list web-http-acl <==要注意① 結果的に省略
http-server ip enable
http-server username admin-user
!
######web-console interface lan1 GigaEthernet2.0 <===要注意② 結果的に省略
!
ip dhcp profile dhcp-profile <Enter>でip設定モードへ
dns-server 192.168.1.254
<exit> ip設定モード解除
!
interface GigaEthernet2.0 <emter>でinterface設定モードへ
ip address 192.168.1.254/24
ip dhcp binding dhcp-profile
no shutdown
※設定のセーブ
Router(config)# write memory
Building configuration...
% Warning: do NOT enter CNTL/Z while saving to avoid config corruption.
Router(config)# exit
0 件のコメント:
コメントを投稿
注: コメントを投稿できるのは、このブログのメンバーだけです。