热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

linux网络命令(1):ifconfig命令

许多windows非常熟悉ipconfig命令行工具,它被用来获取网络接口配置信息并对此进行修改。Linux系统拥有一个类似的工具,也就是ifconfi

许多windows非常熟悉ipconfig命令行工具,它被用来获取网络接口配置信息并对此进行修改。Linux系统拥有一个类似的工具,也就是ifconfig(interfaces config)。通常需以root身份登录或使用sudo以便Linux机器上使用ifconfig工具。依赖于ifconfig命令中使用些选项属性,ifconfig工具不仅可以被用来简单地获取网络接口配置信息,还可以修改这些配置。

1.命令格式:

ifconfig [网络设备] [参数]

2.命令功能:

ifconfig 命令用来查看和配置网络设备。当网络环境发生改变时可通过此命令对网络进行相应的配置

3.命令参数:

up 启动指定网络设备/网卡

down 关闭指定网络设备/网卡该参数可以有效地阻止通过指定接口的IP信息流,如果想永久地关闭一个接口,我们还需要从核心路由表中将该接口的路由信息全部删除。

arp 设置指定网卡是否支持ARP协议

-promisc 设置是否支持网卡的promiscuous模式,如果选择此参数,网卡将接收网络中发给它所有的数据包

-allmulti 设置是否支持多播模式,如果选择此参数,网卡将接收网络中所有的多播数据包

-a 显示全部接口信息

-s 显示摘要信息(类似于 netstat -i)

add 给指定网卡配置IPv6地址

del 删除指定网卡的IPv6地址

<硬件地址> 配置网卡最大的传输单元

mtu<字节数> 设置网卡的最大传输单元 (bytes)

netmask<子网掩码> 设置网卡的子网掩码掩码可以是有前缀0x的32位十六进制数&#xff0c;也可以是用点分开的4个十进制数。如果不打算将网络分成子网&#xff0c;可以不管这一选项&#xff1b;如果要使用子网&#xff0c;那么请记住&#xff0c;网络中每一个系统必须有相同子网掩码。

tunel 建立隧道

dstaddr 设定一个远端地址&#xff0c;建立点对点通信

-broadcast<地址> 为指定网卡设置广播协议

-pointtopoint<地址> 为网卡设置点对点通讯协议

multicast 为网卡设置组播标志

address 为网卡设置IPv4地址

txqueuelen<长度> 为网卡设置传输列队的长度

4&#xff0e;使用实例&#xff1a;

实例1&#xff1a;显示网络设备信息&#xff08;激活状态的&#xff09;

命令&#xff1a;

ifconfig

输出&#xff1a;

[root&#64;localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:50:56:BF:26:20  
          inet addr:192.168.120.204  Bcast:192.168.120.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:8700857 errors:0 dropped:0 overruns:0 frame:0
          TX packets:31533 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:596390239 (568.7 MiB)  TX bytes:2886956 (2.7 MiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:68 errors:0 dropped:0 overruns:0 frame:0
          TX packets:68 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:2856 (2.7 KiB)  TX bytes:2856 (2.7 KiB)

 

说明&#xff1a;

eth0 表示第一块网卡&#xff0c; 其中 HWaddr 表示网卡的物理地址&#xff0c;可以看到目前这个网卡的物理地址(MAC地址&#xff09;是 00:50:56:BF:26:20

inet addr 用来表示网卡的IP地址&#xff0c;此网卡的 IP地址是 192.168.120.204&#xff0c;广播地址&#xff0c; Bcast:192.168.120.255&#xff0c;掩码地址Mask:255.255.255.0 

lo 是表示主机的回坏地址&#xff0c;这个一般是用来测试一个网络程序&#xff0c;但又不想让局域网或外网的用户能够查看&#xff0c;只能在此台主机上运行和查看所用的网络接口。比如把 HTTPD服务器的指定到回坏地址&#xff0c;在浏览器输入 127.0.0.1 就能看到你所架WEB网站了。但只是您能看得到&#xff0c;局域网的其它主机或用户无从知道。

第一行&#xff1a;连接类型&#xff1a;Ethernet&#xff08;以太网&#xff09;HWaddr&#xff08;硬件mac地址&#xff09;

第二行&#xff1a;网卡的IP地址、子网、掩码

第三行&#xff1a;UP&#xff08;代表网卡开启状态&#xff09;RUNNING&#xff08;代表网卡的网线被接上&#xff09;MULTICAST&#xff08;支持组播&#xff09;MTU:1500&#xff08;最大传输单元&#xff09;&#xff1a;1500字节

第四、五行&#xff1a;接收、发送数据包情况统计

第七行&#xff1a;接收、发送数据字节数统计信息。

实例2&#xff1a;启动关闭指定网卡

命令&#xff1a;

ifconfig eth0 up

ifconfig eth0 down

输出&#xff1a;

说明&#xff1a;

ifconfig eth0 up 为启动网卡eth0 &#xff1b;ifconfig eth0 down 为关闭网卡eth0ssh登陆linux服务器操作要小心&#xff0c;关闭了就不能开启了&#xff0c;除非你有多网卡。

实例3&#xff1a;为网卡配置和删除IPv6地址

命令&#xff1a;

ifconfig eth0 add 33ffe:3240:800:1005::2/64

ifconfig eth0 del 33ffe:3240:800:1005::2/64

输出&#xff1a;

说明&#xff1a;

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

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

练习的时候&#xff0c;ssh登陆linux服务器操作要小心&#xff0c;关闭了就不能开启了&#xff0c;除非你有多网卡。

实例4&#xff1a;用ifconfig修改MAC地址

命令&#xff1a;

ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE

输出&#xff1a;

[root&#64;localhost ~]# ifconfig eth0 down //关闭网卡
[root&#64;localhost ~]# ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE //修改MAC地址
[root&#64;localhost ~]# ifconfig eth0 up //启动网卡
[root&#64;localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:AA:BB:CC:DD:EE  
          inet addr:192.168.120.204  Bcast:192.168.120.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:8700857 errors:0 dropped:0 overruns:0 frame:0
          TX packets:31533 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:596390239 (568.7 MiB)  TX bytes:2886956 (2.7 MiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:68 errors:0 dropped:0 overruns:0 frame:0
          TX packets:68 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:2856 (2.7 KiB)  TX bytes:2856 (2.7 KiB)
[root&#64;localhost ~]# ifconfig eth0 hw ether 00:50:56:BF:26:20 //关闭网卡并修改MAC地址 
[root&#64;localhost ~]# ifconfig eth0 up //启动网卡
[root&#64;localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:50:56:BF:26:20  
          inet addr:192.168.120.204  Bcast:192.168.120.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:8700857 errors:0 dropped:0 overruns:0 frame:0
          TX packets:31533 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:596390239 (568.7 MiB)  TX bytes:2886956 (2.7 MiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:68 errors:0 dropped:0 overruns:0 frame:0
          TX packets:68 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:2856 (2.7 KiB)  TX bytes:2856 (2.7 KiB) 

说明&#xff1a;

 

实例5&#xff1a;配置IP地址

命令&#xff1a;

输出&#xff1a;

[root&#64;localhost ~]# ifconfig eth0 192.168.120.56 
[root&#64;localhost ~]# ifconfig eth0 192.168.120.56 netmask 255.255.255.0 
[root&#64;localhost ~]# ifconfig eth0 192.168.120.56 netmask 255.255.255.0 broadcast 192.168.120.255

 

说明&#xff1a;

ifconfig eth0 192.168.120.56 

给eth0网卡配置IP地&#xff1a;192.168.120.56

 ifconfig eth0 192.168.120.56 netmask 255.255.255.0 

给eth0网卡配置IP地址&#xff1a;192.168.120.56 &#xff0c;并加上子掩码&#xff1a;255.255.255.0

ifconfig eth0 192.168.120.56 netmask 255.255.255.0 broadcast 192.168.120.255

/给eth0网卡配置IP地址&#xff1a;192.168.120.56&#xff0c;加上子掩码&#xff1a;255.255.255.0&#xff0c;加上个广播地址&#xff1a; 192.168.120.255

 

实例6&#xff1a;启用和关闭ARP协议

命令&#xff1a;

ifconfig eth0 arp

ifconfig eth0 -arp

输出&#xff1a;

[root&#64;localhost ~]# ifconfig eth0 arp 
[root&#64;localhost ~]# ifconfig eth0 -arp

 

说明&#xff1a;

ifconfig eth0 arp 开启网卡eth0 arp协议&#xff1b;

ifconfig eth0 -arp 关闭网卡eth0 arp协议&#xff1b;

 

实例7&#xff1a;设置最大传输单元

命令&#xff1a;

ifconfig eth0 mtu 1500

输出&#xff1a;

[root&#64;localhost ~]# ifconfig eth0 mtu 1480
[root&#64;localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:50:56:BF:26:1F  
          inet addr:192.168.120.203  Bcast:192.168.120.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1480  Metric:1
          RX packets:8712395 errors:0 dropped:0 overruns:0 frame:0
          TX packets:36631 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:597062089 (569.4 MiB)  TX bytes:2643973 (2.5 MiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:9973 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9973 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:518096 (505.9 KiB)  TX bytes:518096 (505.9 KiB)

[root&#64;localhost ~]# ifconfig eth0 mtu 1500
[root&#64;localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:50:56:BF:26:1F  
          inet addr:192.168.120.203  Bcast:192.168.120.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:8712548 errors:0 dropped:0 overruns:0 frame:0
          TX packets:36685 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:597072333 (569.4 MiB)  TX bytes:2650581 (2.5 MiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:9973 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9973 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:518096 (505.9 KiB)  TX bytes:518096 (505.9 KiB)

[root&#64;localhost ~]# 

 

说明&#xff1a;

设置能通过的最大数据包大小为 1500 bytes

 

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






推荐阅读
author-avatar
陈公子
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有