FreeBSD 安装Atheros无线网卡驱动程序

时间:2019-11-20 08:54:00  来源:igfitidea点击:

在FreeBSD中如何配置Atheros无线网卡?

编辑文件/boot/loader.conf:

# vi /boot/loader.conf

添加下面这行加载驱动程序:

if_alc_load="YES"

重启系统
或者执行下面命令加载:

# kldload alc

执行ifconfig,看能不能看到alc0接口。

如果没有,需要将驱动程序编译到内核中。

在内核配置文件中添加下面这两行:

device miibus
	   device alc

网络配置

使用ifconfig命令配置IP地址:

# ifconfig
# ifconfig alc0 inet 192.168.1.100 netmask 255.255.255.0
# route add default 192.168.1.1
# ifconfig
# ping 192.168.1.1

将配置添加到/etc/rc.conf中:

ifconfig_alc0="inet 192.168.1.100 netmask 255.255.255.0"
defaultrouter="192.168.1.1"

设置dns地址:

# vi /etc/resolv.conf

编辑如下:

nameserver 192.168.1.1
nameserver 8.8.8.8