スポンサーリンク
スポンサーリンク

【対処法】NEC IXルーター初期化してもWeb GUIが有効にならないときの2ステップ(Web GUI有効化)

備忘録
スポンサーリンク

中古でIX 2105を購入して、調べて出てきたスーパーリセットを行ったのに、PCにつないでも何も起こらず詰んだので、Web GUI復帰までの手順を記します。

はじめ色々書いていましたが、「IX2105、2106、2107、2235」は、初期化してWeb GUIを表示させるだけであれば2ステップで出来ることがわかりました。

スポンサーリンク

IXルーター初期化

CONSOLEポートからRS232CケーブルでPCに接続。コンソールケーブルは必須なので購入。

起動(Loading)中にCtrl + Cで中断し、以下のコマンドを実行。

>cc
>y
>b

「default-console web」が設定されていれば、これだけで完了です。DHCPが有効にならず、Web GUIにアクセスできない場合は、次の手順に進みます。

りょっち
りょっち

Web GUIが有効の場合、ルーターのIPアドレスは「192.168.1.254」で、DHCPが有効になります。

ユーザー名とパスワードは「なし(空欄)」または両方「admin」でログインできます。

スポンサーリンク

Web GUIの有効化

「default-console command-line」が設定されている場合、初期化してもWeb GUIが無効のままになります。

その場合は以下のコマンドを入力しましょう。

Router# default-console web
Router# reload

reloadコマンドで再起動後、Web GUIが有効になります。

スポンサーリンク

(参考)初期設定コンフィグ

IX2215など「default-console web」に対応していない製品や、何らかの不具合によりWeb GUIもDHCPも効かない場合は、コンフィグモードに移行後、以下の設定を流し込みましょう。

Router# enable-config

IX2215

以下の設定だとDHCPが有効になるのはGE1の1ポートなのでご注意を。

timezone +09 00
logging buffered 131072
logging subsystem all warn
logging timestamp datetime
ip dhcp enable
ip access-list web_console permit ip src any dest 192.168.1.254/32
ip ufs-cache enable
http-server username admin
http-server ip access-list web_console
http-server ip enable
ip dhcp profile web_gigaethernet1.0
  assignable-range 192.168.1.1 192.168.1.253
  dns-server 192.168.1.254
device GigaEthernet0
device GigaEthernet1
interface GigaEthernet0.0
  no ip address
  shutdown
interface GigaEthernet1.0
  ip address 192.168.1.254/24
  ip dhcp binding web_gigaethernet1.0
  no shutdown
interface Loopback0.0
  no ip address
interface Null0.0
  no ip address

IX2105

timezone +09 00
logging buffered 131072
logging subsystem all warn
logging timestamp datetime
ip dhcp enable
ip access-list web_console permit ip src any dest 192.168.1.254/32
ip ufs-cache enable
http-server username admin
http-server ip access-list web_console
http-server ip enable
ip dhcp profile web_gigaethernet1.0
  assignable-range 192.168.1.1 192.168.1.253
  dns-server 192.168.1.254
device GigaEthernet0
device GigaEthernet1
interface GigaEthernet0.0
  no ip address
  shutdown
interface GigaEthernet1.0
  ip address 192.168.1.254/24
  ip dhcp binding web_gigaethernet1.0
  no shutdown
interface Loopback0.0
  no ip address
interface Null0.0
  no ip address

IX2106

timezone +09 00
logging buffered 131072
logging subsystem all warn
logging timestamp datetime
ip ufs-cache enable
ip dhcp enable
ip access-list web-http-acl permit ip src any dest 192.168.1.254/32
http-server ip access-list web-http-acl
http-server ip enable
ip dhcp profile web-dhcp-gigaethernet1.0
  dns-server 192.168.1.254
device GigaEthernet0
device GigaEthernet1
interface GigaEthernet0.0
  no ip address
  shutdown
interface GigaEthernet1.0
  ip address 192.168.1.254/24
  ip dhcp binding web-dhcp-gigaethernet1.0
  no shutdown
interface Loopback0.0
  no ip address
interface Null0.0
  no ip address
web-console system information
  o lan1 GigaEthernet1.0

IX2207

timezone +09 00
logging buffered 131072
logging subsystem all warn
logging timestamp datetime
ip ufs-cache enable
ip dhcp enable
ip access-list web-http-acl permit ip src any dest 192.168.1.254/32
http-server ip access-list web-http-acl
http-server ip enable
ip dhcp profile web-dhcp-gigaethernet2.0
  dns-server 192.168.1.254
device GigaEthernet0
device GigaEthernet1
device GigaEthernet2
device USB0
  shutdown
device USB1
  shutdown
interface GigaEthernet0.0
  no ip address
  shutdown
interface GigaEthernet1.0
  no ip address
  shutdown
interface GigaEthernet2.0
  ip address 192.168.1.254/24
  ip dhcp binding web-dhcp-gigaethernet2.0
  no shutdown
interface USB-Serial0.0
  encapsulation ppp
  no auto-connect
  no ip address
  shutdown
interface USB-Serial1.0
  encapsulation ppp
  no auto-connect
  no ip address
  shutdown
interface Loopback0.0
  no ip address
interface Null0.0
  no ip address
web-console system information
  o lan1 GigaEthernet2.0
スポンサーリンク

設定を記憶させる

Router(config)#  exit
Router# write memory