ifconfig命令可已查看和设置网络接口的属性
route命令可查看和维护系统路由表信息,可查看和设置缺省网关的地址
ping命令用于测试当前主机与目标主机之间的网络连接
traceroute命令用于测试当前主机与目标主机间的所有网络节点的连接状态
hostname命令用于显示和设置主机名称
nslookup命令用于查询域名解析
ifconfig命令用于查看网络接口信息
查看所有活动网络接口的信息$ /sbin/ifconfig
查看所有网络接口(包括非活动网络接口)的信息
$ /sbin/ifconfig -a
查看指定网络接口信息
$ /sbin/ifconfig eth0
route命令可查看主机的路由信息
$ /sbin/route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.152.0 * 255.255.255.0 U 0 0 0 eth0
169.254.0.0 * 255.255.0.0 U 0 0 0 eth0
default 192.168.152.2 0.0.0.0 UG 0 0 0 eth0
traceroute命令测试当前主机到目的主机之间经过的所有网络节点
$ traceroute 192.168.1.1
traceroute to 192.168.1.1 (192.168.1.1), 30 hops max, 38 byte packets
1 192.168.152.2 (192.168.152.2) 2.293 ms 1.300 ms 0.994 ms
2 192.168.1.1 (192.168.1.1) 4.821 ms 3.518 ms 5.539 ms
hostname命令可显示当前主机的名称
$ hostname
localhost.localdomain
nslookup命令可进行域名的查询
使用nslookup命令的交互模式进行域名查询
$ nslookup
> www.sina.com.cn
使用nslookup直接查询域名
$ nslookup www.sina.com.cn
Server: 192.168.152.2
Address: 192.168.152.2#53
Non-authoritative answer:
www.sina.com.cn canonical name = jupiter.sina.com.cn.
jupiter.sina.com.cn canonical name = libra.sina.com.cn.
Name: libra.sina.com.cn
Address: 202.108.33.32
ifconfig命令可以设置网络接口的ip地址
# ifconfig eth0 192.168.152.133 \
> netmask 255.255.255.0
route命令可以维护系统路由表信息
删除缺省网关
# route del default gw 192.168.152.2
添加缺省网关
# route add default gw 192.168.152.2
hostname命令可以对当前主机的名称进行设置
hostname命令设置的主机名称是即时生效的
系统重新启动后将会恢复为系统原有的主机名称
# hostname yaohuaServer
使用nslookup命令的交互模式可以显示和设置当前命令使用的DNS服务器
显示使用的DNS服务器地址
# nslookup
> server
Default server: 192.168.152.2
Address: 192.168.152.2#53
设置nslookup命令使用的DNS服务器地址
> server 202.106.0.20
Default server: 202.106.0.20
Address: 202.106.0.20#53