Good day. I have fresh Ubuntu Server 14 installed (with updates). I already tried this solutions w/o result:
Setting up wireless (WPA2) on ubuntu server 14.04
Automatically connect to a wireless network using CLI
Here is my /etc/network/interfaces file:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# Ethernet
auto eth0
iface eth0 inet dhcp
# Wireless
auto wlan0
iface wlan0 inet dhcp
wpa-ssid network_name
wpa-psk network_password
So after reboot it doesn't connect to wireless connection automatically. Only after run command:
sudo ifdown wlan0 && sudo ifup -v wlan0
system connect to wireless network.
Can you please tell me how to fix it or where i make mistake? Thanks.
dmesg | grep wlan
– chili555 Sep 11 '15 at 18:12