|
发表于 2003-7-30 22:40:24
|
显示全部楼层
最初由 longtengjingwa 发表
多谢大家的回复,不过我恐怕要放弃freebsd了,因为一直都没办法搞定802.1x,不能上网,freebsd恐怕很难用起来
我个人认为freebsd对802.1的支持比linux好,我原来的笔记本,用NEC的802.1 pcmcia card,和现在的T30内置的802.1b 都很好地在freebsd下使用,但是T30的内置wireless在linux下比较容易掉线。
要使用wireless,看看你的是什么型号的卡,在你的内核配置文件中去掉注释,然后编译内核就行了。
例如我的4.8的内核wireless部分:
# WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really
# exists only as a PCMCIA device, so there is no ISA attachment needed
# and resources will always be dynamically assigned by the pccard code.
device wi
# Aironet 4500/4800 802.11 wireless NICs. Note: the declaration below will
# work for PCMCIA and PCI cards, as well as ISA cards set to ISA PnP
# mode (the factory default). If you set the switches on your ISA
# card for a manually chosen I/O address and IRQ, you must specify
# those parameters here.
#device an
其实只要你不是Airenet的卡,用wi就对了。
5.x 把wireless卡的底层协议抽出来加了一个 device wlan,所有的wireless设备都依赖于它,所以如果是5.x,则同时也要去掉device wlan前的注释符号。
如下:
# Wireless NIC cards
device wlan # 802.11 support
#device an # Aironet 4500/4800 802.11 wireless NICs.
#device awi # BayStack 660 and others
device wi # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
#device wl # Older non 802.11 Wavelan wireless NIC. |
|