码迷,mamicode.com
首页 > 系统相关 > 详细

Linux ifconfig命令

时间:2015-04-16 00:56:07      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

一、简介

ifconfig是Linux系统用来获取并修改网络接口配置信息的工具。

注意:用ifconfig命令配置的网卡信息,在网卡重启后机器重启后,配置就不存在。要想将上述的配置信息永远的存的电脑里,那就要修改网卡的配置文件了。

 

二、应用实例:

实例1:显示网络设备信息(激活状态的)

ifconfig

实例2:启动关闭指定网卡

ifconfig eth0 up     #启动网卡eth0  ifconfig eth0 down   #关闭网卡eth0

实例3:为网卡配置和删除IPv6地址

ifconfig eth0 add 33ffe:3240:800:1005::2/64   #为网卡eth0配置IPv6地址

ifconfig eth0 del 33ffe:3240:800:1005::2/64   #为网卡eth0删除IPv6地址

实例4:修改MAC地址

ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE
实例5:配置IP地址
ifconfig eth0 192.168.120.56 
ifconfig eth0 192.168.120.56 netmask 255.255.255.0  
ifconfig eth0 192.168.0.2/24 
ifconfig eth0 192.168.120.56 netmask 255.255.255.0 broadcast 192.168.120.255

实例6:启用和关闭ARP协议

ifconfig eth0 arp    #开启网卡eth0 的arp协议;
ifconfig eth0 -arp   #关闭网卡eth0 的arp协议;

实例7:设置最大传输单元

ifconfig eth0 mtu 1500

实例8:开启eth0网卡的混合模式

ifconfig  eth0  promisc

Linux ifconfig命令

标签:

原文地址:http://www.cnblogs.com/274914765qq/p/4430487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!