<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ionut's WebSpace &#187; Wireless</title>
	<atom:link href="http://www.vioan.ro/wp/category/wireless/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vioan.ro/wp</link>
	<description>Exploring Creativity Is My Passion</description>
	<lastBuildDate>Sun, 08 Aug 2010 21:09:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Edimax EW-7128G Wireless Lan PCI Adapter on OpenSUSE 10.3</title>
		<link>http://www.vioan.ro/wp/2008/03/23/installing-edimax-ew-7128g-wireless-lan-pci-adapter-on-opensuse-103/</link>
		<comments>http://www.vioan.ro/wp/2008/03/23/installing-edimax-ew-7128g-wireless-lan-pci-adapter-on-opensuse-103/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 18:29:31 +0000</pubDate>
		<dc:creator>ionut</dc:creator>
				<category><![CDATA[*BSD]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.vioan.ro/wp/2008/03/23/installing-edimax-ew-7128g-wireless-lan-pci-adapter-on-opensuse-103/</guid>
		<description><![CDATA[


As you saw in my previous post, I have this wireless card, so let see what I did to have the wireless connection working on my OpenSUSE box.
The card is coming with some drivers for linux, on the box is mentioned that it has support for Mac OS, Windows x64 Edition, Linux Debian, Fedora, Redhat [...]]]></description>
			<content:encoded><![CDATA[<p>As you saw in my <a href="http://www.vioan.ro/wp/2008/03/23/set-up-a-wireless-network-in-the-new-house/">previous post</a>, I have this wireless card, so let see what I did to have the wireless connection working on my OpenSUSE box.</p>
<p>The card is coming with some drivers for linux, on the box is mentioned that it has support for Mac OS, Windows x64 Edition, Linux Debian, Fedora, Redhat and Suse.. I was not able to install their drivers on my computer, I have the feeling that something is wrong with their default drivers and I decided to use the drivers which you can download <a href="http://rt2x00.serialmonkey.com/rt61-cvs-daily.tar.gz">here</a>.</p>
<p>&#8220;rt2&#215;00 Project&#8221; is a development effort to provide free, stable and feature rich Linux drivers for wireless 802.11b/g/i cards based on the following Ralink chipsets: rt2400, rt2500, rt2570, rt61 and rt73.</p>
<p>So, the steps are here:</p>
<p>1. prepare the kernel first:</p>
<p><code># cd /usr/src/linux<br />
# make mrproper<br />
# make cloneconfig<br />
# make modules_prepare<br />
</code></p>
<p>2. Unpack the archive which you just download it somewhere on your hdd:</p>
<p><code># tar -zxvf rt61-cvs-daily.tar.gz</code></p>
<p>3. change the current directory:</p>
<p><code># cd rt61-cvs-2008032308/Module</code></p>
<p>4. compile and install the module:</p>
<p><code># make<br />
# make install</code></p>
<p>Now if everything is fine, you can see if you have the drivers installed:</p>
<p><code># ifconfig -a<br />
# iwconfig</code></p>
<p><code>lo        no wireless extensions.<br />
eth0      no wireless extensions.<br />
vmnet1    no wireless extensions.<br />
vmnet8    no wireless extensions.</code></p>
<p>For the last two commands you have to look after wlan0 or ra0 device. If you still don&#8217;t have them (like in my case) try:</p>
<p><code># modprobe rt61</code></p>
<p>If you run again the command iwconfig you will see now the device:</p>
<p><code># iwconfig</code><br />
<code>lo        no wireless extensions.<br />
eth0      no wireless extensions.<br />
vmnet1    no wireless extensions.<br />
vmnet8    no wireless extensions.</code></p>
<p>wlan0     RT61 Wireless  ESSID:&#8221;"  Nickname:&#8221;"<br />
Mode:Managed  Frequency:2.412 GHz  Bit Rate=54 Mb/s<br />
RTS thr:off   Fragment thr:off<br />
Encryption key:off<br />
Link Quality=0/100  Signal level:-121 dBm  Noise level:-143 dBm<br />
Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0<br />
Tx excessive retries:0  Invalid misc:0   Missed beacon:0<br />
Now you are ready to configure your wi-fi card with yast, so type <strong>yast2</strong> at the command prompt, and configure it.</p>
<p>At this point the card will work only (in my case it did) if I disable the SECURITY on my router and if I will set NO-Encryption for Autentification Mode in Yast. I don&#8217;t like this, I want to use WPA, so here is a nice and small script which will do the work:<br />
<code><br />
#!/bin/sh<br />
#<br />
# Script to configure Edimax EW-7128G Wireless Lan PCI Adapter<br />
# to work with WPA mode</p>
<p>iwconfig wlan0 mode managed<br />
iwpriv wlan0 set AuthMode=WPAPSK<br />
iwpriv wlan0 set EncrypType="TKIP"<br />
iwconfig wlan0 essid "YOUR_ESSID" # change here<br />
iwpriv wlan0 set WPAPSK="YOUR_PASSPHRASE" # change here<br />
</code></p>
<p>Now everything is working, I hope that this small howto is useful also for you, so please let a comment if it is working or if you have some problems with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vioan.ro/wp/2008/03/23/installing-edimax-ew-7128g-wireless-lan-pci-adapter-on-opensuse-103/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Set up a wireless network in the new house</title>
		<link>http://www.vioan.ro/wp/2008/03/23/set-up-a-wireless-network-in-the-new-house/</link>
		<comments>http://www.vioan.ro/wp/2008/03/23/set-up-a-wireless-network-in-the-new-house/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 18:20:33 +0000</pubDate>
		<dc:creator>ionut</dc:creator>
				<category><![CDATA[*BSD]]></category>
		<category><![CDATA[Cryptography]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.vioan.ro/wp/2008/03/23/set-up-a-wireless-network-in-the-new-house/</guid>
		<description><![CDATA[As you read in my previous post , we arrived in UK already. I have internet connection at work, but I need also at home internet, because during the evening I am reading news, emails, messenger, &#8230;. I prefer now, to set up a wirelesss network for my home, because I don&#8217;t like to have [...]]]></description>
			<content:encoded><![CDATA[<p>As you read in my <a href="http://www.vioan.ro/wp/2008/03/07/already-in-loughborough-uk/">previous post</a> , we arrived in UK already. I have internet connection at work, but I need also at home internet, because during the evening I am reading news, emails, messenger, &#8230;. I prefer now, to set up a wirelesss network for my home, because I don&#8217;t like to have cables in the house.</p>
<p>My computers are <a href="http://www.vioan.ro/wp/2007/10/12/what-i-am-using-my-computers/">here</a>. For Amilo notebook I had already a PCMCIA card &#8220;<a href="http://www.netgear.com/Products/Adapters/SuperGWirelessAdapters/WG511T.aspx">Netgear WG511T</a>&#8221; which is working fine on Windows XP, FreeBSD and Linux, Vaio notebook come with an integrated wifi card, I have installed on it Vista and I don&#8217;t have problems with the wireless card, so what I needed it was a PCI/USB wireless card for the desktop computer which has to work with Linux, Windows and also *BSD operating system and also a wireless router.</p>
<p>Surfing on the internet, reading opinions and different forums, I decided to buy a <a href="http://en.wikipedia.org/wiki/WRT54G">Linksys WRT54G</a> wireless broadband router, maybe in the future I will try to install  linux on it (<a href="http://openwrt.org/">openwrt</a> or something similar), and as PCI card I took <a href="http://www.edimax.com/en/produce_detail.php?pd_id=1&amp;pl1_id=1&amp;pl2_id=44">Edimax EW-7128G</a> wireless adapter which it seems that is working fine with Linux, Windows and FreeBSD/OpenBSD.</p>
<p>The router was very easy to set up and is working fine. I had some problems in installing the PCI wireless card on my Opensuse 10.3 box, finally it is working, I will write here a short tutorial in the next post.</p>
<p>I am really happy with my new wireless network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vioan.ro/wp/2008/03/23/set-up-a-wireless-network-in-the-new-house/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
