🛠️

IX3110のファームウェアをアップデートする

2023/02/18に公開

前書き

ヤフオクにて、IX3110が2台セット1980円+送料と格安で出品されていたので落札してみました。
今回はファームウェアのアップデートを行っていきたいと思います。

必要機材

・コンソールケーブル
・シリアル変換ケーブル
・TFTPサーバー
・ファームウェア(個人でもインストール可能)

TFTPサーバーの構築

本記事では「Server」というフリーソフトを使ってTFTPサーバーを構築しました。
TFTPサーバーのIPアドレスは192.168.1.101としました。
詳しい手順につきましては、こちらをご参照下さい。
https://zenn.dev/kensan_gadget/articles/8a75d39841e318

IPアドレスの割り当て

ルータのGE0.0ポートにIPアドレスを割り当てます。ここでは、192.168.1.100とします。

Router(config)# interface GigaEthernet0.0
Router(config-GigaEthernet0.0)# ip address 192.168.1.100/24
Router(config-GigaEthernet0.0)# no shutdown

疎通確認

TFTPサーバーのIPアドレスを入力し、疎通できてるか確認します。

Router# ping 192.168.1.101
PING 192.168.1.100 > 192.168.1.101 56 data bytes
64 bytes from 192.168.1.101: icmp_seq=0 ttl=128 time=2.909 ms
64 bytes from 192.168.1.101: icmp_seq=1 ttl=128 time=0.154 ms
64 bytes from 192.168.1.101: icmp_seq=2 ttl=128 time=0.149 ms
64 bytes from 192.168.1.101: icmp_seq=3 ttl=128 time=0.147 ms
64 bytes from 192.168.1.101: icmp_seq=4 ttl=128 time=0.143 ms

--- 192.168.1.101 ping statistics ---
5 packets transmitted, 5 packets received, 0% packet loss
round-trip (ms)  min/avg/max = 0.143/0.700/2.909

ファームウェアのアップデート

ファームウェアの書き込みは3分程度で終了します。

Router(config)# software-update tftp://192.168.1.101/ix3100-boot-27.1-gate-ms-10.5.31.rap
% Downloading ...............

ルーターの再起動

Router# reload
Notice: The router will be RELOADED. This is to ensure that
        the peripheral devices are properly initialized.
Are you sure you want to reload the router? (Yes or [No]): y

バージョンの確認

Router(config)# show version
NEC Portable Internetwork Core Operating System Software
IX Series IX3100 (magellan-sec) Software, Version 10.5.31, RELEASE SOFTWARE
Compiled Sep 22-Thu-2022 17:04:12 JST #2 by sw-build, coregen-10.5(31)

ROM: System Bootstrap, Version 27.1
System Diagnostic, Version 27.1
Initialization Program, Version 16.1

System uptime is 0 minute
System woke up by reload, caused by power-on
System started at Feb 18-Sat-2023 09:21:59 JST
System image file is "ix3100-ms-10.5.31.ldc"

Processor board ID <1>
IX3110 (MPC8547E) processor with 262144K bytes of memory.
4 GigaEthernet/IEEE 802.3 interfaces
2048K bytes of non-volatile configuration memory.
32767K bytes of processor board System flash (Read/Write)

参考文献

https://falconblog.org/nec-ix-firmware-update-ftp/

Discussion