LINUX网络部分

1. 网卡操作

ifconfig eth0 down

ifup eth0

ifconfig eth0:0 172.16.1.1 虚接口

route

route -n 路由条目多时可跳过解析主机名的过程,提高显示速度

netstat -anupt

traceroute ip-address

ifconfig eth0 192.168.1.1/24

ifconfig eth0 192.168.1.1 netmask 255.255.255.0


route add -net 192.168.1.0/24 gw 192.168.2.254 -net 指定目标网段

route del -net 192.168.1.0/24

route | grep "default" 默认网关记录

route del default gw 192.168.2.1

route add default gw 192.168.2.1


2. 系统配置文件

/etc/sysconfig/network 主机名文件

/etc/resolv.conf 域名解析文件 指定当前pc的DNS服务器

nameserver 8.8.8.8

nameserver 202.106.0.20

/etc/hosts 本地主机映射文件

8.8.8.8 www.google.com.hk


3.测试网络连通性

ping

-c count

-w timeout

-o interface

-s packetsize

-S ping的ip源地址,适用于多ip的server


你可能感兴趣的:(linux,网络,配置文件,记录,default)