Tag: configure static ip wlan0

  • Configure static IP on Raspberry Pi

    Some access points does not deliver DHCP to the raspberrypi. You could assign the IP statically as follows: Edit the /etc/network/interfaces file Comment out the following lines. > #allow-hotplug wlan0 > #wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf > #iface eth0 inet manual Add following configs. auto lo iface eth0 inet dhcp auto wlan0 iface wlan0 inet static address x.x.x.x…