ubuntu下命令行连接wifi

使用iwconfig命令:

搜索无线网 iwlist wlan0 scan
记下essid
连接无密码的无线网 iwconfig wlan0 essid ChinaNet 其中ChinaNet是搜索到的无线网essid
连接有密码的无线网 iwconfig wlan0 essid ChinaNet key xxxx 其中xxxx是密码
启用无线网卡 ifconfig wlan0 up

通过dhcp获取IP dhclient wlan0 或 dhcpcd wlan0


你可能感兴趣的:(ubuntu下命令行连接wifi)