Debian on Zaurusのネットワーク設定をしてみる

Debian on Zaurusで遊んでいる。
ネットワーク設定のあたりで少し引っかかったのでメモを残した。

pcmcia

# cardctl ident

# vi /etc/pcmcia/option.conf
card "LD-CF/T"
  version "Laneed", "LD-CF/T Ethernet PC Card"
  bind "pcnet_cs"
card "WLI-CF-S11G"
  version "BUFFALO", "WLI-CF-S11G"
  bind "orinoco_cs"
card "345 CF"
  version "ADLINK", "345 CF"
  bind "orinoco_cs"

udev network

# vi /etc/udev/rules.d/z25_persistent-net.rules
ethx -> eth0

# vi /etc/network/interfaces
auto eth0
allow-hotplug eth0
iface eth0 inet static
        address 192.168.1.xx
        network 192.168.1.0
        netmask 255.255.255.0
        broadcast 192.168.1.255
        gateway 192.168.1.yy
        wireless-essid "my-essid"
        wireless-key "s:my-wepkey"
        wireless-mode managed
        dns-nameservers 192.168.1.yy

apt

$ wget http://www.applieddata.net/developers/linux/debian/ads.key
# apt-key add ads.key
# apt-get -f update