在Linux中,您可以使用ifconfig
命令(在较旧的系统上)或ip
命令(在较新的系统上)来启用或禁用网络接口
使用ifconfig(适用于较旧的Linux发行版):
sudo ifconfig<interface> up
以启用网络接口,其中<interface>
是要启用的网络接口名称(例如,eth0或ens33)。例如:sudo ifconfig eth0 up
sudo ifconfig<interface> down
以禁用网络接口。例如:sudo ifconfig eth0 down
使用ip(适用于较新的Linux发行版):
sudo ip link set<interface> up
以启用网络接口,其中<interface>
是要启用的网络接口名称(例如,eth0或ens33)。例如:sudo ip link set eth0 up
sudo ip link set<interface> down
以禁用网络接口。例如:sudo ip link set eth0 down
请注意,这些命令需要管理员权限才能运行。因此,确保在命令前加上sudo
。