<?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>Jason's Computer Science Blog &#187; Wireless Networks</title>
	<atom:link href="http://www.jasonernst.com/category/wireless-networks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonernst.com</link>
	<description>By Jason Ernst</description>
	<lastBuildDate>Wed, 25 Jan 2012 14:04:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating a Bluetooth Access point (NAP) in Ubuntu 11.10</title>
		<link>http://www.jasonernst.com/2011/11/29/creating-a-bluetooth-access-point-nap-in-ubuntu-11-10/</link>
		<comments>http://www.jasonernst.com/2011/11/29/creating-a-bluetooth-access-point-nap-in-ubuntu-11-10/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 01:06:13 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[11.10]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[Access Point]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Bluez]]></category>
		<category><![CDATA[NAP]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1848</guid>
		<description><![CDATA[A Bluetooth NAP is similar to a Wi-Fi access point. In this case, we will be using NAP to share an Internet connection to another computer with Bluetooth. It is supposed to be able to support 7 or 8 devices connected at once in this manner. Eventually my personal goal is to use this in [...]]]></description>
			<content:encoded><![CDATA[<p>A Bluetooth NAP is similar to a Wi-Fi access point. In this case, we will be using NAP to share an Internet connection to another computer with Bluetooth. It is supposed to be able to support 7 or 8 devices connected at once in this manner. Eventually my personal goal is to use this in conjunction with a Wi-Fi connection to get slightly more speed at once or for some redundancy to help achieve a more ubiquitous/pervasive connection.</p>
<p>It turns out what should be a simple process is a bit tricky in Ubuntu. You would expect to be able to create an IP access point fairly easily so that you can share your Internet connection to other devices using Bluetooth. (It turns out it may be possible with Blueman &#8211; http://blog.larsstrand.org/2009/04/sharing-internet-connection-over.html, but I&#8217;ve never had any luck with setting it up this way.) Here&#8217;s some of the steps and resources I used to get it to work. I am using one laptop with a generic usb dongle and another toshiba netbook with built-in Bluetooth for this.</p>
<p>Before anything is started, you need to make sure the devices are paired and trusted with one another. I found the easiest way to get this to work is with blueman (it is in the Ubuntu repos). Also it seems to work better if you initiate the pairing from the client (the computer not sharing the connection).</p>
<p>First, you need a bridge interface. This is easy enough in Ubuntu, by editing the /etc/network/interfaces file. If the interface you wish to share is eth0 (if you want to share a Wi-Fi connection instead, you could switch this with something like wlan0 or whatever your Wi-Fi interface is), you could add something like this:</p>
<p><pre><pre>auto br1
iface br1 inet dhcp
&nbsp;&nbsp;bridge_ports eth0
&nbsp;&nbsp;bridge_fd 9
&nbsp;&nbsp;bridge_hello 2
&nbsp;&nbsp;bridge_maxage 12
&nbsp;&nbsp;bridge_stp off
</pre></pre></p>
<p>Next you need to make sure both computers can see each other via Bluetooth. This requires enabling scanning and turning the NAP into a master and the client(s) into slaves. This can be done as follows:<br />
<pre>sudo hciconfig hci0 piscan</pre><br />
and<br />
<pre>sudo hciconfig hci0 lm MASTER,ACCEPT</pre><br />
or<br />
<pre>sudo hciconfig hci0 lm SLAVE,ACCEPT</pre></p>
<p>You can now check to see if each of the computers can see each other on bluetooth by running:<br />
<pre>hcitool scan</pre><br />
where you should be able to see the opposite computer on each. </p>
<p>Next you want to start the NAP server on the computer you wish to share the connection from. (This is the computer with the bridge device). This script, which is available on the git repository will allow you to start up the NAP server. (it may also be possible to use pand, but I haven&#8217;t had any luck yet with it)<br />
This script is called test-nap. It takes a single argument, which is the name of the bridge device. So in our case we would first need to chmod +x the file (to make it executable), then run it like this: <pre>./test-nap br1</pre></p>
<div class="snippet"><pre><code>#!/usr/bin/python

import sys
import time
import dbus
from optparse import OptionParser, make_option

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object(&quot;org.bluez&quot;, &quot;/&quot;),
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;org.bluez.Manager&quot;)

option_list = [
&nbsp;&nbsp;&nbsp;&nbsp;make_option(&quot;-i&quot;, &quot;--device&quot;, action=&quot;store&quot;,
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;type=&quot;string&quot;, dest=&quot;dev_id&quot;),
&nbsp;&nbsp;&nbsp;&nbsp;]
parser = OptionParser(option_list=option_list)

(options, args) = parser.parse_args()

if options.dev_id:
&nbsp;&nbsp;adapter_path = manager.FindAdapter(options.dev_id)
else:
&nbsp;&nbsp;adapter_path = manager.DefaultAdapter()

server = dbus.Interface(bus.get_object(&quot;org.bluez&quot;, adapter_path),
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;org.bluez.NetworkServer&quot;)

service = &quot;nap&quot;

if (len(args) &lt; 1):
&nbsp;&nbsp;bridge = &quot;tether&quot;
else:
&nbsp;&nbsp;bridge = args[0]

server.Register(service, bridge)

print &quot;Server for %s registered for %s&quot; % (service, bridge)

print &quot;Press CTRL-C to disconnect&quot;

try:
&nbsp;&nbsp;time.sleep(1000)
&nbsp;&nbsp;print &quot;Terminating connection&quot;
except:
&nbsp;&nbsp;pass

server.Unregister(service)</code></pre></div>
<p>After this, you can search from the client to see if the NAP service can be discovered with the command:<br />
<pre>sdptool search NAP</pre><br />
You should be able to see the NAP service from your server machine at this point.</p>
<p>The last thing to do is edit the /etc/network/interfaces file on the client side (the device which will connect to the Internet via Bluetooth. When pand connects, it uses a bnep0 interface. You need to add the following to your file:<br />
<pre>iface bnep0 inet dhcp</pre></p>
<p>Now we are ready to connect. This is how you connect:<br />
<pre><pre>pand -c &lt;mac address of your server BT device&gt;
sudo ifup bnep0</pre></pre></p>
<h3>Links:</h3>
<ul style="margin-left: 15px;">
<li><a href="http://global.hkepc.com/forum/redirect.php?tid=1710030&#038;goto=lastpost">http://global.hkepc.com/forum/redirect.php?tid=1710030&#038;goto=lastpost</a></li>
<li><a href="https://www.linux.com/learn/tutorials/346552-personal-area-networking-with-bluetooth">https://www.linux.com/learn/tutorials/346552-personal-area-networking-with-bluetooth</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=1632825">http://ubuntuforums.org/showthread.php?t=1632825</a></li>
<li><a href="http://forum.doozan.com/read.php?2,2698">http://forum.doozan.com/read.php?2,2698</a></li>
<li><a href="http://xn--9bi.net/2009/06/17/tethering-iphone-3-0-to-ubuntu-9-04/">http://xn--9bi.net/2009/06/17/tethering-iphone-3-0-to-ubuntu-9-04/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2011/11/29/creating-a-bluetooth-access-point-nap-in-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming PhD QE Progress</title>
		<link>http://www.jasonernst.com/2011/07/27/upcoming-phd-qe-progress/</link>
		<comments>http://www.jasonernst.com/2011/07/27/upcoming-phd-qe-progress/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 17:26:38 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[4G]]></category>
		<category><![CDATA[Handover]]></category>
		<category><![CDATA[Heterogeneous]]></category>
		<category><![CDATA[Jason B. Ernst]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Seamless]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1739</guid>
		<description><![CDATA[So I&#8217;ve been doing my PhD for over two years now, and I haven&#8217;t posted a reflective &#8220;state of the thesis&#8221; post in quite some time, so here it is. I have maxed out my 50 pages (not included ToC and references) for some time now, it&#8217;s just been in the process of revision for [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been doing my PhD for over two years now, and I haven&#8217;t posted a reflective &#8220;state of the thesis&#8221; post in quite some time, so here it is. I have maxed out my 50 pages (not included ToC and references) for some time now, it&#8217;s just been in the process of revision for the last month or so! I have more or less settled on what my research actually is now and am getting a clearer picture of it in my head all the time.</p>
<p>Officially the topic is &#8220;Radio Resource Management for Quality of Service in Heterogeneous Wireless Networks&#8221;. This is quite the mouthful, I know. Really what it boils down to is: Making various wireless technologies (Bluetooth, WiFi, WiMAX, 3G, 4G, &#8230; , etc) seamlessly work together. Many devices are capable of connecting to many of these radio access technologies (RATs), but often it is not <em>seamless</em>. What do I mean by this? Well suppose I am inside a university building, deep in the basement (where they tend to put CS students <img src='http://www.jasonernst.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) where there is no mobile reception (3G, 4G etc.). I start downloading a large file, or call someone via wifi. Now I want to walk to my car because it&#8217;s time to go home for the day. Many networks now are not able to handle this, and it is interrupted after you change networks. Furthermore, you often have to manually tell the device you want to leave one network and join another. <em>Seamless</em> means this should all happen without you noticing. This is the focus of my research.</p>
<p>The biggest problem that I am concerned with is called handoff or handover. This is when the switch between RATs occurs. Traditionally, this also occurs when a mobile device switches from one tower to another, and it usually involved predicting the motion of the device along with some other factors for Quality of Service (QoS). For a vertical handover, we may or may not need to predict motion. If the heterogeneous wireless network (HWN) is densely covered, many RATs are available throughout the coverage region (as opposed to a sparsely covered where a given location may have access to one technology at once). In a dense HWN, the problem becomes a multi-criteria question.</p>
<ol>
<li>Which network is most economical for me to connect to?</li>
<li>Which configuration of (network, client) pairs is most profitable for the operator?</li>
<li>Which network is able to provide me with the required QoS?</li>
</ol>
<p>More technical details to follow&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2011/07/27/upcoming-phd-qe-progress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why Blanket Wireless Coverage in Waterloo Failed, and Potential Solutions</title>
		<link>http://www.jasonernst.com/2011/07/22/why-blanket-wireless-coverage-in-waterloo-failed-and-potential-solutions/</link>
		<comments>http://www.jasonernst.com/2011/07/22/why-blanket-wireless-coverage-in-waterloo-failed-and-potential-solutions/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 15:46:04 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[Atria]]></category>
		<category><![CDATA[Blanket Coverage]]></category>
		<category><![CDATA[KW Record]]></category>
		<category><![CDATA[Waterloo Region]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1723</guid>
		<description><![CDATA[Today the KW Record ran an article entitled &#8220;Blanket Wi-Fi plans unplugged in Waterloo Region and Guelph, but growing in Stratford&#8221;. I thought I&#8217;d throw in my two cents since this issue is very related to some of my research. Overall to me, the biggest factor that contributed to the failure of blanket wireless access [...]]]></description>
			<content:encoded><![CDATA[<p>Today the KW Record ran an article entitled <a href="http://www.therecord.com/news/local/article/567110--blanket-wi-fi-plans-unplugged-in-waterloo-region-and-guelph-but-growing-in-stratford">&#8220;Blanket Wi-Fi plans unplugged in Waterloo Region and Guelph, but growing in Stratford&#8221;</a>. I thought I&#8217;d throw in my two cents since this issue is very related to some of my research. Overall to me, the biggest factor that contributed to the failure of blanket wireless access in the Region of Waterloo was the cost of the service for users. From what I remember, it was on part with many high speed Internet plans. Why would someone pay the same price to have potentially slower, less secure service than competing wired services? </p>
<p>The Atria plan used large WiFi cells, with very expensive antennas (see the apartment building near University Plaza, which I believe was one of them).</p>
<p>Many other cities (much larger ones) have been very successful in providing blanket WiFi, using a completing different coverage model and cost model. The best example is San Francisco where a company named Meraki provides free wifi for over 100,000 people using their Mesh Router devices. These devices cost<a href="http://meraki.com/products/wireless/mr16#compare"> between $399 and $1500 each</a>, which is still expensive, but likely much cheaper than anything used by Atria. These devices likely have much lower range and handle dense areas compared with the atria cells which seem to be designed for large areas, and require many people to subscribe to pay for their costs. The argument in the article that WiFi coverage in metropolitan areas is difficult seems like a terrible attitude to have for an area that has a reputation as a high tech leader. San Francisco likely has much greater challenges in this regard compared to our tiny city. </p>
<p><center>
<div class="image"><a href="http://www.jasonernst.com/wp-content/uploads/2011/07/meraki_sf.jpg"><img src="http://www.jasonernst.com/wp-content/uploads/2011/07/meraki_sf-300x216.jpg" alt="" title="meraki_sf" width="300" height="216" class="aligncenter size-medium wp-image-1731" /></a><br/>Example coverage map in San Francisco</div>
<p></center></p>
<p>Instead of using these expensive devices, much cheaper devices such as linksys wrt routers could be used. These routers support linux, and because of this much customization is possible such as mesh networking. While these devices are less reliable than the previous more expensive solutions, it may be a good way to at least get the network started cheaply. Additionally, areas which are not used by as many people could be covered with cheaper routers, while areas with more dense traffic may be covered by expensive ones.</p>
<p>The argument in the article that WiFi networks are unnecessary because of cellular networks is ludicrous! If that is the case, why are every smartphone and other device including WiFi radios in them? It&#8217;s because data on cellular networks is way to expensive. Any place where a device can get free or low cost WiFi should be used instead of the cellular network. One large problem with this at the moment, however is that it is not seamless to go from a cellular network to a wifi network. For example, it is often not possible to carry on a phone call while switching networks, or continue downloading or steaming without interruption. This will change with much of the <a href="http://www.uoguelph.ca/~jernst/research.shtml" title="Heterogeneous Wireless Research">research in heterogeneous networks</a>.</p>
<p>One potential model that hasn&#8217;t been explored much is community wireless networks. In this case, devices could be provided to anyone willing to provide access to their own home network for the community. The incentive could be either donations from users, or a very small fee (2 &#8211; 5 dollars per month) which is distributed to providers. Additionally, anyone who provides a part of the network is able to get on free to other parts of the network. Of course, there&#8217;s nothing to stop the larger companies like Rogers and Bell from creating the same type of value added service. Since so many people already have wireless in their home using Rogers and Bell, they could create some type of login where you take your bandwidth quota with you and have access to anyone else&#8217;s network who is also participating. This way, you are not using their bandwidth cap (only their &#8220;speed&#8221; &#8211; which may introduce a whole other range of problems <img src='http://www.jasonernst.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2011/07/22/why-blanket-wireless-coverage-in-waterloo-failed-and-potential-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Points to consider for Usage Based Billing (UBB) in Canada</title>
		<link>http://www.jasonernst.com/2011/02/08/points-to-consider-for-usage-based-billing-ubb-in-canada/</link>
		<comments>http://www.jasonernst.com/2011/02/08/points-to-consider-for-usage-based-billing-ubb-in-canada/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 20:23:57 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[ICC 2010]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[ISP]]></category>
		<category><![CDATA[Price]]></category>
		<category><![CDATA[Service]]></category>
		<category><![CDATA[UBB]]></category>
		<category><![CDATA[Usage Based Billing]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1273</guid>
		<description><![CDATA[While I make no claims to understand the economics of the agreements between ISPs for forwarding traffic between each other, the point of this article is to provide a unique perspective since I am a graduate student in the networking field. I also briefly outline some potential techniques that could improve the situation (although none [...]]]></description>
			<content:encoded><![CDATA[<p>While I make no claims to understand the economics of the agreements between ISPs for forwarding traffic between each other, the point of this article is to provide a unique perspective since I am a graduate student in the networking field. I also briefly outline some potential techniques that could improve the situation (although none can really solve the problem of the alleged gap forming between revenue and expense). My personal opinion is against UBB since I believe it is against innovation and will make Canada less competitive. Charging per-byte rates will become far too expensive for many people to use the Internet in the same way as people in other countries (or those people with lots of extra money). It will result in contributing to the gap between have and have-nots where poorer people in the country are excluded from the same access to content and opportunity that others have. I try not to focus on arguing for UBB in this article because there are several existing articles which argue this quite well. (<a href="http://opinion.financialpost.com/2011/02/07/internet-usage-debate-the-real-myths/">Financial Post</a> <a href="http://www.theglobeandmail.com/news/technology/tech-news/ubb-internet/the-public-is-right-to-be-cynical-of-internet-usage-regulators/article1898151/">The Globe and Mail</a>).</p>
<p>In May of 2010, I attended an IEEE conference called the International Communications Conference (ICC 2010) in Capetown, South Africa. This conference is considered the one of the top conferences by the IEEE communications society and is attended by many experts in the communications field. I found one of the keynote speeches by Dr. Steven D. Gray, Head &#038; Vice President Corporate Research, Huawei Technologies to be especially relevant to the current debate in Canada over usage based billing (UBB). The keynote is available free online from the <a href="http://www.comsoc.org/webcasts/view/accelerating-growth-future-services-media-centric-networks">IEEE ComSoc</a> (please note, the keynote I am referencing here starts at about 51 minutes in the presentation). </p>
<p>While the key point about profitability deals with wireless carriers, it may also be relevant to wired network providers. Especially in Canada for the following reasons:</p>
<ol style="margin-left: 20px; margin-bottom: 10px; ">
<li>The vast, sparse country which must be connected</li>
<li>The constant upgrades to equipment required</li>
<li>The limited capabilities of backbone and infrastructure networks &amp; increasing speeds of user connections</li>
<li>Steady growth in traffic from users</li>
</ol>
<h2>1. The vast, sparse country which must be connected</h2>
<p>Compared to other countries in the world, Canada is very sparse. According to a <a href="http://en.wikipedia.org/wiki/List_of_sovereign_states_and_dependent_territories_by_population_density">Wikipedia article surveying population density around the world</a>, Canada places 228 in the world. According to <a href="http://cache.gawker.com/assets/images/gizmodo/2009/10/raw.jpg">this figure</a> (from Gizmodo), Canada ranks 8th in the world for average broadband speeds. Compared with the USA, which ranks 15th (and has a population density almost 10 times higher than Canada), we have less than twice the average speed for roughly the double the cost. Considering our low density and similar geographic size, one would expect we would pay much more.</p>
<div class="image" style="float:left;"><a href="http://www.jasonernst.com/wp-content/uploads/2011/02/connection-map.png"><img src="http://www.jasonernst.com/wp-content/uploads/2011/02/connection-map-300x300.png" alt="" title="connection-map" width="300" height="300" class="aligncenter size-medium wp-image-1285" /></a>
<p style="text-align: center;">Map of the Internet [<a href="http://www.opte.org/maps/">http://www.opte.org/maps/</a>]</p>
</div>
<h2>2. The constant upgrades to equipment required</h2>
<p>The communications industry is constantly evolving as engineers and scientists figure out how to make faster connections or find new ways to communicate (for example, 10 mbps ethernet to 100 mbps to gigabit and beyond), (example 2: Ethernet to fibre optic, or even next generation wireless networks). Every time something new comes out or improvements are made, the companies must put money into making it work with what they already have, deploy new equipment and so forth. Often because the networks are becoming more complex it requires hiring more people to manage them (which may eventually be solved by autonomous networking, but that&#8217;s a different story). </p>
<p>Another example of expense to keep up to date in Canada is Bell Canada. Many people with Bell Internet also have wireless access points provided by Bell. Unfortunately, these access points default to (or in some cases only support) WEP encryption. This encryption is not secure at all and can be broken by your average teenager with instruction off <a href="http://www.youtube.com/watch?v=3seUWVK_Tb0">youtube</a>. However it could be argued in hindsight this type of expense is the company&#8217;s fault.</p>
<p>Furthermore, to increase capacity in the network, it is not as simple as just adding another link between an under-supplied area. Consider a small town where a few people make use of the majority of the connection cause poor performance for the others in the town. This town may be a candidate for increased capacity, but by adding another connection the company does not stand to gain any increase in subscribers and thus may stand to lose money. Now expand this example to larger cities where higher and higher proportions of the population are using more and more of their connection to the point where almost everyone is straining the infrastructure. There are solutions to this type of problem though. Some companies in the US and other places make use of traffic shaping (which while unpopular is a cheaper alternative to the user). Perhaps two types of plans could be put in place, one with traffic shaping and unlimited usage, or one with no traffic shaping and limited usage.</p>
<h2>3. The limited capabilities of backbone and infrastructure networks &amp; increasing speeds of user connections</h2>
<p>One of the problems with the increased cost to the providers is the increased speed of user connections. Allowing users to have faster connections means they can request more information at once. Imagine many people flushing their toilets at the same time where the pipe at the road isnt big enough to handle all of the water at once. This is what has been allowed to happen. The problem is further compounded because it is not as simple as water simply flowing through pipes. At each junction, decisions must be made on the direction of the flow. If too much traffic arrives at once junction, the time it takes to make a decision is slower than the rate new traffic is appearing and big problems happen.</p>
<h2>4. Steady growth in traffic from users</h2>
<p>As can be seen in some of the figures in the ICC keynote, traffic from users is growing exponentially. Unfortunately, the service providers&#8217; revenue is usually growing linearly, so there is eventually a point where it is not profitable for the companies to provide Internet service (assuming the cost to provide exponential traffic grows exponentially). This is the most compelling point for usage based-billing. Unless we can somehow find a way to reduce the growth of data, the only way to retain profitable ISPs is to increase the revenue. </p>
<div class="image" style="float:right;"><a href="http://www.jasonernst.com/wp-content/uploads/2011/02/cisco.jpg"><img src="http://www.jasonernst.com/wp-content/uploads/2011/02/cisco-300x202.jpg" alt="" title="cisco" width="300" height="202" class="aligncenter size-medium wp-image-1289" /></a>
<p style="text-align: center;">Internet growth [<a href="http://www.cisco.com/en/US/solutions/collateral/ns341/ns525/ns537/ns705/ns827/white_paper_c11-481374_ns827_Networking_Solutions_White_Paper.html">Cisco</a>]</p>
</div>
<h2>5. Conflicting interests between user service and shareholders profits &amp; the disconnect between what you get and what is advertised</h2>
<p>This is another important problem with ISPs. Perhaps this is the reason that the infrastructure managed to get into its current state (where it cannot handle everyone making full use of their advertised connections). In order to gain a competitive advantage over competing ISPs, each company often advertises their maximum potential connection speeds. There is never any mention of the network past the point where your house connects to the ISP. Sure if no one else in your neighbourhood is using the connection you might get close to the advertised speed, but as many people know, you often don&#8217;t get close. From the shareholder point of view, you want the company to spend as little as possible on infrastructure. Perhaps it may be necessary the enforce a rule that companies must be able to provide the full advertised speed, regardless of how many other people are on the network. Of course, this would make the Internet much more expensive.</p>
<h2>6. Potential Solutions instead of UBB</h2>
<p>There are many promising technical solutions to some of the problems that are causing the gap between cost and revenue in Internet technologies, however many of them may not make enough of an impact, or are still too premature to cause a difference yet. So in the meantime something must be done.</p>
<p>In the case of providing video services or other multimedia streaming services such as Netflix, LastFM etc. technologies such as multi-casting may be used to deliver common data to a group of users with one packet (in the unicast model, one packet is sent over and over again for every user, even if they are watching the same content).</p>
<p>To reduce the cost of human maintenance and  oversight over the networks, applying autonomic computing techniques to networks so that they can self-manage, self-protect etc. may be beneficial.</p>
<p>Exploiting peer-to-peer, caching and other technologies that reduce communications over the large distances on the Internet may help reduce the cost of delivering traffic on the Internet.</p>
<p>Providing tiered Internet service, where users pay for different service levels may be another model altogether that allows companies to remain competitive without usage based billing. Make traffic that causes high strain on the networks (such as streaming video, real-time traffic etc.) more expensive than traffic that is delay tolerant and has lower requirements (web, email etc.)</p>
<p>Perhaps the government itself should take a more active role in providing Internet infrastructure in Canada if the Internet is seen as another piece of infrastructure like roads, bridges and electricity.</p>
<h2>Concluding remarks</h2>
<p>Of course, there are many assumptions to the case for UBB. The assumption that the cost for service providers is growing exponentially is the biggest and most important. Wired network access doesn&#8217;t have the same problems wireless has (the broadcast, limited bandwidth medium, interference etc.) so the comparisons may not actually be valid. The case becomes complicated by the fact that many ISPs are also in the business of providing wireless service, media services (tv, radio, newspaper etc.) that causes conflicts of interest.</p>
<p>The trouble I have with charging the heaviest users is that everyone seems to be trending towards using more and more traffic. In my own experience with large ISPs I feel like I&#8217;m always getting less for more money (usage caps have been getting lower and lower, yet the bill keeps going up). The advertised speeds of the networks are going up, but the capacity seems to be falling since we can get more faster, but less overall.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2011/02/08/points-to-consider-for-usage-based-billing-ubb-in-canada/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04, BB Storm 9530 Tethering</title>
		<link>http://www.jasonernst.com/2010/12/24/ubuntu-10-04-bb-storm-9530-tethering/</link>
		<comments>http://www.jasonernst.com/2010/12/24/ubuntu-10-04-bb-storm-9530-tethering/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 20:43:29 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[9530]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Storm]]></category>
		<category><![CDATA[Tether]]></category>
		<category><![CDATA[Ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1196</guid>
		<description><![CDATA[Some quick instructions on how to tether the Blackberry Storm 9530 in Ubuntu 10.04. (Tethering is for connecting to the Internet using your blackberry for the connection) sudo apt-get install python libusb-dev ppp python-usb python-wxgtk2.8 wget https://bitbucket.org/tcolar/berry4all/downloads/bbtether-0.3m.tgz tar xvf bbthether-0.3m.tgz sudo ./berry4all.sh Then in GUI select Modem->Connect Then select &#8220;Bell Mobility&#8221; when prompted.]]></description>
			<content:encoded><![CDATA[<p>Some quick instructions on how to tether the Blackberry Storm 9530 in Ubuntu 10.04. (Tethering is for connecting to the Internet using your blackberry for the connection)</p>
<div class="snippet">
<div class="snippet-shell">
<code>sudo apt-get install python libusb-dev ppp python-usb python-wxgtk2.8</code></div>
</div>
<div class="snippet">
<div class="snippet-shell">
<code>wget https://bitbucket.org/tcolar/berry4all/downloads/bbtether-0.3m.tgz</code></div>
</div>
<div class="snippet">
<div class="snippet-shell">
<code>tar xvf bbthether-0.3m.tgz</code></div>
</div>
<div class="snippet">
<div class="snippet-shell">
<code>sudo ./berry4all.sh</code></div>
</div>
<p><center><a href="http://www.jasonernst.com/wp-content/uploads/2010/12/Berry4All_005.png"><img src="http://www.jasonernst.com/wp-content/uploads/2010/12/Berry4All_005.png" alt="" title="Berry4All_005" width="727" height="507" class="aligncenter size-full wp-image-1197" /></a></center></p>
<p>Then in GUI select Modem->Connect<br />
Then select &#8220;Bell Mobility&#8221; when prompted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2010/12/24/ubuntu-10-04-bb-storm-9530-tethering/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BWCCA 2010 &#8211; Adaptive Mixed Bias Resource Allocation for Wireless Mesh Networks</title>
		<link>http://www.jasonernst.com/2010/11/04/bwcca-2010-adaptive-mixed-bias-resource-allocation-for-wireless-mesh-networks/</link>
		<comments>http://www.jasonernst.com/2010/11/04/bwcca-2010-adaptive-mixed-bias-resource-allocation-for-wireless-mesh-networks/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 05:24:39 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Allocation]]></category>
		<category><![CDATA[Bias]]></category>
		<category><![CDATA[BWCCA]]></category>
		<category><![CDATA[Ernst]]></category>
		<category><![CDATA[Fukuoka]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Jason]]></category>
		<category><![CDATA[Mesh]]></category>
		<category><![CDATA[Mixed]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Nkwe]]></category>
		<category><![CDATA[Resource]]></category>
		<category><![CDATA[Thabo]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1164</guid>
		<description><![CDATA[Today I presented a recent paper on &#8220;Adaptive Mixed Bias Resource Allocation for Wireless Mesh Networks&#8221; at the BWCCA conference in Fukuoka Japan. The paper is authored by myself and Thabo Nkwe from the University of Guelph. The abstract is below: Abstract: In wireless networks, conditions may change rapidly and unpredictably. Often wireless networks are [...]]]></description>
			<content:encoded><![CDATA[<p>Today I presented a recent paper on &#8220;Adaptive Mixed Bias Resource Allocation for Wireless Mesh Networks&#8221; at the BWCCA conference in Fukuoka Japan. The paper is authored by myself and Thabo Nkwe from the University of Guelph. The abstract is below:</p>
<p>Abstract:<br />
In wireless networks, conditions may change rapidly and unpredictably. Often wireless networks are not designed to adapt to these changing conditions and perform poorly when they become congested. The multi-hop broadcast nature of wireless mesh networks amplifies the problem of poor wireless performance. Mixed bias scheduling has previously been applied successfully to wireless mesh networks however, it still suffers from similar problems when conditions change rapidly. In this work we propose an adaptive mixed bias (AMB) algorithm which uses a tabu search approach to change based on delay and dropped packets in the network. The proposed scheduling approach consists of three important algorithms, namely, the tabu search algorithm, move generation, and utility function. The adaptive mixed bias approach is compared against IEEE 802.11 and the non-adaptive mixed bias approach. The performance is evaluated using the packet delivery ratio and average end-to-end delay metrics.</p>
<p>Here are the slides from the talk: <a href='http://www.jasonernst.com/wp-content/uploads/2010/11/BWCCA-NGWMN2010-final.pdf'>BWCCA-NGWMN2010-final (pdf)</a><br />
and here is the link to the pdf from the conference: <a href="http://www.computer.org/portal/web/csdl/doi/10.1109/BWCCA.2010.144">Adaptive Mixed Bias Resource Allocation for Wireless Mesh Networks (pfd)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2010/11/04/bwcca-2010-adaptive-mixed-bias-resource-allocation-for-wireless-mesh-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Research Day &#8211; Summer 2010</title>
		<link>http://www.jasonernst.com/2010/08/30/research-day-summer-2010/</link>
		<comments>http://www.jasonernst.com/2010/08/30/research-day-summer-2010/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 14:36:21 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[Access]]></category>
		<category><![CDATA[Heterogeneous]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[RAT]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=1093</guid>
		<description><![CDATA[Tomorrow I present at Research Day at University of Guelph at 1:30pm. Here is the abstract for the presentation: Title: Radio Resource Management in Heterogeneous Wireless Networks Abstract: Wireless networks are quickly becoming pervasive allowing users to stay connected anytime anywhere. However, current implementations are not seamless. There are many different radio access technologies (RATs), [...]]]></description>
			<content:encoded><![CDATA[<p>Tomorrow I present at Research Day at University of Guelph at 1:30pm. Here is the abstract for the presentation:</p>
<p><strong>Title</strong>: Radio Resource Management in Heterogeneous Wireless Networks</p>
<p><strong>Abstract</strong>: <em>Wireless networks are quickly becoming pervasive allowing users to stay connected anytime<br />
anywhere. However, current implementations are not seamless. There are many different radio<br />
access technologies (RATs), for example 802.11 (Wifi), 802.15 (Bluetooth, Zigbee), 802.16 (WiMAX)<br />
and 3g cellular / mobile technologies which are not inter-operable. The aim of heterogeneous<br />
wireless networking is to bridge the technological gap between the existing equipment and software.<br />
When this occurs, the wireless spectrum may be used more efficiently and it is expected users will<br />
have a better experience using the networks. Ideally, the devices should be able to select the best<br />
RAT at a given moment in time based on some criteria, for example cost or capacity. A background<br />
on the architecture of heterogeneous networks will be presented. Problems such as handover, radio<br />
resource management and quality of service (QoS) will be discussed and a direction for further<br />
study will be established.</em></p>
<p>Update: Here are the slides from the presentation for those who are interested:<a href='http://www.jasonernst.com/wp-content/uploads/2010/08/researchday2010.pdf'>Research Day 2010 (pdf) &#8211; Jason Ernst</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2010/08/30/research-day-summer-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ICC 2010 &#8211; Cross-Layer Mixed Bias Scheduling for Wireless Mesh Networks</title>
		<link>http://www.jasonernst.com/2010/06/04/icc-2010-cross-layer-mixed-bias-scheduling-for-wireless-mesh-networks/</link>
		<comments>http://www.jasonernst.com/2010/06/04/icc-2010-cross-layer-mixed-bias-scheduling-for-wireless-mesh-networks/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 15:30:29 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Bias]]></category>
		<category><![CDATA[Guelph]]></category>
		<category><![CDATA[ICC 2010]]></category>
		<category><![CDATA[Jason B. Ernst]]></category>
		<category><![CDATA[Mieso Denko]]></category>
		<category><![CDATA[Mixed]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Publication]]></category>
		<category><![CDATA[Scheduling]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=845</guid>
		<description><![CDATA[This post is somewhat motivated by Prof. Andrew Eckford&#8217;s post that encourages graduate students and faculty members to post more about their work on sites like Twitter. Since I attended the same conference (ICC 2010), I thought it would be good to share a bit about my presentation and my experience at the conference. While [...]]]></description>
			<content:encoded><![CDATA[<p>This post is somewhat motivated by <a href="http://andreweckford.blogspot.com/2010/06/you-should-be-tweeting.html">Prof. Andrew Eckford&#8217;s post</a> that encourages graduate students and faculty members to post more about their work on sites like Twitter. Since I attended the same conference (ICC 2010), I thought it would be good to share a bit about my presentation and my experience at the conference.</p>
<p>While I don&#8217;t have a video for you to watch the entire presentation, I do have some pictures, and I&#8217;ll post the paper and slides I presented in case any one is interested. If you have any questions feel free to post on here or email me directly and I&#8217;ll be happy to answer any of them.</p>
<p><span id="more-845"></span></p>
<p>J.B. Ernst and M.K. Denko, &#8220;Cross-Layer Mixed Bias Scheduling for Wireless Mesh Networks,&#8221; in <em>Proc. IEEE International Conference on Communications (ICC)</em>, Cape Town, South Africa, 2010.</p>
<p><center>
<div class="image"><img src="http://www.jasonernst.com/wp-content/uploads/2010/06/icc2010-presentation-300x225.jpg" alt="ICC 2010 - Jason Ernst"/></div>
<p></center></p>
<p><em>Abstract</em>—In this paper we propose a mixed bias approach which makes use of cross layer optimization. The cross-layer parameters are based on conditions in the network from multiple layers and are used to determine resource and time allocation for nodes in the network. Unlike existing proposals, we propose to bias against several parameters such as link quality and queue size in addition to node distance. We also propose a combined mixed bias approach which takes into account multiple parameters together. The scheme is evaluated using simulation experiments. The performance results are reported in this paper.</p>
<p><a href="http://www.jasonernst.com/wp-content/uploads/2010/06/icc2010.pdf">Download the paper (pdf)</a><br />
<a href="http://www.jasonernst.com/wp-content/uploads/2010/06/ICC2010-presentation.pdf">Download the presentation slides (pdf)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2010/06/04/icc-2010-cross-layer-mixed-bias-scheduling-for-wireless-mesh-networks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tutorial: Install ns-3 in Windows 7 using cygwin</title>
		<link>http://www.jasonernst.com/2010/04/15/ns-3-7-1-windows-7-cygwin/</link>
		<comments>http://www.jasonernst.com/2010/04/15/ns-3-7-1-windows-7-cygwin/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 19:35:56 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Simulation]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[802.11]]></category>
		<category><![CDATA[802.11s]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[NS-3]]></category>
		<category><![CDATA[NS-3.10]]></category>
		<category><![CDATA[NS-3.7.1]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=781</guid>
		<description><![CDATA[Ns-3 is one of the most popular simulation tools for network simulation. See the website: http://www.nsnam.org/. It is the successor to the popular ns-2 simulator. The tool is written in c++ / python, but I manage to get by using mostly only c++ (as opposed to ns-2 which uses c/c++ and tcl). One major difference [...]]]></description>
			<content:encoded><![CDATA[<p>Ns-3 is one of the most popular simulation tools for network simulation. See the website: <a href="http://www.nsnam.org/">http://www.nsnam.org/</a>. It is the successor to the popular ns-2 simulator. The tool is written in c++ / python, but I manage to get by using mostly only c++ (as opposed to ns-2 which uses c/c++ and tcl). One major difference between ns-3 and ns-2 is that this version has been designed for wireless network simulation from the ground up. (There is support for many types of 802.11 networks including 802.11s mesh networks which interest me).</p>
<p><span id="more-781"></span></p>
<p>The following instructions explain how to install the latest stable version of ns3 (<del datetime="2011-03-22T14:57:11+00:00">as of April 14th, 2010</del> as of March 22nd 2011 with ns-3.10) on windows 7 with cygwin. It should work with newer releases as they come out, but if not leave me a message and I will update the instructions. I will try to include any common problems I have encountered, or those of users who comment on the post experience in order to make your install easier.</p>
<p>Step 1:<br />
<a href="http://www.cygwin.com/setup.exe">Download &#038; install cygwin</a>. (note: I install it in the recommended directory &#8220;{System Root}/cygwin/&#8221;). Make sure you select &#8220;install&#8221; for python and devel. This will ensure you have python and gcc/g++ as well as all of the dependencies. You can do this by clicking on the word default in the list of packages. I left all of the other package options on default for the install.</p>
<p>Step 2:<br />
<del datetime="2011-03-22T14:58:32+00:00"><a href="http://www.nsnam.org/releases/ns-allinone-3.7.1.tar.bz2">Download ns3.7.1</a></del>Download the most recent version of ns3 from their <a href="http://www.nsnam.org/download.html">website</a> (you will likely want the all-in-one version if you are just starting out. Save the file to &#8220;{System Root}/cygwin/home/{your-username}&#8221;. Alternatively, you can try downloading the file directly within cygwin using something like &#8220;wget http://http://www.nsnam.org/releases/<filename>&#8221; where filename is the name of the release you wish to install.</p>
<p>Step 3:<br />
Start cygwin. At the cygwin prompt type: &#8220;tar xvf ns-allinone-3.7.1.tar.bz2&#8243; (or whatever the filename is depending on the version you downloaded). This will unpack the ns3 archive so you can use it.</p>
<p>Step 4:<br />
After it has unpacked, change directory to the new ns3 directory with the following: &#8220;cd ns-allinone-3.7.1&#8243;. Then build ns3 by typing the following: &#8220;./build.py&#8221;. You can probably grab a coffee or tea while it compiles.</p>
<p><center>
<div class="image"><img src="http://www.jasonernst.com/wp-content/uploads/2010/04/cygwin-ns3-300x200.jpg" alt="ns3 cygwin windows 7"/>
<p style="text-align:center;">ns3 on windows 7 with cygwin</div>
<p></center></p>
<p>Step 5:<br />
You should be good to go. You can validate the install by changing directory again to the ns-3.7.1 directory (&#8220;cd ns-3.7.1&#8243;) and running &#8220;./test.py&#8221;. It will let you know with a PASS / FAIL for each test case. You can now edit the files yourself. The scenario files are located in &#8220;&#8221; and the source files are located in &#8220;&#8221;. Good luck!</p>
<p><strong>Note</strong>: For those getting remapping errors, I have finally had the same trouble. This is what worked for me: Open command prompt, change to your /cygwin/bin directory. Type: &#8216;ash&#8217;. Then type &#8216;/bin/rebaseall&#8217;. You can now try cygwin again and it may work. If it still does not work (this happened to me), you can apply <a href="http://blog.brev.name/2010/09/nodejs-on-windows-7-under-cygwin.html">this fix</a> to the rebaseall script. (you can edit it using some tool like notepad within windows).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2010/04/15/ns-3-7-1-windows-7-cygwin/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
		</item>
		<item>
		<title>ANN for Wireless Network Applications</title>
		<link>http://www.jasonernst.com/2009/09/28/ann-for-wireless-network-applications/</link>
		<comments>http://www.jasonernst.com/2009/09/28/ann-for-wireless-network-applications/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 19:40:09 +0000</pubDate>
		<dc:creator>Jason Ernst</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Wireless Networks]]></category>
		<category><![CDATA[Artificial Neural Networks]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.jasonernst.com/?p=715</guid>
		<description><![CDATA[This semester I have been taking a soft computing course. We have covered fuzzy logic and are starting artificial neural networks (ANN) although I have missed a couple of classes due to the conferences I have been attending. Anyway the ANN class today piqued my interest in how I can apply this to my area [...]]]></description>
			<content:encoded><![CDATA[<p>This semester I have been taking a soft computing course. We have covered fuzzy logic and are starting artificial neural networks (ANN) although I have missed a couple of classes due to the conferences I have been attending. Anyway the ANN class today piqued my interest in how I can apply this to my area which is wireless networks. It seems to me so far that it could be applied to some of my cross-layer work since the network could be trained to tune parameters to settings which yield good performance based on specific network conditions. However, I&#8217;m not sure if this approach would be good or if some other AI type of technique may be better. Also I am interested in how ANNs could be applied to breaking encryption schemes if it is even possible. I have tried a few searches on Google and some journals / conferences but nothing of interest has come up yet. I don&#8217;t think I really understand ANNs enough to answer any of the questions, but I thought I&#8217;d get them down so I can come back later and think when I have more time. Feel free to leave any comments or suggestions on these ideas.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasonernst.com/2009/09/28/ann-for-wireless-network-applications/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

