一、配置Ubuntu网络设置大纲

root@ubuntu:为我的Ubuntu系统,即 用户名@主机名:


1.改主机名

ifconfig查询本机IP地址
vim  /etc/hostname进入i编辑更改,改完按esc键 然后:wq!保存退出


2.将DHCP分配的IP改为静态IP
在 编辑-虚拟网络编辑器-VMnet-8中,查看你的网络信息包括IP地址 子网掩码 网关
vim /etc/network/interfaces 进入
将文档中DHCP改成static,在其后输入
address 192.168.67.200
netmask 255.255.255.0
gateway 192.168.67.2

然后esc

:wq!退出
4.设置DNS
root@ubuntu:/etc# cd /resolvconf/
root@ubuntu:/etc/resolvconf# ll
(
root@ubuntu:~# cd /etc/resolvconf/resolv.conf.d)
root@ubuntu:/etc/resolvconf/resolv.conf.d# vim base
(即vim /etc/resolvconf/resolv.conf.d/base)
打开后输入 国内国外DNS
nameserver 114.114.114.114
nameserver 8.8.8.8
esc
:wq!
root@ubuntu:/etc/resolvconf/resolv.conf.d# /etc/init.networking restart
(
或直接reboot重启)
ifconfig
验证
5.关闭防火墙
ufw disable
apt-get remove iptables
y
确定
6.验证 ping www.baidu.com


另,配置主机和IP地址的映射
输入vim /etc/hosts 在第三行输入192.168.67.200 linux(即IP地址加主机,中间空格最好用tab键,此处linux为我的主机名)

你可能感兴趣的:(一、配置Ubuntu网络设置大纲)