web-dev-qa-db-ja.com

IPアドレスを静的にする方法(eth0)

静的IPアドレスを持つようにubuntu 13.04を設定するのは本当に大変です。複数のソリューションを試しましたが、リブートするたびに(ubuntuがフリーズするためネットワークリセットコマンドを実行できません)、接続できなくなります。

ここにifconfigを端末に入力したときに得られるものがあります:

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)

私もこれを試しました:

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

誰かが私を助けることができれば、それは非常に高く評価されるでしょう。

10

次の手順に従って、システムのIPアドレスを静的にします。

  1. インターフェイスファイルを開く(Sudo vi /etc/network/interfaces
  2. 探す

    auto eth0
    iface eth0 inet dhcp
    
  3. 上記のコマンドを置き換えます

    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. 次に入力してください

    Sudo ifdown eth0; Sudo ifup eth0
    
6
vijay kumar kdp

これは私のために働いたものです。

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 24.222.0.95
0
RKaneKnight