Hi
[First: apologies if this message appears twice - my reply doesn't seem to have stuck first time round.]
I didn't have too much trouble configuring the utility once I had got the right thing up and running, so don't have a good note of what I did. Sorry....
I initially tried to configure it using an adaptation of the instructions pasted below.
But I seem to remember that I actually got it working through the Rutilt Utility itself. I use DCHP and think I just had to set the settings through the profile tab (adding a new profile and going on through to set the details).
I seem to remember some trouble over running the thing as root and maybe I launched it the first times through the command line as root.
On someone's advice, I had uninstalled network manager and installed wireless tools at a fairly early stage in the process though I don't know if this is necessary.
I have a set of notes (basically copies of relevant guidance stuff) that I collected as I went along and it contains everything that I will have known when I got it up and running. If you let me have an email address, I can send you through copies.
If none of that works for you, let me know and I will try to remember further. Sorry not to be more definitive.
Step #7: Configure card
Next logical step is to load the device driver. If you have Ethernet card disable
to avoid problems:
# ifconfig eth0 down
# modprobe rt61
Once driver is loaded, you can activate interface called ra0. With ifconfig command:
# ifconfig ra0 192.168.1.2 up
To configure a wireless network interface you need to use iwconfig command.
This command is part of wireless-tools package.
If wireless-tools is not installed use apt-get or yum to install it:
# apt-get install wireless-tools
Now make sure you know the ssid / essid. If you have turned on encryption,
you must use the same encryption type and key on both desktop system and
the wireless router. You can obtain necessary settings using iwlist command:
# iwlist ra0 scanning
Output:
ra0 Scan completed :
Cell 01 - Address: 00:12:39:6C

6:8A
ESSID:"nixcraft"
Mode:Managed
Channel:6
Encryption key

n
Step #1: Set SSID/ESSID
You need to set ssid/essid. My SSID is nixcraft.
The SSID/ESSID is used to identify cells which are part of the same virtual
(wireless) network:
# iwconfig ra0 essid nixcraft
Step #2: Set mode
You need to set the operating mode of the PCI card. Use Managed mode that node
connects to a network composed of many Access Points (wireless router).
# iwconfig ra0 mode Managed
Step 3: Setup channel
Set the operating frequency or channel in the device.
# iwconfig ra0 channel 6
Step 4: Setup key
Used to manipulate encryption or scrambling keys and security mode
(you can obtain security key by opening your web browser and type your
routers IP address into address bar):
# iwconfig ra0 key 47b1122774d1xy55a1194lchjk6
You can now ping to wireless router or browser internet and rest of network (if connected).
Step #8: Configure rt61 driver auto-load at boot time
#1: Configure ra0 interface so that it can activated after reboot.
Create a wlan.up and wlan.down helper scripts.
Download these scripts and copy to /etc/Wireless directory.
#2: Make sure wireless kernel modules (rt61) to load at boot time.
Open config file /etc/modules (this file contains the names of kernel modules
that are to be loaded at boot time, one per line.):
# vi /etc/modules
Append rt61 module:
rt61
Close and save the file.
#3: Configure ra0 ip address:
Open /etc/network/interfaces file:
# vi /etc/network/interfaces
Make sure ra0 interface look like as follows (static IP configuration):
auto ra0
iface ra0 inet static
name Wireless LAN card
address 192.168.1.2
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
gateway 192.168.1.1
post-up /etc/Wireless/wlan.up
post-down /etc/Wireless/wlan.down
Save the file and reboot the system.