ifconfig 用于多个接口

ifconfig 用于多个接口

我想对多个接口执行“up”命令,并认为使用 ifconfig eth{0..3} up 会有所帮助,但没有,我该如何实现呢?

答案1

你可以使用for 循环例如

for i in {0..3}; do ifconfig eth${i} up; done

相关内容