ifconfig命令的英文全称是“network interfaces configuring”,即用于配置和显示linux内核中网络接口的网络参数。用ifconfig命令配置的网卡信息,在网卡重启后机器重启后,配置就不存在。要想将上述的配置信息永远的存的电脑里,那就要修改网卡的配置文件了。
语法格式:ifconfig [参数]
常用参数:
add<地址> | 设置网络设备ipv6的ip地址 |
del<地址> | 删除网络设备ipv6的ip地址 |
down | 关闭指定的网络设备 |
up | 启动指定的网络设备 |
ip地址 | 指定网络设备的ip地址 |
参考实例
显示网络设备信息:
[root@linuxcool ~]# ifconfigeth0 link encap:ethernet hwaddr 00:50:56:0a:0b:0c inet addr:192.168.0.3 bcast:192.168.0.255 mask:255.255.255.0 inet6 addr: fe80::250:56ff:fe0a:b0c/64 scope:link up broadcast running multicast mtu:1500 metric:1 rx packets:172220 errors:0 dropped:0 overruns:0 frame:0 tx packets:132379 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 rx bytes:87101880 (83.0 mib) tx bytes:41576123 (39.6 mib) interrupt:185 base address:0x2024 lo link encap:local loopback inet addr:127.0.0.1 mask:255.0.0.0 inet6 addr: ::1/128 scope:host up loopback running mtu:16436 metric:1 rx packets:2022 errors:0 dropped:0 overruns:0 frame:0 tx packets:2022 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 rx bytes:2459063 (2.3 mib) tx bytes:2459063 (2.3 mib)
启动关闭指定网卡:
[root@linuxcool ~]# ifconfig eth0 down[root@linuxcool ~]# ifconfig eth0 up
为网卡配置和删除ipv6地址:
[root@linuxcool ~]# ifconfig eth0 add 33ffe:3240:800:1005::2/64[root@linuxcool ~]# ifconfig eth0 del 33ffe:3240:800:1005::2/64
用ifconfig修改mac地址:
[root@linuxcool ~]# ifconfig eth0 down[root@linuxcool ~]# ifconfig eth0 hw ether 00:aa:bb:cc:dd:ee[root@linuxcool ~]# ifconfig eth0 up[root@linuxcool ~]# ifconfig eth1 hw ether 00:1d:1c:1d:1e [root@linuxcool ~]# ifconfig eth1 up
配置ip地址:
[root@linuxcool ~]# ifconfig eth0 192.168.1.56 [root@linuxcool ~]# ifconfig eth0 192.168.1.56 netmask 255.255.255.0[root@linuxcool ~]# ifconfig eth0 192.168.1.56 netmask 255.255.255.0 broadcast 192.168.1.255