Hello...
I've been trying to setup my network to run static IPs for both my cabled ethernet and my wireless.
Here are my /etc/network/interfaces settings:
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.41
netmask 255.255.255.0
gateway 192.168.1.1
auto wlan0
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.2.20
netmask 255.255.255.0
gateway 192.168.2.1
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
Here are my /etc/wpa_supplicant/wpa_supplicant.conf settings:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="SSID"
psk=“password to SSID“
key_mgmt=WPA-PSK
}
When I type ifconfig at the terminal, the IP settings appear correctly, however, when hovering over the network symbol on the taskbar, the IPs show a DHCP setting. Odd. As well, when I apt-get update/upgrade, Failed connections are listed.
Are my settings correct???
Any suggestions would be helpful and I thank you in advance.