0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PYNQ-Z1 > IPアドレスを変更する > 固定IPアドレス設定 > /etc/network/interfaces.d/eth0

Last updated at Posted at 2020-05-23
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にて接続できることを確認した。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?