ubuntu的网络配置

1,检查网络是否通畅
ping www.baidu.com

2,检查网线是否插好

3,使用ifconfig查看当前活跃网络接口
ifconfig

4,配置IP地址、子网掩码、网关地址
sudo vi /etc/network/interfaces

确保此文件中有以下信息:(固定IP地址为192.168.1.xxx)
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.1.xxx
gateway 192.168.1.1
netmask 255.255.255.0

或者:(动态IP地址,就是系统自动获取IP)
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

5,重启网络服务(ubuntu-12.04)
sudo /etc/init.d/networking force-reload
sudo /etc/init.d/networking restart

重启网络服务(ubuntu-14.04)
sudo service networking force-reload
sudo service networking restart

6,配置DNS服务
sudo vi /etc/resolvconf/resolv.conf.d/base
确保此文件中有以下信息:

nameserver 202.96.134.133
nameserver 8.8.8.8
nameserver 192.168.1.1

7,重启DNS服务
sudo /etc/init.d/resolvconf restart(ubuntu-12.04)
sudo service resolvconf restart(ubuntu-14.04)

8,重新启停以下虚拟网卡
sudo ifconfig eth0 down
sudo ifconfig eth0 up

9,手工添加默认网关
sudo route add default gw 192.168.1.1

10,终极大招:重启电脑

时间: 2024-11-10 15:04:12

ubuntu的网络配置的相关文章

Ubuntu之网络配置

一.配置大概分三类:通过配置文件配置.通过命令配置.通过图形化的网络连接菜单配置. 拨号无线等的没条件实验,不涉及. 主要文件:/etc/network/interfaces,这里是IP.网关.掩码等的一些配置:/etc/resolv.conf这个文件保存DNS的有关信息 主要命令:sudo /etc/init.d/networking restart重启网络,使配置文件的配置失效:sudo route add default gw <IP地址>,设置网关. 二.配置方法 1.通过命令配置 如

win10 下使用虚拟机安装ubuntu及其网络配置

通过虚拟机安装ubuntu 我的机器是64位的win10系统,使用的虚拟机VMware workstation 12 pro 安装的是ubuntu 14.04, 网上教程很多,很详细也有有效 win10下的VM虚拟机安装Ubuntu过程 最新VMware 12虚拟机下安装Ubuntu系统 注:中间一步 这里选择 "现在安装" 就可以了,清除的磁盘并不影响原来盘中的东西,只是清空你给ubuntu创建的虚拟盘 虚拟机网络配置 按照上面步骤安装完之后,可以在ubuntu中上网,注意这时候本机

ubuntu/centos网络配置

UBUNTU网络配置 配置临时的Ip ifconfig eth0 192.168.3.136/24 其中24指的网络掩码24位. vim /etc/network/interfaces 添加下面内容 auto eth0                   #开机自动连接 iface eth0 inet static  #静态IP address 192.168.1.112 netmask 255.255.255.0 gateway 192.168.1.1 如果是dhcp,添加 auto eth0

Ubuntu系统-网络配置

网络配置 静态IP [email protected]:~# cat /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback ne

Linux(Ubuntu)的网络配置

修改IP地址 有两种方法,一种是使用ifconfig命令,另一种是直接修改网络相关的配置文件. ifconfig命令 例如:sudo ifconfig eth0 192.168.108.54 netmask 255.255.255.0 如果网卡eth0尚未启动,则需要在末尾添加up,表示配置完成后启动该网卡. 修改配置文件 Ubuntu14.04下跟IP相关的配置在文件/etc/network/interfaces中,其原始内容如下: # interfaces(5) file used by i

virtualbox-Ubuntu网络配置上网,并且通过xshell登陆

virtualbox两个网卡配置: a:host-only 模式: address 192.168.56.1 netmask 255.255.255.0 不启用dhcp服务. b:nat 模式: address 10.0.2.0/24 netmask 255.255.255.0  启用dhcp服务 虚拟机的网络配置: 配置完成开始安装Ubuntu操作系统. 安装完成,ubuntu操作系统网络配置: auto eth0 iface eth0 inet static  address 192.168

Ubuntu10.10的网络配置

Ubuntu10.10的网络配置 有一阵子着实对Ubuntu的网络配置很迷惑,耐下心来仔细上网找了找,有点小心得,总结一下. 先说下大概的配置过程,再去细究一些情况. 一.配置大概分三类:通过配置文件配置.通过命令配置.通过图形化的网络连接菜单配置. 拨号无线等的没条件实验,不涉及. 主要文件:/etc/network/interfaces,这里是IP.网关.掩码等的一些配置:/etc/resolv.conf这个文件保存DNS的有关信息 主要命令:sudo /etc/init.d/network

虚拟机 ubuntu 上网的配置过程

最近刚开始玩linux,在虚拟机上装了个ubuntu,但是一直上不了网,困惑了很久,今天终于弄好了. 首先说说虚拟机的三种网络模式: VMWare提供了三种工作模式,它们是bridged(桥接模式).NAT(网络地址转换模式)和host-only(主机模式). l  bridged(桥接模式) 在这种模式下,VMWare虚拟出来的操作系统就像是局域网中的一台独立的主机,它可以访问网内任何一台机器.在桥接模式下,你需要手工为虚拟系统配置IP地址.子网掩码,而且还要和宿主机器处于同一网段,这样虚拟系

Ubuntu通过修改配置文件进行网络配置

Ubuntu系统进行网络配置有的时候用图形界面不起作用,这种情况下可以直接修改某些启动脚本或配置文件 Ubuntu系统进行网络配置涉及到几个配置文件1./etc/network/interfaces 2./etc/resolv.conf 操纵步骤: 1.打开ubuntu的/etc/network/interfaces文件默认的内容如下: auto lo iface lo inet loopback 动态获取的配置方法: auto eth0 iface eth0 inet dhcp 静态分配的配置