admin 管理员组文章数量: 1184232
本文最后更新于2014年7月1日,已超过 1 年没有更新,如果文章内容失效,还请反馈给我,谢谢!
在使用网络查看命令(ifconfig/iwconfig)可以查看到无线网卡的情况下(表明无线网卡的驱动是正常安装的,之后就可以使用命令:iwlist wlan0 scanning 来查看附近的一些无线信号)
编辑文件“/etc/network/interfaces”:
# vim /etc/network/interfaces
——————-
# 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
auto wlan0
iface wlan0 inet static
address 192.168.1.111
gateway 192.168.1.1
netmask 255.255.255.0
wpa-ssid Your_SSID
wpa-psk Your_passwd
——————-
然后重启网卡就行:service networking restart。
记录一下。。。
2014-5-8 14:52:10
然后可以手动指定一下DNS防止运营商的DNS污染:
编辑Debian下的DNS服务器配置文件: /etc/resolv.conf
nameserver 202.103.0.117
nameserver 211.95.193.97
nameserver 114.114.114.114
nameserver 8.8.8.8
本文标签: 无线网络 Linux kali kalilinux bak
版权声明:本文标题:kali linux 设置无线网络连接,KaliLinux无线网络设置[bak] 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.roclinux.cn/b/1754707329a3032444.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论