ifconfig #centos6默认有
ip addr #centos7 默认没有, 需要安装: yum install -y net-tools
ifconfig -a #查看所有的网卡信息
关闭网卡:
ifdomn 网卡名
开启网卡:
ifup 网卡名
###切记不可单独使用
使用办法: ifdown 网卡名 && ifup 网卡名
怎么判断网卡有没有插网线:
ethtool 网卡名
更改主机名:
hostnamectl set-hostname 主机名 # centos 6 不支持,配置文件:/etc/hostname, 不需要重启,重新打开一个终端,就可以看见变化
hostname #查看当前主机名
dns 配置文件: /etc/resolv.conf #来源是配置网卡文件,当时也配置了dns
cat /etc/hosts #定义域名所访问到的ip地址,只在本机生效
格式: 左边ip.右边域名.支持一个ip配置多个域名,空格隔离
原文地址:http://blog.51cto.com/13451715/2309085
时间: 2024-10-16 00:00:59