public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [Bluez-users] NAP problem
@ 2004-05-07 11:39 Jose Angel Rodriguez
  2004-05-07 16:13 ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: Jose Angel Rodriguez @ 2004-05-07 11:39 UTC (permalink / raw)
  To: bluez-users

Hi all!!

I hava a Debian Sarge PC as a NAP for a bluetooth network. The computer 
is also connected to an ADSL.

This is my etc/network/interfaces file:
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
auto lo
iface lo inet loopback

# The first network card - this entry was created during the Debian 
installation# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet static
       address 192.168.0.2
       netmask 255.255.255.0
       network 192.168.0.0
       broadcast 192.168.0.255
       gateway 192.168.0.1

# bluetooth network server
iface bnep0 inet static
       address 10.0.0.1
       netmask 255.255.255.0

eth0 is the ADSL connection an bnep0 is the bluetooth connection.

My /etc/bluetooth/pan/dev-up file:
#!/bin/sh
ifup bnep0

I think everytime a client connects it runs /etc/bluetooth/pan/dev-up. 
Everything was working fine, but after updating packages with apt-get 
everytime a client connects I have to configure bnep0 interface by hand 
(ifup bnep0).

¿Does anybody know why /etc/bluetooth/pan/dev-up does not work now? ¿How 
can I configure bnep0 interface automaticaly?

Thanks in advance!!

JOSE


-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver
higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-users] NAP problem
  2004-05-07 11:39 [Bluez-users] NAP problem Jose Angel Rodriguez
@ 2004-05-07 16:13 ` Marcel Holtmann
       [not found]   ` <409C1B27.1050205@telefonica.net>
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2004-05-07 16:13 UTC (permalink / raw)
  To: Jose Angel Rodriguez; +Cc: bluez-users

Hi Jose,

> I hava a Debian Sarge PC as a NAP for a bluetooth network. The computer=
=20
> is also connected to an ADSL.
>=20
> This is my etc/network/interfaces file:
> # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
>=20
> # The loopback interface
> auto lo
> iface lo inet loopback
>=20
> # The first network card - this entry was created during the Debian=20
> installation# (network, broadcast and gateway are optional)
> auto eth0
> iface eth0 inet static
>        address 192.168.0.2
>        netmask 255.255.255.0
>        network 192.168.0.0
>        broadcast 192.168.0.255
>        gateway 192.168.0.1
>=20
> # bluetooth network server
> iface bnep0 inet static
>        address 10.0.0.1
>        netmask 255.255.255.0
>=20
> eth0 is the ADSL connection an bnep0 is the bluetooth connection.
>=20
> My /etc/bluetooth/pan/dev-up file:
> #!/bin/sh
> ifup bnep0
>=20
> I think everytime a client connects it runs /etc/bluetooth/pan/dev-up.=20
> Everything was working fine, but after updating packages with apt-get=20
> everytime a client connects I have to configure bnep0 interface by hand=
=20
> (ifup bnep0).
>=20
> =BFDoes anybody know why /etc/bluetooth/pan/dev-up does not work now? =BF=
How=20
> can I configure bnep0 interface automaticaly?

what about putting "auto bnep0" into the interfaces file ;)

Regards

Marcel




-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver
higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-users] NAP problem
       [not found]   ` <409C1B27.1050205@telefonica.net>
@ 2004-05-07 23:31     ` Marcel Holtmann
  2004-05-08  8:46       ` Jose Angel Rodriguez
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2004-05-07 23:31 UTC (permalink / raw)
  To: Jose Angel Rodriguez; +Cc: BlueZ Mailing List

Hi Jose,

> >>I hava a Debian Sarge PC as a NAP for a bluetooth network. The comput=
er=20
> >>is also connected to an ADSL.
> >>
> >>This is my etc/network/interfaces file:
> >># /etc/network/interfaces -- configuration file for ifup(8), ifdown(8=
)
> >>
> >># The loopback interface
> >>auto lo
> >>iface lo inet loopback
> >>
> >># The first network card - this entry was created during the Debian=20
> >>installation# (network, broadcast and gateway are optional)
> >>auto eth0
> >>iface eth0 inet static
> >>       address 192.168.0.2
> >>       netmask 255.255.255.0
> >>       network 192.168.0.0
> >>       broadcast 192.168.0.255
> >>       gateway 192.168.0.1
> >>
> >># bluetooth network server
> >>iface bnep0 inet static
> >>       address 10.0.0.1
> >>       netmask 255.255.255.0
> >>
> >>eth0 is the ADSL connection an bnep0 is the bluetooth connection.
> >>
> >>My /etc/bluetooth/pan/dev-up file:
> >>#!/bin/sh
> >>ifup bnep0
> >>
> >>I think everytime a client connects it runs /etc/bluetooth/pan/dev-up=
.=20
> >>Everything was working fine, but after updating packages with apt-get=
=20
> >>everytime a client connects I have to configure bnep0 interface by ha=
nd=20
> >>(ifup bnep0).
> >>
> >>=BFDoes anybody know why /etc/bluetooth/pan/dev-up does not work now?=
 =BFHow=20
> >>can I configure bnep0 interface automaticaly?
> >>   =20
> >>
> >
> >what about putting "auto bnep0" into the interfaces file ;)
> >
> I tried this but it doesn't work. It was working fine with this=20
> interfaces file, but now :-(

my fault, the auto is for the boot time. You don't need any extra stuff
and you also don't need any PAN dev-up script. Check your hotplug
installation why it is not working. It is not a BlueZ problem.

> =BFShould /etc/bluetooth/pan/dev-up run everytime a client connects? If=
 I=20
> run that scrip manualy everythig works fine.

I don't know, because I never used it.

Regards

Marcel




-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver
higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3
_______________________________________________
Bluez-users mailing list
Bluez-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-users

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-users] NAP problem
  2004-05-07 23:31     ` Marcel Holtmann
@ 2004-05-08  8:46       ` Jose Angel Rodriguez
  0 siblings, 0 replies; 4+ messages in thread
From: Jose Angel Rodriguez @ 2004-05-08  8:46 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: BlueZ Mailing List

Marcel Holtmann wrote:

>Hi Jose,
>
>  
>
>>>>I hava a Debian Sarge PC as a NAP for a bluetooth network. The computer 
>>>>is also connected to an ADSL.
>>>>
>>>>This is my etc/network/interfaces file:
>>>># /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
>>>>
>>>># The loopback interface
>>>>auto lo
>>>>iface lo inet loopback
>>>>
>>>># The first network card - this entry was created during the Debian 
>>>>installation# (network, broadcast and gateway are optional)
>>>>auto eth0
>>>>iface eth0 inet static
>>>>      address 192.168.0.2
>>>>      netmask 255.255.255.0
>>>>      network 192.168.0.0
>>>>      broadcast 192.168.0.255
>>>>      gateway 192.168.0.1
>>>>
>>>># bluetooth network server
>>>>iface bnep0 inet static
>>>>      address 10.0.0.1
>>>>      netmask 255.255.255.0
>>>>
>>>>eth0 is the ADSL connection an bnep0 is the bluetooth connection.
>>>>
>>>>My /etc/bluetooth/pan/dev-up file:
>>>>#!/bin/sh
>>>>ifup bnep0
>>>>
>>>>I think everytime a client connects it runs /etc/bluetooth/pan/dev-up. 
>>>>Everything was working fine, but after updating packages with apt-get 
>>>>everytime a client connects I have to configure bnep0 interface by hand 
>>>>(ifup bnep0).
>>>>
>>>>¿Does anybody know why /etc/bluetooth/pan/dev-up does not work now? ¿How 
>>>>can I configure bnep0 interface automaticaly?
>>>>   
>>>>
>>>>        
>>>>
>>>what about putting "auto bnep0" into the interfaces file ;)
>>>
>>>      
>>>
>>I tried this but it doesn't work. It was working fine with this 
>>interfaces file, but now :-(
>>    
>>
>
>my fault, the auto is for the boot time. You don't need any extra stuff
>and you also don't need any PAN dev-up script. Check your hotplug
>installation why it is not working. It is not a BlueZ problem.
>
>  
>
>>¿Should /etc/bluetooth/pan/dev-up run everytime a client connects? If I 
>>run that scrip manualy everythig works fine.
>>    
>>
>
>I don't know, because I never used it.
>
>Regards
>
>Marcel
>
>
>
>
>-------------------------------------------------------
>This SF.Net email is sponsored by Sleepycat Software
>Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver
>higher performing products faster, at low TCO.
>http://www.sleepycat.com/telcomwpreg.php?From=dnemail3
>_______________________________________________
>Bluez-users mailing list
>Bluez-users@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/bluez-users
>
>  
>
Thank you very much for your time and your help :-)

Jose

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-05-08  8:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-05-07 11:39 [Bluez-users] NAP problem Jose Angel Rodriguez
2004-05-07 16:13 ` Marcel Holtmann
     [not found]   ` <409C1B27.1050205@telefonica.net>
2004-05-07 23:31     ` Marcel Holtmann
2004-05-08  8:46       ` Jose Angel Rodriguez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox