##やろうとしていること
Raspberry Pi3 (Buster)を使用しています。
無線通信・有線通信の設定について教えてください。
設定したい状態
Raspberry Pi は、無線通信(wlan0)だけに接続したい。
Raspberry Piの有線ポートは、測定器と1対1で接続したい。(ネットワークへ接続しない)
**Raspberry Piのeth0ポートのIPアドレスは固定したい。
##困っていること
sudo nano /etc/dhcpcd.confの設定で、
eth0の部分をコメントアウトすると、無線LANに接続できます。
text
1#interface eth0 2#static ip_address=192.168.10.10 3#static routers=192.168.10.1 4#static domain_name_servers=192.168.10.1 5 6#WiFisettings 7interface wlan0 8ssid hogehoge 9static ip_address=192.168.10.11 10static routers=192.168.10.1 11static domain_name_servers=192.168.10.1 12
回答3件
あなたの回答
tips
プレビュー