Linux經常使用命令,及網絡測試命令

 

出處:https://i.linuxtoy.org/files/pdf/fwunixref.pdfjavascript

=======================================html

一、 ifconfig
    能夠使用ifconfig命令來配置並查看網絡接口的配置狀況。
    例如:
  (1) 配置eth0的IP地址, 同時激活該設備。
   #ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up
  (2) 配置eth0別名設備eth0:1的IP地址,並添加路由。

   #ifconfig eth0 192.168.1.3
  
#route add –host 192.168.1.3 dev eth0:1
  (3) 激活設備。

   #ifconfig eth0 up
  (4) 禁用設備。

   #ifconfig eth0 down
  (5) 查看指定的網絡接口的配置。

   #ifconfig eth0
  (6) 查看全部的網絡接口配置。

   #ifconfig
二、
route
  能夠使用route命令來配置並查看內核路由表的配置狀況。

  例如:
  (1) 添加到主機的路由。
   #route add –host 192.168.1.2 dev eth0:0
  
#route add –host 10.20.30.148 gw 10.20.30.40
  (2) 添加到網絡的路由。

   #route add –net 10.20.30.40 netmask 255.255.255.248 eth0
  
#route add –net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41
  
#route add –net 192.168.1.0/24 eth1
  (3) 添加默認網關。

   #route add default gw 192.168.1.1
  (4) 查看內核路由表的配置。

   #route
  (5)刪除路由。

   #route del –host 192.168.1.2 dev eth0:0
  
#route del –host 10.20.30.148 gw 10.20.30.40
  
#route del –net 10.20.30.40 netmask 255.255.255.248 eth0
  
#route del –net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41
  
#route del –net 192.168.1.0/24 eth1
  
#route del default gw 192.168.1.1
  對於1和2兩點可以使用下面的語句實現:

   Ifconfig eth0 172.16.19.71 netmask 255.255.255.0
  
Route 0.0.0.0 gw 172.16.19.254
  
Service network restart
三、
traceroute
  能夠使用traceroute命令顯示數據包到達目的主機所通過的路由。

  例如:
   #traceroute http://www.sina.com.cn/
四、 ping
  能夠使用ping 命令來測試網絡的連通性。

  例如:
   #ping http://www.sina.com.cn/
   #ping –c 4 192.168.1.12
五、
netstat
  能夠使用netstat命令來顯示網絡狀態信息。

  例如:
  (1) 顯示網絡接口狀態信息。
   #netstat –i
  (2) 顯示全部監控中的服務器的Socket和正使用Socket的程序信息。

   #netstat –lpe
  (3) 顯示內核路由表信息。

   #netstat –r
  
#netstat –nr
  (4) 顯示TCP/UDP傳輸協議的鏈接狀態。

   #netstat –t
  
#netstat –u
六、
hostname
  能夠使用hostname命令來更改主機名。例如;

   #hostname myhost
七、
arp
  能夠使用arp命令來配置並查看arp緩存。例如:

  (1) 查看arp緩存。
   #arp
  (2) 添加一個IP地址和MAC地址的對應記錄。

   #arp –s 192.168.33.15 00:60:08:27:CE:B2
  (3) 刪除一個IP地址和MAC地址的對應緩存記錄。

  #arp –d192.168.33.15
 
出處:http://www.cnblogs.com/sharezone/archive/2009/02/12/1389142.html
相關文章
相關標籤/搜索