Up 固定IP を設定 作成: 2021-02-01
更新: 2021-02-06


    PC から同じ IPアドレスで ssh接続ができるよう,RasPi の IPアドレスを固定する。

    , /etc/dhcpcd.conf の編集
      $ sudo vi /etc/dhcpcd.conf
      最終的につぎの4行を作成:
      interface eth0
      static ip_address=[RasPi に与えるIPアドレス]
      static routers=[ルータのIPアドレス]
      static domain_name_servers=[ルータのIPアドレス] 8.8.8.8


    この『ガイド』では,
      RasPi に与えるIPアドレス : 192.168.1.150
      ルータのIPアドレス : 192.168.1.1
    とする。

    この設定により,接続が成ったときはつぎの「ネットワーク環境」になる:
      $ ifconfig
      eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
        inet 192.168.1.150 netmask 255.255.255.0 broadcast 192.168.1.255
        ‥‥



    備考
    /etc/network/interfaces は,さわる必要無し。
      /etc/network/interfaces の内容:
      $ cat /etc/network/interfaces | grep dhcp
      # Please note that this file is written to be used with dhcpcd
      # For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'