[beagleboard] Re: Can't set static IP

2014-10-12 Thread Pascal De Oliveira
Hello,
I've fixed my problem with an upgrade to Debian 7.6 (image 2014-10-08)
Many thanks to all for your time trying to help me :-)


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Can't set static IP

2014-10-01 Thread Pascal De Oliveira
 
 Thank you all for your help.
 
I've tried what you suggested but, unfortunately, without any success.
I'm wondering if the root cause of my problem isn't that I run Debian from 
the SDCARD (not loaded in eMMC). 
I have a similar issue with fstab. I've added a mount command to a network 
share and it is not taken into account at boot time. If I run the mount 
-a manually it works.
So, it seems that any change I make in the /etc folder is not used at boot 
time. I don't understand why ...
 

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Can't set static IP

2014-10-01 Thread cl
Pascal De Oliveira pascal.deolive...@gmail.com wrote:
 [-- text/plain, encoding 7bit, charset: UTF-8, 20 lines --]
 
  
  Thank you all for your help.
  
 I've tried what you suggested but, unfortunately, without any success.
 I'm wondering if the root cause of my problem isn't that I run Debian from 
 the SDCARD (not loaded in eMMC). 
 I have a similar issue with fstab. I've added a mount command to a network 
 share and it is not taken into account at boot time. If I run the mount 
 -a manually it works.
 So, it seems that any change I make in the /etc folder is not used at boot 
 time. I don't understand why ...
  
It takes a long time (sometimes a minute or more) for the BBB's
network connection to start up after booting.  Are you possiblly seing
a consequence of this where the mount of the remote file systems at
boot time fails because the network isn't available?


-- 
Chris Green
ยท

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Can't set static IP

2014-09-28 Thread DLF
Hi
just a thought but try a lower IP address...

I know on my modem/router it comes with a configured range valid between 0 
to 50.  I'm not sure why it does that.



On Saturday, 27 September 2014 11:14:19 UTC+2, Pascal De Oliveira wrote:

 Hello,
 I have a BBBK Rev B with Debian 7.6 booting from a SD card. I'm trying to 
 set up a static IP.
 I have added the following lines in the /etc/network/interfaces file :

 auto eth0
  iface eth0 inet static
 address 192.168.1.99
 netmask 255.255.255.0
 network 192.168.0.0
 gateway 192.168.1.1
 broadcast 192.168.1.255


 This has no effect and it still use DHCP.
 What is wrong ?

 Thanks in adavance for any help.
 Pascal



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [beagleboard] Re: Can't set static IP

2014-09-28 Thread William Hermans
Most home use routers come per-configured with DHCP addresses being in the
range of *.02 to *.100, or less. The idea is to keep DHCP address in one
small sub range while static ip's are above this.

BTW has this issue been posted before ? Or did someone drag up an old post ?

auto eth0
 iface eth0 inet static
address 192.168.1.99
netmask 255.255.255.0
*network 192.168.0.0 *--- wrong network based on the rest of the
configuration
gateway 192.168.1.1
broadcast 192.168.1.255

*network 192.168.0.0 *should be *network 192.168.1.0 *OR the rest of the
configuration is wrong.



On Sun, Sep 28, 2014 at 3:25 AM, DLF dumb.looks.f...@gmail.com wrote:

 Hi
 just a thought but try a lower IP address...

 I know on my modem/router it comes with a configured range valid between 0
 to 50.  I'm not sure why it does that.



 On Saturday, 27 September 2014 11:14:19 UTC+2, Pascal De Oliveira wrote:

 Hello,
 I have a BBBK Rev B with Debian 7.6 booting from a SD card. I'm trying to
 set up a static IP.
 I have added the following lines in the /etc/network/interfaces file :

 auto eth0
  iface eth0 inet static
 address 192.168.1.99
 netmask 255.255.255.0
 network 192.168.0.0
 gateway 192.168.1.1
 broadcast 192.168.1.255


 This has no effect and it still use DHCP.
 What is wrong ?

 Thanks in adavance for any help.
 Pascal

  --
 For more options, visit http://beagleboard.org/discuss
 ---
 You received this message because you are subscribed to the Google Groups
 BeagleBoard group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to beagleboard+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[beagleboard] Re: Can't set static IP

2014-09-27 Thread Dan Bloomquist


On Saturday, September 27, 2014 2:14:19 AM UTC-7, Pascal De Oliveira wrote:

 Hello,
 I have a BBBK Rev B with Debian 7.6 booting from a SD card. I'm trying to 
 set up a static IP.
 I have added the following lines in the /etc/network/interfaces file :

 auto eth0
  iface eth0 inet static
 address 192.168.1.99
 netmask 255.255.255.0
 network 192.168.0.0
 gateway 192.168.1.1
 broadcast 192.168.1.255

 Hi,
auto eth0
iface eth0 inet static
address 192.168.0.52
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8 127.0.0.1

Works for me using debian. I went so far as to paste your config into my 
interface. Should have been a mess for me. ifconfig said eht0 was 
192.168.1.99 but I could not telnet even if I set the gatway to my 
192.168.0.1

I'm using BeagleBoard.org BeagleBone Debian Image 2014-05-14
Try pasting mine, check your gatway with route -n
Best, Dan.


-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
BeagleBoard group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.