Centos第一次使用配置IP地址
程序员文章站
2023-04-05 10:30:17
1.vim /etc/sysconfig/network-scripts/ifcfg-eth0 修改默认配置文件 2./etc/init.d/network restart 配置完毕重启网卡服务 3.ifconfig 或 ip addr list/show 查看IP地址 无ifconfig命令可安装 ......
1.vim /etc/sysconfig/network-scripts/ifcfg-eth0 修改默认配置文件
type=ethernet bootproto=static #静态 可修改为【none|static|bootp|dhcp】(不使用协议|静态地址|bootp协议|dhcp协议) defroute=yes peerdns=yes peerroutes=yes ipv4_failure_fatal=no ipv6init=yes ipv6_autoconf=yes ipv6_defroute=yes ipv6_peerdns=yes ipv6_peerroutes=yes ipv6_failure_fatal=no ipv6_addr_gen_mode=stable-privacy name=eth0 device=eth0 #物理设备名 onboot=yes #修改为yes 激活网卡设备 ipaddr=192.168.100.13 #ip地址 profix=24 #netmask=255.255.255.0 子网掩码 gateway=192.168.100.1 #网关地址 dns=114.114.114.114 zone=
2./etc/init.d/network restart 配置完毕重启网卡服务
[root@localhost ~]# /etc/init.d/network restart restarting network (via systemctl): [ 确定 ]
3.ifconfig 或 ip addr list/show 查看ip地址
无ifconfig命令可安装软件包 net-tools
yum install -y net-tools
4.vim /etc/sysconfig/ 修改dns文件
增加 nameserver 114.114.114.114
# generated by networkmanager nameserver 114.114.114.114
上一篇: MySQL的逻辑查询语句的执行顺序
下一篇: 我的钱也得拿走