Bluetooth PAN

本文介绍了如何在Nokia N900设备上启用蓝牙PAN功能,通过另一台设备连接到另一个网络如互联网。详细说明了安装步骤,包括为N900启用蓝牙PAN、安装所需软件以及使用连接管理器建立连接的方法。此外,还提供了在N900上使用udev自动设置互联网连接共享的步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Bluetooth PAN

This allows you to use your Maemo device to use Bluetooth PAN to connect via another device to another network such as the Internet.

The Connection manager is used for this purpose, exactly the same way as you connect to a WLAN network or to a cell phone dial-up connection (Bluetooth DUN). Most Windows Smartphones use this method of connection when used as a modem via Bluetooth.

If you have Nokia N900 you may instead use it as PAN server to allow an other device such as a Nokia N8x0 to utilize Bluetooth PAN.

[edit]Installing

For the Nokia N900 pan is disabled by default. To enable it, edit /etc/bluetooth/main.conf and remove network from the disabled plugins

[General]
# List of plugins that should not be loaded on bluetoothd startup
DisablePlugins = network,input,hal

libicd-network-null is also recommended for using internet over bluetooth

apt-get install libicd-network-null

For other devices you need to install maemo-pan through the Application manager. You may need to restart your tablet after installation in order to force a dependency on maemo-pan (libicd-network-dummy package) being loaded.

Tap on the Connectivity icon in your status bar and either "Select a connection" or "Change connection" to see a list of available network access points. You should see one called "Dummy Network" (this name will likely change in future versions of maemo-pan, see bug #3306 for details).

To connect to the Internet through this connection you must make sure the "Internet Connection Sharing" application is running on your phone and has a connection. Select the "Dummy Network" from the tablet network list and enjoy anywhere Internet!

[edit]Sharing your connection over bluetooth [n900]

Using udev to automatically setup internet connection sharing over bluetooth.


A kernel with iptables support is needed,

Kernel Power is the recommended way to achieve this. see Kernel Power for installation details.

The default kernel with CSSU-thumb is also suitable.


Install the iptables package:

apt-get install iptables

create the following 2 files:

/etc/udev/rules.d/98-bnep0.rules:

ACTION=="add", SUBSYSTEM=="net",  KERNEL=="bnep0", RUN+="/etc/udev/bluenet.sh"
ACTION=="remove", SUBSYSTEM=="net",  KERNEL=="bnep0", RUN+="/etc/udev/bluenet.sh"

/etc/udev/bluenet.sh:

#! /bin/sh
if [ $ACTION = "add" ]; then 
	echo 1 > /proc/sys/net/ipv4/ip_forward
	iptables -t nat -A POSTROUTING ! -o lo -j MASQUERADE
	ifconfig bnep0 192.168.3.1
	ifconfig bnep0 up
	/usr/sbin/dnsmasq -I lo -z -a 192.168.3.1 -F 192.168.3.64,192.168.3.127 -x /var/run/dnsmasq.pid.bnep0
else
	iptables -t nat -D POSTROUTING ! -o lo -j MASQUERADE
	if [ -f /var/run/dnsmasq.pid.bnep0 ]; then
		DNSMASQ_PID=`cat /var/run/dnsmasq.pid.bnep0`
		rm -f /var/run/dnsmasq.pid.bnep0
		kill $DNSMASQ_PID
       fi
fi

then set /etc/udev/bluenet.sh as executible:

chmod +x /etc/udev/bluenet.sh

now whenever an authorised remote device makes a bluetooth pan (nap) connection iptables and dnsmasq are setup to allow that device access to the phones network. TODO: when no internet connection is active ask to set it up


[edit]Using PAN on older releases

It is possible to use PAN to share Internet connections via PAN between two Nokia devices. However, on older devices it is recommended to useBluetooth DUN (dial-up networking), since this is the normal method which smartphones use to share Internet access over Bluetooth.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值