GNU/Linux >> Linux Esercitazione >  >> Ubuntu

Come rendere statico l'indirizzo IP (eth0)?

Sto avendo davvero difficoltà a configurare Ubuntu 13.04 per avere un indirizzo IP statico. Ho provato più soluzioni ma ogni volta che riavvio (non riesco a eseguire il comando di ripristino della rete perché Ubuntu si blocca) finisco senza connessione.

Ecco cosa ottengo quando digito ifconfig nel terminale:

eth0      Link encap:Ethernet  HWaddr 10:bf:48:bc:07:cb  
          inet addr:192.168.0.8  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::12bf:48ff:febc:7cb/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1763067 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1024326 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2284491220 (2.2 GB)  TX bytes:136809317 (136.8 MB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:1840 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1840 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:185688 (185.6 KB)  TX bytes:185688 (185.6 KB)

Ho provato anche questo:

auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
        address 192.168.0.160
        netmask 255.255.255.0
        broadcast 192.168.0.255
        gateway 192.168.0.1
        dns-nameservers 24.222.0.94
        dns-nameservers 24.222.0.95

Se qualcuno potesse aiutarmi sarebbe molto apprezzato.

Risposta accettata:

Segui questi passaggi per rendere statico l'indirizzo IP di un sistema:

  1. Apri il file dell'interfaccia (sudo vi /etc/network/interfaces )
  2. Cerca

    auto eth0
    iface eth0 inet dhcp
    
  3. Sostituisci i comandi precedenti con

    auto eth0
    iface eth0 inet static
    address 192.168.1.100(Enter desired ip here)
    netmask 255.255.255.0
    network 192.168.1.0
    broadcast 192.168.1.255
    gateway 192.168.1.1
    
  4. Quindi entra

    sudo ifdown eth0; sudo ifup eth0
    

Ubuntu
  1. Come impostare un indirizzo IP statico su Debian 10 Buster

  2. Come configurare l'indirizzo IP statico in Ubuntu 18.04 / 16.04 / Debian 9 / LinuxMint 18

  3. Come configurare un indirizzo IP statico su Fedora

  4. Come configurare il desktop per un indirizzo IP statico?

  5. Come configurare l'indirizzo IP statico su Ubuntu 20.04

Come configurare l'indirizzo IP statico in CentOS 8 / RHEL 8

Come impostare un indirizzo IP statico in CentOS Linux

Come impostare un indirizzo IP statico su Ubuntu Linux

Come impostare un indirizzo IP statico in Rocky Linux

Come assegnare un indirizzo IP statico su Ubuntu Linux

Come configurare l'indirizzo IP statico su Ubuntu 18.04 (desktop)