<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments on: Using PAN/NAP instead of rfcomm/ppd</title>
	<atom:link href="http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/feed/" rel="self" type="application/rss+xml" />
	<link>http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/</link>
	<description>Move on, nothing to see here.</description>
	<pubDate>Sat, 04 Feb 2012 23:03:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: PAN/NAP made even easier&#8230; &#171; seife&#8217;s assorted rants</title>
		<link>http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/comment-page-1/#comment-16147</link>
		<dc:creator>PAN/NAP made even easier&#8230; &#171; seife&#8217;s assorted rants</dc:creator>
		<pubDate>Tue, 23 Mar 2010 09:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://seife.kernalert.de/blog/?p=118#comment-16147</guid>
		<description>[...] wrote last year about how to use bluetooth networking to connect to the internet via a mobile phone. Since then, I had heard rumours that NetworkManager was now able to do this as well, but I [...]</description>
		<content:encoded><![CDATA[<p>[...] wrote last year about how to use bluetooth networking to connect to the internet via a mobile phone. Since then, I had heard rumours that NetworkManager was now able to do this as well, but I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juergen Weigert</title>
		<link>http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/comment-page-1/#comment-16122</link>
		<dc:creator>Juergen Weigert</dc:creator>
		<pubDate>Sun, 07 Mar 2010 16:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://seife.kernalert.de/blog/?p=118#comment-16122</guid>
		<description>Harald, your script looks familiar to me. Over the years I've been contributing many bits and pieces to my script. It is at
https://api.opensuse.org/public/source/home:jnweiger/jw-settings/bluetooth-internet.sh

Seife, this is what test-network does to me on my 11.2 box:
test-network 00:xx:xx:xx:xx:xx nap
Traceback (most recent call last):
  File "/usr/bin/test-network", line 31, in 
    iface = network.Connect(service)
  File "/usr/lib/python2.6/site-packages/dbus/proxies.py", line 68, in __call__
    return self._proxy_method(*args, **keywords)
  File "/usr/lib/python2.6/site-packages/dbus/proxies.py", line 140, in __call__
    **keywords)
  File "/usr/lib/python2.6/site-packages/dbus/connection.py", line 622, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method "Connect" with signature "s" on interface "org.bluez.Network" doesn't exist</description>
		<content:encoded><![CDATA[<p>Harald, your script looks familiar to me. Over the years I&#8217;ve been contributing many bits and pieces to my script. It is at<br />
<a href="https://api.opensuse.org/public/source/home:jnweiger/jw-settings/bluetooth-internet.sh" rel="nofollow">https://api.opensuse.org/public/source/home:jnweiger/jw-settings/bluetooth-internet.sh</a></p>
<p>Seife, this is what test-network does to me on my 11.2 box:<br />
test-network 00:xx:xx:xx:xx:xx nap<br />
Traceback (most recent call last):<br />
  File &#8220;/usr/bin/test-network&#8221;, line 31, in<br />
    iface = network.Connect(service)<br />
  File &#8220;/usr/lib/python2.6/site-packages/dbus/proxies.py&#8221;, line 68, in __call__<br />
    return self._proxy_method(*args, **keywords)<br />
  File &#8220;/usr/lib/python2.6/site-packages/dbus/proxies.py&#8221;, line 140, in __call__<br />
    **keywords)<br />
  File &#8220;/usr/lib/python2.6/site-packages/dbus/connection.py&#8221;, line 622, in call_blocking<br />
    message, timeout)<br />
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method &#8220;Connect&#8221; with signature &#8220;s&#8221; on interface &#8220;org.bluez.Network&#8221; doesn&#8217;t exist</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harald Müller-Ney</title>
		<link>http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/comment-page-1/#comment-13376</link>
		<dc:creator>Harald Müller-Ney</dc:creator>
		<pubDate>Wed, 04 Nov 2009 11:09:53 +0000</pubDate>
		<guid isPermaLink="false">http://seife.kernalert.de/blog/?p=118#comment-13376</guid>
		<description>In case anyone is interested in the "old method" and likes to improve my initial script ;) (still with many debug output):
-----------------------------------------------------------------------
#!/bin/bash
# config section
# configure your BLUEZ ID
BLUEZID="00:XX:XX:XX:XX:XX"
# after suspend/resume cycle bluetooth might be off
echo enable &gt; /proc/acpi/ibm/bluetooth
# short sleep to make sure bluethooth is ready
sleep 1
# Channel for dial up network via bluetooth might change 
# (experienced with Nokia E71 after turning bluetooth off/on)
# re-set channel each time

# release all rfcoom devices
rfcomm release all
 # get current active dialup network channel
RFCHANNEL=`sdptool browse $BLUEZID &#124; \ 
    grep -A4 "Dialup Networking"  &#124; \ 
    awk '$1 == "Channel:" {print $2}'`
 # print out channel for debugging reasons
echo Channel is: $RFCHANNEL
 # bind rfcomm0 to channel and device (bind all not always successful)
rfcomm bind rfcomm0 $BLUEZID $RFCHANNEL
 # DEBUGGING check if rfcomm0 has been setup correctly
rfcomm
# Finally dial in
wvdial umts
-----------------------------------------------------------------------</description>
		<content:encoded><![CDATA[<p>In case anyone is interested in the &#8220;old method&#8221; and likes to improve my initial script <img src='http://seife.kernalert.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> (still with many debug output):<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
#!/bin/bash<br />
# config section<br />
# configure your BLUEZ ID<br />
BLUEZID=&#8221;00:XX:XX:XX:XX:XX&#8221;<br />
# after suspend/resume cycle bluetooth might be off<br />
echo enable &gt; /proc/acpi/ibm/bluetooth<br />
# short sleep to make sure bluethooth is ready<br />
sleep 1<br />
# Channel for dial up network via bluetooth might change<br />
# (experienced with Nokia E71 after turning bluetooth off/on)<br />
# re-set channel each time</p>
<p># release all rfcoom devices<br />
rfcomm release all<br />
 # get current active dialup network channel<br />
RFCHANNEL=`sdptool browse $BLUEZID | \<br />
    grep -A4 &#8220;Dialup Networking&#8221;  | \<br />
    awk &#8216;$1 == &#8220;Channel:&#8221; {print $2}&#8217;`<br />
 # print out channel for debugging reasons<br />
echo Channel is: $RFCHANNEL<br />
 # bind rfcomm0 to channel and device (bind all not always successful)<br />
rfcomm bind rfcomm0 $BLUEZID $RFCHANNEL<br />
 # DEBUGGING check if rfcomm0 has been setup correctly<br />
rfcomm<br />
# Finally dial in<br />
wvdial umts<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Seidel</title>
		<link>http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/comment-page-1/#comment-13363</link>
		<dc:creator>Frank Seidel</dc:creator>
		<pubDate>Tue, 03 Nov 2009 19:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://seife.kernalert.de/blog/?p=118#comment-13363</guid>
		<description>Hi, sadfully this approach doesn't seem to work with 11.1.
bluez-test there misses test-network and even installing an uptodate bluez package doesn't work but brings a connection refused error.</description>
		<content:encoded><![CDATA[<p>Hi, sadfully this approach doesn&#8217;t seem to work with 11.1.<br />
bluez-test there misses test-network and even installing an uptodate bluez package doesn&#8217;t work but brings a connection refused error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harald Müller-Ney</title>
		<link>http://seife.kernalert.de/blog/2009/08/10/using-pannap-instead-of-rfcommppd/comment-page-1/#comment-13291</link>
		<dc:creator>Harald Müller-Ney</dc:creator>
		<pubDate>Fri, 30 Oct 2009 11:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://seife.kernalert.de/blog/?p=118#comment-13291</guid>
		<description>Thank you, NICE. Interesting to read, even though my phone does not support it.
"Old method" using rfcomm via some scripts still work,  but I would prefer the PAN approach.

I have to check my wifes new phone.</description>
		<content:encoded><![CDATA[<p>Thank you, NICE. Interesting to read, even though my phone does not support it.<br />
&#8220;Old method&#8221; using rfcomm via some scripts still work,  but I would prefer the PAN approach.</p>
<p>I have to check my wifes new phone.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

