在Linux中,添加新網卡的命令是ip
命令或ifconfig
命令。
使用ip
命令添加新網卡:
sudo ip link add <interface_name> type <interface_type>
其中,<interface_name>
是新網卡的名稱,<interface_type>
是新網卡的類型,如ethernet
、bridge
等。
使用ifconfig
命令添加新網卡:
sudo ifconfig <interface_name> up
其中,<interface_name>
是新網卡的名稱。
請注意,以上命令需要以超級用戶(即root用戶)或具有管理員權限的用戶來執行。