Windows 10 Pro (v1909)
PYNQ-Z1 (Digilent)
関連
IPアドレスの変更
PYNQ-Z1の初期IPアドレスは「192.168.2.99」である。
自分のネットワークは192.168.0.Xなので、変更をする。
公式情報
How do I set/change the static IP address on the board?
https://pynq.readthedocs.io/en/v1.3/14_faqs.html#how-do-i-set-change-the-static-ip-address-on-the-board
「/etc/dhcp/dhclient.conf 」を変更という記載がある。
設定変更
Jupyter Notebookに接続して、Terminalから操作をした。
/etc/network/interfaces.d/eth0
を変更した。
下記の通り、addressを「192.168.0.99」に変更した。
auto eth0
iface eth0 inet dhcp
auto eth0:1
iface eth0:1 inet static
address 192.168.0.99
netmask 255.255.255.0
192.168.0.XからJupyter Notebookにて接続できることを確認した。