0x0 修改网卡IP

0x0.1 临时修改网卡IP

  1. 先使用ifconfig查看物理网卡IP

  2. 使用ifconfig指令临时修改网卡IP
    • ifconfig ens33 192.168.137.100/24
  3. 使用route add default gw xx.xx.xx.xx配置静态路由
    • route add default gw 192.167.137.1

0x0.2 永久修改网卡IP

  1. 进入到以下路径
    • cd /etc/sysconfig/network-scripts/
  2. 修改BOOTPROTO为”static”,并写上相关的IP地址、网关、掩码、DNS
    • vi ifcfg-ens33
    • IPADDR=192.168.137.100
    • GATEWAY=192.168.137.1
    • NETMASK=255.255.255.0
    • DNS1=114.114.114.114
    • DNS2=223.5.5.5
  3. 重启网卡
    • service network restart

0x0.3 永久修改网卡IP

  • 使用nmtui进行修改