freebsd無線網路

我想很多人是在notebook上安裝freebsd的,但是因為在基系統下沒有圖形介面來設定上網,所以這裡分享一下我如何透過ifconfig來設定無線網路,並使用dhcp自動取得ip來連線。

1、啟動網卡
# ifconfig ath0 up

2、尋找可用基地台
# ifconfig ath0 list scan

3、設定基地台
# ifconfig ath0 ssid wlan0

4、若有設定wep加密,沒有則跳過
# ifconfig ath0 wepmode on weptxkey 1 wepkey 1:0x1234567890

5、透過dhcp取得ip
# dhclient ath0

透過以上的方式就可以連上基地台了,以下提供一些額外的設定
a.斷線
# ifconfig ath0 down
b.其它方式設定wep
# ifconfig ath0 ssid wlan0 nwkey 0x1234567890
(等同於wepmode on weptxkey 1 wepkey 1:key)
c.重設網卡資訊
# ifconfig ath0 ssid - (重設ssid)
# ifconfig ath0 delete (重設inet netmask)
# ifconfig ath0 wepmode off (取消使用wep)
# ifconfig ath0 weptxkey - (取消wepkey index)
# ifconfig ath0 wepkey - (取消wepkey password)

看完上面的設定之後,相信你已經可以連上無限網路了,這裡講解一下透過ifconfig所顯示的無限網卡資訊
ath0: 表示目前網卡已經up且在工作了
inet 192.168.1.38 netmask 0xffffff00 表示你的ip和網路遮罩
status: associated 表示已經和基地台連接
ssid wlan0 channel 6 bssid 00:13:46:ed:8f:c2 表示連上那台基地台資訊
authmode OPEN privacy ON deftxkey 1 wepkey 1:40-bit 表示使用加密且使用第一把金鑰

0 意見: