« fluxbox on UTF-8 part.2 | メイン | Gentooで日本語入力 »

NEC AtermWL54AG gentoo編

無線LANアダプター、AtermWL54AGをgentooで使う。
暗号形式はWEP。

・emergeするもの
madwifi-ng. madwifi-ng-tools, wireless-tools

これだけemergeして再起動すると、iwconfigでath0が見えている。
iwconfigでessid, key, APを設定すると、ifconfigでath0が見える。後は
# dhcpcd ath0
でIPが割り振られたらO.K。

永続的に利用するためには、/etc/conf.d/netに以下のようにかく。
*は各人で自分の環境にあわせて設定する。は、数字とアルファベット以外はアンダーバーに変える。
--------------------------------------------------------
config_eth0=( "null" ) ←有線LANの設定をしない。


config_ath0=( "dhcp" )
dhcp_ath0="nonis"
dhcpcd_ath0="-t 30"
channel_ath0="*"

modules=( "iwconfig" )
associate_order_ath0="forcepreferredonly"
key_="[1] * key [1] enc open"
config_=("dhcp")
dhcpcd_="-t 30"
preferred_aps_ath0=("")
--------------------------------------------------------
最後に、
# cd /etc/init.d
# ln -s net.eth0 net.ath0
# rc-update add net.ath0 default