ifconfig是用来设置和配置网卡的命令工行具,为了手工配置网络,需要熟悉这个命令。使
用该命令的好处是无须重新启动机器。
要赋给eth0接口IP地址208.164.186.2,使用命令:
[root@Aid]# ifconfig
这个命令的输出是这样的:
eth0 Link encap:Ethernet HWaddr 00:E0:18:90:1B:56
inet addr:208.164.186.2 Bcast:208.164.186.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1295 errors:0 dropped:0 overruns:0 frame:0
TX packets:1163 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:100
Interrupt:11 Base address:0xa800
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:3924 Metric:1
RX packets:139 errors:0 dropped:0 overruns:0 frame:0
TX packets:139 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
若运行不带任何参数的 ifconfig命令,这个命令将显示机器所有激活的接口的信息。带有 -a
参数的命令则显示所有的接口的信息,包括没有激活的接口,例如:
[root@Aid]# ifconfig -a
这个命令的输出是这样:
注意:用 ifconfig命令配置的网络设备参数,在重新启动以后将会丢失。
要给208.164.186.1配置默认网关,使用命令:
[root@Aid]# route add default gw 208.164.186.1
在这个例子中,默认网关设置为 208.164.186.1 。然后,测试一下是否可以连通本网段的机器,从网络上随便选一台主机比如 208.164.186.1测试一下。
用下面的命令测试一下能否连通这台计算机:
[root@Aid]# ping 208.164.186.1
输出会是这样的:
PING 208.164.186.1 (208.164.186.1) from 208.164.186.2 : 56 data bytes
64 bytes from 208.164.186.2: icmp_seq=0 ttl=128 time=1.0 ms
64 bytes from 208.164.186.2: icmp_seq=1 ttl=128 time=1.0 ms
64 bytes from 208.164.186.2: icmp_seq=2 ttl=128 time=1.0 ms
64 bytes from 208.164.186.2: icmp_seq=3 ttl=128 time=1.0 ms
--- 208.164.186.1 ping statistics ---
4 packets transmitted, 4 packets received, 0% packet loss
round-trip min/avg/max = 1.0/1.0/1.0 ms
现在可以使用 route命令输出路由表信息来查看。
用下面的命令显示路由信息:
[root@Aid]# route -n
输出是这样的:
从网络上随便选一台主机比如 208.164.186.1测试一下。用下面的命令测试一下能否连通这台计算机:
[root@Aid]# ping 208.164.186.1
输出会是这样的:
现在可以使用 route命令输出路由表信息来查看。
用下面的命令显示路由信息
要使系统中所有的网络接口停止工作,使用命令:
[root@Aid]# /etc/rc.d/init.d/network stop
要启动系统中所有的网络接口,使用命令:
[root@Aid]# /etc/rc.d/init.d/network start