·在Linux中,以太网接口被命名为eth0,eth1等,0,1代表网卡编号,
·查看:
·通过lspci查看网卡硬件信息,如果是usb网卡,可以运行lsusb,
·ifconfig -a查看所有接口,ifconfig eth0查看特定接口,
·ifup eth0启动接口,ifdown eth0禁用接口,
·配置:运行setup配置网卡,
·网卡配置文件/etc/sysconfig/network-scripts/ifcfg-eth0,
·DNS配置文件/etc/resolv.conf,
·主机名配置文件/etc/sysconfig/network,hostname查看或临时修改,
·静态主机名配置文件hosts文件:/etc/hosts,
·测试:
·ping [选项] 192.168.1.1,测试连通性,-c 4,ping4次,-s 60000更改测试包大小,
·host或者dig www.baidu.com,测试DNS解析,
·ip route,显示路由表,
·netstat显示网络相关信息,参数-tluan,服务端口号等,
·traceroute www.baidu.com追踪网络路径,
·mtr www.baidu.com,网络质量测试,结合了traceroute和ping,
原文地址:http://hclgogo.blog.51cto.com/1494961/1635625