Quote (WDef @ Feb. 22 2007,14:07) |
Use dsl-2.1b (from the archives) instead which uses a 2.4.31 kernel and install the ipw2200 extension in the repo. Check the info file for instructions. |
Code Sample |
#!/bin/bash YOUR_ESSID="whatever" YOUR_KEY="your_key" if [ -L /lib/modules/2.4.31/modules.dep ]; then rm -rf /lib/modules/2.4.31/modules.* cp /KNOPPIX/lib/modules/2.4.31/modules.* /lib/modules/2.4.31 fi depmod -a echo "Configuring Wireless LAN Card for $YOUR_ESSID" echo modprobe ipw2200 iwconfig eth1 essid $YOUR_ESSID key $YOUR_KEY # dynamic dns pump -i eth1 ## or for static IP ## modify /etc/resolv.conf to include your nameservers # Set default gateway (not always needed) route add default gw 192.168.xx.x eth1 # or whatever your router's IP is |