解析网卡配置静态Ubuntu IP地址

系统 Linux
转载不是错:Ubuntu IP地址命令行修改网络配置方法/etc/network/interfaces打开后里面可设置DHCP或手动设置静态ip。前面auto eth0,让网卡开机自动挂载.

Ubuntu IP经过长时间的发展,这里我发表一下个人理解,下面就这就来讲术Ubuntu IP地址。在单位的一台机器完全装了Ubuntu Server,但回家只能在XP上VM一个,装的时候网卡是DHCP的,用ifconfig查了一下Ubuntu IP地址是192.168.92.128,可以ping通。

转载不是错:
Ubuntu IP地址命令行修改网络配置方法/etc/network/interfaces
打开后里面可设置DHCP或手动设置静态ip。前面auto eth0,让网卡开机自动挂载.

1. 以DHCP方式配置网卡

编辑文件/etc/network/interfaces:
sudo vi /etc/network/interfaces
并用下面的行来替换有关eth0的行:
# The primary network interface - use DHCP to find our address
auto eth0
iface eth0 inet dhcp
用下面的命令使网络设置生效:
sudo /etc/init.d/networking restart
也可以在命令行下直接输入下面的命令来获取地址sudo dhclient eth0

2. 为网卡配置静态Ubuntu IP地址

编辑文件/etc/network/interfaces:sudo vi /etc/network/interfaces
并用下面的行来替换有关eth0的行:# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.3.90
gateway 192.168.3.1
netmask 255.255.255.0
#network 192.168.3.0
#broadcast 192.168.3.255
将上面的Ubuntu IP地址地址等信息换成你自己就可以了.用下面的命令使网络设置生效:sudo /etc/init.d/networking restart

3. 设定第二个Ubuntu IP地址(虚拟IP地址)

编辑文件/etc/network/interfaces:sudo vi /etc/network/interfaces
在该文件中添加如下的行:
auto eth0:1
iface eth0:1 inet static
address 192.168.1.60
netmask 255.255.255.0
network x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x
根据你的情况填上所有诸如address,netmask,network,broadcast和gateways等信息.
用下面的命令使网络设置生效:sudo /etc/init.d/networking restart

4. 设置主机名称(hostname)

使用下面的命令来查看当前主机的主机名称:sudo /bin/hostname
使用下面的命令来设置当前主机的主机名称:sudo /bin/hostname newname
系统启动时,它会从/etc/hostname来读取主机的名称.关于设置主机名称的更多信息,请访问这里

5. 配置DNS

首先,你可以在/etc/hosts中加入一些主机名称和这些主机名称对应的Ubuntu IP地址,这是简单使用本机的静态查询.要访问DNS 服务器来进行查询,需要设置/etc/resolv.conf文件.假设DNS服务器的Ubuntu IP地址是192.168.3.2, 那么/etc/resolv.conf文件的内容应为:search test.com

【编辑推荐】

  1. 简易介绍Ubuntu aircrack-ng安装破解无线密码
  2. 讲解手动安装Ubuntu RealPlayer程序
  3. 安装Ubuntu eucalyptus研究开源云计算平台
  4. 共享Ubuntu samba安装步骤使用
  5. 手工安装Ubuntu nvidia显卡驱动
责任编辑:佚名 来源: CSDN
相关推荐

2010-02-07 14:41:28

Ubuntu 8.10

2010-02-22 15:59:48

2010-01-04 13:29:37

2011-04-14 11:41:41

UbuntuIP

2010-01-04 10:10:00

2016-01-07 14:02:55

Ubuntu 15.1网卡 IP地址

2018-12-09 13:50:47

UbuntuLinux IP地址

2010-03-05 15:05:46

Ubuntu网络配置

2022-10-27 10:02:58

UbuntuLinux

2010-02-22 08:56:30

Ubuntu DNS

2011-03-08 10:58:38

VLANIP

2019-09-26 08:07:06

RHEL8命令Linux

2012-10-17 14:32:52

Ubuntu 12.0VMWare

2010-03-05 15:14:55

Ubuntu网络配置

2011-09-06 18:08:27

WindowsXP设置静态IP地址

2010-02-22 13:31:32

Ubuntu安装

2019-04-04 11:20:37

Windows 10设置IP地址

2010-06-17 17:57:32

ARP协议

2010-01-07 16:10:22

Ubuntu root

2010-02-05 12:59:19

Ubuntu IP
点赞
收藏

51CTO技术栈公众号