实验――LINUX常用网络测试命令

2008-05-28 10:26:14
这是我大学里老师上课的实验
1、 ifconfig
    可以使用ifconfig命令来配置并查看网络接口的配置情况。
    例如:
  (1) 配置eth0的IP地址, 同时激活该设备。
  #ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up
  (2) 配置eth0别名设备eth0:1的IP地址,并添加路由。
  #i
2008-05-28 10:26:14
这是我大学里老师上课的实验
1、 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 �Chost 192.168.1.3 dev eth0:1
  (3) 激活设备。
  #ifconfig eth0 up
  (4) 禁用设备。
  #ifconfig eth0 down
  (5) 查看指定的网络接口 fconfig eth0 192.168.1.3
  #route add �Chost 192.168.1.3 dev eth0:1
  (3) 激活设备。
  #ifconfig eth0 up
  (4) 禁用设备。
  #ifconfig eth0 down
  (5) 查看指定的网络接口

你可能感兴趣的:(linux,职场,休闲)