Ubuntu网络设置

    网卡静态分配IP地址

   1.修改文件/etc/network/interfaces

   命令: sudo gedit /etc/network/interfaces 

  # This file describes the network interfaces available on your system

  # and how to activate them. For more information, see interfaces(5).

  #

  # The loopback network interface(配置环回口)

  auto lo                                       # 开机自动激lo接口

  iface lo inet loopback                        # 配置lo接口为环回口

  # The primary network interface (配置主网络接口)

  auto eth0                                     #开机自动激活eth0接口

  iface eth0 inet static                        #配置eth0接口为静态设置IP地址

  address 10.16.3.99

  netmask 255.255.255.0

  network 10.16.3.0

  broadcast 10.16.3.255

  gateway 10.16.3.1

      dns-nameservers 192.168.1.1

    注意:在Ubuntu 12下,通过编译/etc/resolv.conf来指定dns的话,重新启动后该文件就会被覆盖。所以通过编辑来指定并不好。

    2、重启网络

   命令:sudo /etc/init.d/networking restart    # 重启网络

   3、ping以下,测试网络是否连通

posted @ 2012-09-17 13:06  三个木头  阅读(120)  评论(0编辑  收藏  举报