<?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>YiBi&#039;s Life&#124;Live Log &#187; next generation broadband network Archives  &#8211; YiBi&#8217;s Numb Log</title>
	<atom:link href="http://blog.yibi.org/tag/next-generation-broadband-network/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.yibi.org</link>
	<description>Blogging about what I like to do</description>
	<lastBuildDate>Wed, 04 Jan 2012 16:36:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>IPhone Tethering &#8211; Use and Abuse!</title>
		<link>http://blog.yibi.org/2010/01/29/iphone-tethering-use-and-abuse</link>
		<comments>http://blog.yibi.org/2010/01/29/iphone-tethering-use-and-abuse#comments</comments>
		<pubDate>Fri, 29 Jan 2010 13:46:51 +0000</pubDate>
		<dc:creator>yibi</dc:creator>
				<category><![CDATA[5 Minute Guides]]></category>
		<category><![CDATA[Geek Toys]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[The Techie Stuff]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[HSPA]]></category>
		<category><![CDATA[internet sharing]]></category>
		<category><![CDATA[iphone tethering]]></category>
		<category><![CDATA[iptable]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux router]]></category>
		<category><![CDATA[next generation broadband network]]></category>
		<category><![CDATA[singtel 3G]]></category>
		<category><![CDATA[singtel mobile broadband]]></category>
		<category><![CDATA[transparent proxying]]></category>

		<guid isPermaLink="false">http://blog.yibi.org/?p=618</guid>
		<description><![CDATA[This is the geeky sequel to my last Linux to IPhone tethering episode where we used and abused the IPhone<a href="http://blog.yibi.org/2010/01/29/iphone-tethering-use-and-abuse" class="searchmore">Read the Rest...</a><div class="clr"></div>


Related posts:<ol><li><a href='http://blog.yibi.org/2010/01/27/linux-to-iphone-tethering-in-5-mins' rel='bookmark' title='Linux to IPhone Tethering In 5 Mins'>Linux to IPhone Tethering In 5 Mins</a></li>
<li><a href='http://blog.yibi.org/2010/05/20/native-iphone-tethering-on-linux-debian' rel='bookmark' title='Native IPhone Tethering On Linux (Debian)'>Native IPhone Tethering On Linux (Debian)</a></li>
<li><a href='http://blog.yibi.org/2010/05/24/update-native-tethering-to-iphone-on-linux' rel='bookmark' title='Update: Native Tethering To IPhone On Linux'>Update: Native Tethering To IPhone On Linux</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This is the geeky sequel to my last Linux to IPhone tethering episode where we used and abused the IPhone tethering function.</p>
<p>Some background, I&#8217;m one of those people who contracted (and got stuck) with the 50G SingTel Mobile Broadband Plan before the days of 12GB IPhone plan. My usage was about 4G per month, so none of the plans was suitable for me at that time.</p>
<p>Anyway, that aside. For some reasons my team had to work in a place where we had no internet access while we are building the network for high speed internet access. What irony! The only systems engineer in the team (me) decided that I had alot of data to spare, so here we go&#8230;use and abuse!</p>
<p>Configuration&#8217;s simple. First you have to setup tethering as per my <a title="Linux to IPhone Tethering" href="http://blog.yibi.org/2010/01/27/linux-to-iphone-tethering-in-5-mins" target="_self">previous post on IPhone tethering</a>. Once you are done with that, do the follow steps. And again, it&#8217;s a 5 minute quick hack.</p>
<p>1. vi linux-router.sh</p>
<p>2. Paste the following into the shell script</p>
<blockquote><p>#!/bin/bash<br />
/sbin/ifconfig wlan0 192.168.0.1 255.255.255.0<br />
/sbin/iptables -t nat -A POSTROUTING -o bnep0 -j MASQUERADE<br />
/sbin/iptables -A FORWARD -i bnep0 -o wlan0 -m state &#8211;state RELATED,ESTABLISHED -j ACCEPT<br />
/sbin/iptables -A FORWARD -i wlan0 -o bnep0 -j ACCEPT</p></blockquote>
<p>3. Save the file.<br />
4. chmod 700 linux-router.sh<br />
5. ./linux-router.sh<br />
6. Done!</p>
<p>My colleagues are connected to a WIFI router, hence the use of wlan0 as the &#8220;inside&#8221; interface. bnep0 is the &#8220;outside&#8221; interface connected to the IPhone via bluetooth. All the machines point to my laptop as the gateway, which bears the IP address 192.168.0.1. All of them are NAT&#8217;d out from the outside interface.</p>
<p>I have 2Mbps for my plan. Good enough for the team to check email and do some simple web browsing for information.</p>
<p>There are other things you can do like transparent proxying so that you save abit of bandwidth.</p>
<p>Leave a comment if you have any questions on the configurations. Have fun!</p>


<p>Related posts:<ol><li><a href='http://blog.yibi.org/2010/01/27/linux-to-iphone-tethering-in-5-mins' rel='bookmark' title='Linux to IPhone Tethering In 5 Mins'>Linux to IPhone Tethering In 5 Mins</a></li>
<li><a href='http://blog.yibi.org/2010/05/20/native-iphone-tethering-on-linux-debian' rel='bookmark' title='Native IPhone Tethering On Linux (Debian)'>Native IPhone Tethering On Linux (Debian)</a></li>
<li><a href='http://blog.yibi.org/2010/05/24/update-native-tethering-to-iphone-on-linux' rel='bookmark' title='Update: Native Tethering To IPhone On Linux'>Update: Native Tethering To IPhone On Linux</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.yibi.org/2010/01/29/iphone-tethering-use-and-abuse/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;S&#8217;pore broadband limps&#8221; &#8211; Straits Times</title>
		<link>http://blog.yibi.org/2009/09/08/spore-broadband-limps-straits-times</link>
		<comments>http://blog.yibi.org/2009/09/08/spore-broadband-limps-straits-times#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:46:05 +0000</pubDate>
		<dc:creator>yibi</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[adsl]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[high speed internet]]></category>
		<category><![CDATA[next generation broadband network]]></category>

		<guid isPermaLink="false">http://blog.yibi.org/?p=392</guid>
		<description><![CDATA[When I saw this heading, I can&#8217;t help laughing. ST can&#8217;t be more right. The article talks about why Singapore<a href="http://blog.yibi.org/2009/09/08/spore-broadband-limps-straits-times" class="searchmore">Read the Rest...</a><div class="clr"></div>


Related posts:<ol><li><a href='http://blog.yibi.org/2009/09/06/ftth-is-here-check-your-postal-code-now' rel='bookmark' title='FTTH is here! Check your postal code now!'>FTTH is here! Check your postal code now!</a></li>
<li><a href='http://blog.yibi.org/2011/08/30/m1-fibre-broadband-update' rel='bookmark' title='M1 Fibre Broadband Update'>M1 Fibre Broadband Update</a></li>
<li><a href='http://blog.yibi.org/2011/12/27/filesonic-fibre-broadband-9-4mbytes' rel='bookmark' title='FileSonic + Fibre Broadband @ 9.4Mbyte/s'>FileSonic + Fibre Broadband @ 9.4Mbyte/s</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>When I saw this heading, I can&#8217;t help laughing. ST can&#8217;t be more right. The article talks about why Singapore broadband lags behind. One of the reason quoted was that we do not have a high speed fibre network here. Do I agree? If you ask me, no. What do think? We are going to get our high speed fibre network in the next fews year to come. Let&#8217;s see how things turn out then.</p>
<p>Read the full article <a href="http://www.straitstimes.com/Breaking%2BNews/Singapore/Story/STIStory_426491.html" target="_blank">here</a>.</p>


<p>Related posts:<ol><li><a href='http://blog.yibi.org/2009/09/06/ftth-is-here-check-your-postal-code-now' rel='bookmark' title='FTTH is here! Check your postal code now!'>FTTH is here! Check your postal code now!</a></li>
<li><a href='http://blog.yibi.org/2011/08/30/m1-fibre-broadband-update' rel='bookmark' title='M1 Fibre Broadband Update'>M1 Fibre Broadband Update</a></li>
<li><a href='http://blog.yibi.org/2011/12/27/filesonic-fibre-broadband-9-4mbytes' rel='bookmark' title='FileSonic + Fibre Broadband @ 9.4Mbyte/s'>FileSonic + Fibre Broadband @ 9.4Mbyte/s</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.yibi.org/2009/09/08/spore-broadband-limps-straits-times/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTTH is here! Check your postal code now!</title>
		<link>http://blog.yibi.org/2009/09/06/ftth-is-here-check-your-postal-code-now</link>
		<comments>http://blog.yibi.org/2009/09/06/ftth-is-here-check-your-postal-code-now#comments</comments>
		<pubDate>Sun, 06 Sep 2009 15:31:57 +0000</pubDate>
		<dc:creator>yibi</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[The Techie Stuff]]></category>
		<category><![CDATA[ftth]]></category>
		<category><![CDATA[high speed internet access]]></category>
		<category><![CDATA[next generation broadband network]]></category>
		<category><![CDATA[opennet]]></category>

		<guid isPermaLink="false">http://blog.yibi.org/?p=368</guid>
		<description><![CDATA[Has anyone checked the coverage check at OpenNet&#8217;s website lately? A friend of mine checked his postal code and was presented<a href="http://blog.yibi.org/2009/09/06/ftth-is-here-check-your-postal-code-now" class="searchmore">Read the Rest...</a><div class="clr"></div>


Related posts:<ol><li><a href='http://blog.yibi.org/2009/09/08/spore-broadband-limps-straits-times' rel='bookmark' title='&#8220;S&#8217;pore broadband limps&#8221; &#8211; Straits Times'>&#8220;S&#8217;pore broadband limps&#8221; &#8211; Straits Times</a></li>
<li><a href='http://blog.yibi.org/2011/08/30/m1-fibre-broadband-update' rel='bookmark' title='M1 Fibre Broadband Update'>M1 Fibre Broadband Update</a></li>
<li><a href='http://blog.yibi.org/2010/01/29/iphone-tethering-use-and-abuse' rel='bookmark' title='IPhone Tethering &#8211; Use and Abuse!'>IPhone Tethering &#8211; Use and Abuse!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox[2009-8-0-23-41-55]" href="http://lh3.ggpht.com/_QeG60iATtlQ/SqPYAUSq6SI/AAAAAAAAA_4/S5DkCzilPPs/opennet%20signup.png?imgmax=640"><img class="pie-img alignleft" style="margin:10px 10px 10px 10px;" src="http://lh3.ggpht.com/_QeG60iATtlQ/SqPYAUSq6SI/AAAAAAAAA_4/S5DkCzilPPs/s160-c/opennet%20signup.png" alt="opennet signup.png" width="160" height="160" /></a>Has anyone checked the coverage check at <a title="OpenNet Coverage Check" href="http://rollout.opennet.com.sg" target="_blank">OpenNet&#8217;s website</a> lately? A friend of mine checked his postal code and was presented with the sign up page, presumably for the installation of the fibre into his home.</p>
<p>This means that his estate is probably one of the first to get access to the Next Generation Broadband Network when commercial operations starts next year in Q1. I&#8217;m looking forward to see more services leveraging on this potentially high speed network.</p>
<p>One of the items on my personal wish list is to see storage players providing high speed secured backup and data access. Coupled with the availability of wireless network (3G, Wireless@SG), I will be able to access a single copy of my data over my many devices, instead of having to transfer to them to each machine physically, or accessing them off a remote server. High speed helps, especially when I do WebDAV for editing some of my documents stored on the servers.</p>
<p>But while I&#8217;m excited with all the prospects, my estate at Tampines is only getting the fibre in 2011. Anti climax.</p>
<p>Recent news on the Next Gen NBN can be found from the following</p>
<p><a href="http://www.ida.gov.sg/insg/post/Rollout-of-Next-Gen-NBN-begins.aspx">Rollout of Next Gen NBN Begins</a></p>
<p><a title="IDA Next Gen NBN" href="http://www.ida.gov.sg/Infrastructure/20060919190208.aspx" target="_blank">Next Gen NBN Transforming the Way We Work, Live, Learn and Play</a></p>


<p>Related posts:<ol><li><a href='http://blog.yibi.org/2009/09/08/spore-broadband-limps-straits-times' rel='bookmark' title='&#8220;S&#8217;pore broadband limps&#8221; &#8211; Straits Times'>&#8220;S&#8217;pore broadband limps&#8221; &#8211; Straits Times</a></li>
<li><a href='http://blog.yibi.org/2011/08/30/m1-fibre-broadband-update' rel='bookmark' title='M1 Fibre Broadband Update'>M1 Fibre Broadband Update</a></li>
<li><a href='http://blog.yibi.org/2010/01/29/iphone-tethering-use-and-abuse' rel='bookmark' title='IPhone Tethering &#8211; Use and Abuse!'>IPhone Tethering &#8211; Use and Abuse!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.yibi.org/2009/09/06/ftth-is-here-check-your-postal-code-now/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

