Linux网络管理之系统实操

文章目录

      • 1 网络管理工具
      • 2 网卡配置
      • 3 系统实操
        • 3.1 准备工作
        • 3.2 CentOS 7
        • 3.3 CentOS 6
        • 3.4 Ubuntu

1 网络管理工具

网络管理工具

2 网卡配置

网卡配置

3 系统实操

3.1 准备工作

打开VMware的虚拟网络编辑器,设置使用NAT模式的网段为192.168.159/255.255.255.0

Linux网络管理之系统实操_第1张图片

3.2 CentOS 7

  1. 打开网卡配置文件
[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33
  1. 按i进入插入模式,修改配置

BOOTPROTO设置成静态绑定static,并设置相应的ip、掩码、网关、DNS

Linux网络管理之系统实操_第2张图片

  1. 保存退出,重启网络

重启网络服务

[root@localhost ~]# systemctl restart network

查看网卡信息

[root@localhost ~]# ifconfig

Linux网络管理之系统实操_第3张图片

  1. 测试网络连通性
[root@localhost ~]# ping -c 4 baidu.com

可以看到DNS自动解析了ip并且成功ping通

Linux网络管理之系统实操_第4张图片

3.3 CentOS 6

  1. 打开网卡配置文件
[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
  1. 按i进入插入模式,修改配置

BOOTPROTO设置成静态绑定static,并设置相应的ip、掩码、网关、DNS

Linux网络管理之系统实操_第5张图片

  1. 保存退出,重启网络

重启网络服务

[root@localhost ~]# service network restart

查看网卡信息

[root@localhost ~]# ifconfig

Linux网络管理之系统实操_第6张图片

  1. 测试网络连通性
[root@localhost ~]# ping -c 4 baidu.com

可以看到DNS自动解析了ip并且成功ping通

Linux网络管理之系统实操_第7张图片

3.4 Ubuntu

  1. 打开网卡配置文件

由于使用的是普通用户,修改配置需要用 sudo

ti@ubuntu:~$ sudo vim /etc/network/interfaces
  1. 按i进入插入模式,修改配置

选中需要修改的网卡ens33,将dhcp修改成static,并配置相应的ip、掩码、网关,并设置好DNS服务器

Linux网络管理之系统实操_第8张图片

  1. 保存退出,重启网络

重启网络服务

ti@ubuntu:~$ service networking restart

查看网卡信息

ti@ubuntu:~$ ifconfig

Linux网络管理之系统实操_第9张图片

  1. 测试网络连通性
ti@ubuntu:~$ ping -c 4 baidu.com

可以看到DNS自动解析了ip并且成功ping通

Linux网络管理之系统实操_第10张图片

你可能感兴趣的:(Linux运维,#,Linux网络管理,网络,linux,运维,centos,ubuntu)