ubuntu 手动配置interface上网
Ubuntu网卡基本配置:
一、设置IP和网关
(1) 配置eth0的IP地址, 同时激活该设备
(2) 添加默认网关
#sudo route a
dd default gw 192.168.1.1
(3) 查看网卡配置
#ifconfig
如果只查看eth0的配置信息
#ifconfig eth0
二、直接编辑网卡配置文件(推荐用这个方法设置)
(1)编辑文件 $ sudo vi /etc/network/interfaces
# The loopback network interface (配置环回口)
auto lo # 开机自动激lo接口
iface lo inet loopback # 配置lo接口为环回口
# The primary network interface #配置主网络接口
auto eth0 #开机自动激活eth0接口
iface eth0 inet dh
cp #配置eth0接口为DHCP自动获取
或者配置eth0为静态地址
# The primary network interface (配置主网络接口)
auto eth0 #开机自动激活eth0接口
iface eth0 inet
static #配置eth0接口为静态地址
address 192.168.1.10
gateway 192.168.1.254
Netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
(2)重启网络服务
#sudo /etc/init.d/networking restart
三、配置DNS
配置DNS服务器的地址,最多可以使用3个DNS服务器
$ sudo vi /etc/resolv.conf
nameserver 202.96.134.133
nameserver 202.96.128.68
nameserver 202.96.128.166
查看DNS
$
less /etc/resolv.conf
四、其他一些可能用到的基本命令
(1) 激活设备。
#ifconfig eth0 up
(2) 禁用设备。
#ifconfig eth0 down
(3)
ping 可以使用ping 命令来测试网络的连通性。
例如:
#ping x
#ping –c 4 192.168.1.1
#ping -c 4 www.ba
idu.com
(4)
netstat 可以使用netstat命令来显示网络状态信息。
例如:
显示网络接口状态信息。
#netstat –i
显示所有监控中的服务器的Socket和正使用Socket的程序信息。
#netstat –lpe
显示TCP/UDP传输协议的连接状态。
#netstat –t
#netstat –u
(5) hostname 可以使用hostname命令来更改主机名。
例如;
#hostname myhost
sudo /bin/hostname newname
(6) 重启Ubuntu
#sudo reboot
(7) 系统更新
sudo apt-get up
date 这一步更新包列表
sudo apt-get dist-upgrade 这一步安装所有可用更新
或者
sudo apt-get upgrade 这一步安装应用程序更新,不安装新内核等
转载于:https://blog.51cto.com/huifu/1083408