Não é possível configurar o DHCP e o TFTP no Ubuntu

1

Eu quero transferir minha imagem do kernel para beaglebone black, e o guia menciona que eu já deveria ter configurado o DHCP e o tftp na máquina host.

Eu configurei o TFTP usando:

sudo apt-get install tftpd-hpa tftp-hpa

sudo vim /etc/default/tftpd-hpa

TFTP_USERNAME="tftp"

TFTP_DIRECTORY="your-ftp-root-directory"

TFTP_ADDRESS="0.0.0.0:69"

TFTP_OPTIONS="--secure"

sudo service tftpd restart

Também preciso de um servidor DHCP no host para que possa atribuir IP a BBBlack.

Então eu segui:

sudo apt-get install isc-dhcp-server

sudo /etc/init.d/networking/restart

nano -w /etc/dhcp/dhcpd.conf

default-lease-time 600;

max-lease-time 7200;

option subnet-mask 255.255.255.0;

option broadcast-address 192.168.1.255;

option routers 192.168.1.254;

option domain-name-servers 192.168.1.1, 192.168.1.2;

option domain-name "mydomain.example";

subnet 192.168.1.0 netmask 255.255.255.0 {

range 192.168.1.10 192.168.1.100;

range 192.168.1.150 192.168.1.200;

} '

ls /etc/default/isc-dhcp-server

INTERFACES "eth0"

eth0      Link encap:Ethernet  HWaddr 00:23:ae:15:85:ae  
          inet6 addr: fe80::223:aeff:fe15:85ae/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1462 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:279343 (279.3 KB)
          Interrupt:16 

/ etc / network / interface

auto lo
iface lo inet loopback

#auto eth0
iface eth0 inet static
        address 192.168.1.2
        netmask 255.255.255.0
        network 192.168.1.0
        broadcast 192.168.1.255
        gateway 192.168.1.1
        up service dhcp3-server restart

Ainda. O DHCP não está recebendo configuração.

Por favor, sugira onde eu posso estar errado

    
por Haswell 15.11.2014 / 05:27

1 resposta

1

Tente Alterar as seguintes configurações no /etc/network/interface

auto eth0
iface eth0 inet dhcp

para mais detalhes clique aqui

    
por 15.11.2014 / 05:48