在RHEL 8/CentOS 8 Minimal系统中通常是找不到Ifconfig命令的,因为RHEL 8/CentOS 8的最小安装版本不随ifconfig命令一起安装。以上就介绍在RHEL 8/CentOS 8 Minimal系统上安装Ifconfig。
Ifconfig简介 Ifconfig是一个命令行工具,用于配置内核驻留网络接口。使用ifconfig可以配置网络接口,显示当前可用的所有接口。 注意:ifconfig程序已过时,但仍然很受用。 在最小安装RHEL 8/CentOS 8 Minimal时,ifconfig命令由packagenet-tools提供,这是基本网络管理工具组包。 # yum provides ifconfig Updating Subscription Management repositories. Updating Subscription Management repositories. Last metadata expiration check: 21 days, 0:07:56 ago on Fri 30 Nov 2018 03:57:18 AM EST. net-tools-2.0-0.51.20160912git.el8.x86_64 : Basic networking tools Repo: @System Matched from: Filename: /usr/sbin/ifconfig net-tools-2.0-0.51.20160912git.el8.x86_64 : Basic networking tools Repo: rhel-8-for-x86_64-baseos-beta-rpms Matched from: Filename: /usr/sbin/ifconfig
在RHEL 8/CentOS 8 Minimal系统上安装ifconfig的方法 要获取ifconfig命令,请安装net-tools包: sudo yum -y install net-tools
Ifconfig使用Cheatsheet 1.显示第一个以太网适配器的网络设置 ifconfig wlan0 ifconfig eth0 2.显示所有接口 ifconfig -a 3.取下/升级网络适配器 ifconfig wlan0/eth0 {up|down} 4.设置静态IP和网络掩码 ifconfig eth0 192.168.1.100 netmask 255.255.255.0 5.可能还需要添加网关IP route add -net 192.168.1.0 netmask 255.255.255.0 gw 192.168.1.1 6.更改MAC地址 ifconfig eth0 hw ether AA:BB:CC:DD:EE:FF 7.启用混杂模式 ifconfig eth0 promisc ifconfig eth0 -promisc 8.向网络接口添加新别名 ifconfig eth0:0 172.16.25.127 ifconfig eth0:0 down 至此,你的RHEL 8/CentOS 8服务器上就有ifconfig了。
相关主题 |