<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Sharing internet with Nokia 770 over bluetooth</title>
	<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 19 May 2012 14:38:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>By: RealNitro</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-45</link>
		<author>RealNitro</author>
		<pubDate>Thu, 10 Aug 2006 07:58:03 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-45</guid>
		<description>Texrat, this howto was written for os 2005. I haven't tested it with os 2006. I'll probably update this howto when I get around to trying it myself on os 2006.</description>
		<content:encoded><![CDATA[<p>Texrat, this howto was written for os 2005. I haven&#8217;t tested it with os 2006. I&#8217;ll probably update this howto when I get around to trying it myself on os 2006.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Texrat</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-44</link>
		<author>Texrat</author>
		<pubDate>Thu, 10 Aug 2006 03:13:58 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-44</guid>
		<description>Just found your site tonight.  Nice work, although I couldn't get it to work.  I added the application catalog url shown but application manager said it couldn't find any packages there.  So I tried the manual method-- ncurses lib installed just fine but the others claim to be incompatible.  I have the 2006 os and selected the appropriate packages.&lt;br /&gt;
&lt;br /&gt;
Just letting you know.  Man, I sure had high hopes!</description>
		<content:encoded><![CDATA[<p>Just found your site tonight.  Nice work, although I couldn&#8217;t get it to work.  I added the application catalog url shown but application manager said it couldn&#8217;t find any packages there.  So I tried the manual method&#8211; ncurses lib installed just fine but the others claim to be incompatible.  I have the 2006 os and selected the appropriate packages.</p>
<p>Just letting you know.  Man, I sure had high hopes!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RealNitro</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-43</link>
		<author>RealNitro</author>
		<pubDate>Mon, 10 Apr 2006 13:58:54 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-43</guid>
		<description>A working iptables script (works on gentoo):&lt;br /&gt;
---------------------------&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
IPTABLES='/sbin/iptables'&lt;br /&gt;
&lt;br /&gt;
# Set interface values&lt;br /&gt;
EXTIF='eth0'&lt;br /&gt;
INTIF1='bnep0'&lt;br /&gt;
&lt;br /&gt;
# enable ip forwarding in the kernel&lt;br /&gt;
/bin/echo 1 &gt; /proc/sys/net/ipv4/ip_forward&lt;br /&gt;
&lt;br /&gt;
# flush rules and delete chains&lt;br /&gt;
$IPTABLES -F&lt;br /&gt;
$IPTABLES -X&lt;br /&gt;
&lt;br /&gt;
# enable masquerading to allow LAN internet access&lt;br /&gt;
$IPTABLES -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE&lt;br /&gt;
&lt;br /&gt;
# forward LAN traffic from $INTIF1 to Internet interface $EXTIF&lt;br /&gt;
$IPTABLES -A FORWARD -i $INTIF1 -o $EXTIF -m state --state NEW,ESTABLISHED -j ACCEPT&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>A working iptables script (works on gentoo):<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
#!/bin/bash<br />
IPTABLES=&#8217;/sbin/iptables&#8217;</p>
<p># Set interface values<br />
EXTIF=&#8217;eth0&#8242;<br />
INTIF1=&#8217;bnep0&#8242;</p>
<p># enable ip forwarding in the kernel<br />
/bin/echo 1 > /proc/sys/net/ipv4/ip_forward</p>
<p># flush rules and delete chains<br />
$IPTABLES -F<br />
$IPTABLES -X</p>
<p># enable masquerading to allow LAN internet access<br />
$IPTABLES -t nat -A POSTROUTING -o $EXTIF -j MASQUERADE</p>
<p># forward LAN traffic from $INTIF1 to Internet interface $EXTIF<br />
$IPTABLES -A FORWARD -i $INTIF1 -o $EXTIF -m state &#8211;state NEW,ESTABLISHED -j ACCEPT</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thedarksavant</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-42</link>
		<author>thedarksavant</author>
		<pubDate>Tue, 31 Jan 2006 23:12:23 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-42</guid>
		<description>If you are getting SIOCSIFADR/FNETMASK/FBRDADDR errors when trying to add the bnep0 network device, then chances are you did not run the &lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
pand --listen --role NAP&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
as root.</description>
		<content:encoded><![CDATA[<p>If you are getting SIOCSIFADR/FNETMASK/FBRDADDR errors when trying to add the bnep0 network device, then chances are you did not run the <br />
<code><br />
pand &#8211;listen &#8211;role NAP<br />
</code><br />
as root.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RealNitro</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-41</link>
		<author>RealNitro</author>
		<pubDate>Thu, 12 Jan 2006 20:23:49 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-41</guid>
		<description>I didn't install that firmware yet. You could search for the bnep0 device by executing 'ifconfig' without any arguments. That will display information about all active network devices, including bnep0 (or something similar).</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t install that firmware yet. You could search for the bnep0 device by executing &#8216;ifconfig&#8217; without any arguments. That will display information about all active network devices, including bnep0 (or something similar).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Declan McArdle</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-40</link>
		<author>Declan McArdle</author>
		<pubDate>Thu, 12 Jan 2006 17:28:38 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-40</guid>
		<description>Hi, does this work on firmware 2005/51 and upwards?  Device bnep0 doesn't seem to exist - I get SIOCSIFADR/FNETMASK/FBRDADDR errors with the ifconfig command.</description>
		<content:encoded><![CDATA[<p>Hi, does this work on firmware 2005/51 and upwards?  Device bnep0 doesn&#8217;t seem to exist - I get SIOCSIFADR/FNETMASK/FBRDADDR errors with the ifconfig command.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Internet Tablet Users Blog</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-35</link>
		<author>Internet Tablet Users Blog</author>
		<pubDate>Wed, 07 Dec 2005 15:50:07 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-35</guid>
		<description>&lt;strong&gt;Optimal web surfing on the Nokia 770&lt;/strong&gt;&lt;br /&gt;	OK, we&#8217;ve all been surfing the web for years (more than a decade for some). So what&#8217;s there to learn about surfing using the Nokia 770? Lots.&lt;br /&gt;
&lt;br /&gt;
...</description>
		<content:encoded><![CDATA[<p><strong>Optimal web surfing on the Nokia 770</strong><br />	OK, we&#8217;ve all been surfing the web for years (more than a decade for some). So what&#8217;s there to learn about surfing using the Nokia 770? Lots.</p>
<p>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Sperberg</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-34</link>
		<author>Roger Sperberg</author>
		<pubDate>Mon, 05 Dec 2005 23:26:11 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-34</guid>
		<description>I'm patient. :-)&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;(After all, I waited all this time for the 770.)&lt;/em&gt;&lt;br /&gt;
&lt;br /&gt;
Anyway, I don't have a USB Bluetooth adapter now, just looking into it. Maybe my finances will have recovered by February. </description>
		<content:encoded><![CDATA[<p>I&#8217;m patient. <img src='http://blog.realnitro.be/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><em>(After all, I waited all this time for the 770.)</em></p>
<p>Anyway, I don&#8217;t have a USB Bluetooth adapter now, just looking into it. Maybe my finances will have recovered by February.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RealNitro</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-38</link>
		<author>RealNitro</author>
		<pubDate>Mon, 05 Dec 2005 22:26:51 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-38</guid>
		<description>I don't think it can be done without being root. (If you do not want to log in as root just to start the connection, try writing a little script and switch the superuser bit on with 'chmod +s script.sh'. I do have some scripts, but they're just the commands I posted here, put inside a little text file. If I'd have the time, I'd write some more advanced scripts, but I'm really, really busy atm. I'm planning to create a .desktop file that can be added to the menu some time, but don't expect it before Christmas (probably not even before february -- exams :-).</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think it can be done without being root. (If you do not want to log in as root just to start the connection, try writing a little script and switch the superuser bit on with &#8216;chmod +s script.sh&#8217;. I do have some scripts, but they&#8217;re just the commands I posted here, put inside a little text file. If I&#8217;d have the time, I&#8217;d write some more advanced scripts, but I&#8217;m really, really busy atm. I&#8217;m planning to create a .desktop file that can be added to the menu some time, but don&#8217;t expect it before Christmas (probably not even before february &#8212; exams :-).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Sperebrg</title>
		<link>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-39</link>
		<author>Roger Sperebrg</author>
		<pubDate>Mon, 05 Dec 2005 22:16:48 +0000</pubDate>
		<guid>http://blog.realnitro.be/2005/11/13/sharing-internet-with-nokia-770-over-bluetooth/#comment-39</guid>
		<description>Um, this is great. Bit trickier than I'm inclined to handle, I'm afraid.&lt;br /&gt;
&lt;br /&gt;
Have you got scripts written yet?&lt;br /&gt;
&lt;br /&gt;
Is there any way to do this &lt;em&gt;without&lt;/em&gt; being root?&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Roger</description>
		<content:encoded><![CDATA[<p>Um, this is great. Bit trickier than I&#8217;m inclined to handle, I&#8217;m afraid.</p>
<p>Have you got scripts written yet?</p>
<p>Is there any way to do this <em>without</em> being root?</p>
<p>Thanks,</p>
<p>Roger</p>
]]></content:encoded>
	</item>
</channel>
</rss>

