FILL BLANK -
Which parameter is missing in the command
ip link set ____ dev eth0
to activate the previously inactive network interface eth0? (Specify the parameter only without any command, path or additional options.)
FILL BLANK -
Which parameter is missing in the command
ip link set ____ dev eth0
to activate the previously inactive network interface eth0? (Specify the parameter only without any command, path or additional options.)
The correct parameter to activate the previously inactive network interface eth0 in the command 'ip link set ____ dev eth0' is 'up'. This command is used to bring the interface up, which means to activate the interface so it can start sending and receiving packets. Therefore, the missing parameter is 'up'.
up, but in this order: ip link set { DEVICE | dev DEVICE | group DEVGROUP } [ { up | down } ] [ type TYPE ARGS ] [ arp { on | off } ] [ dynamic { on | off } ] [ multicast { on | off } ] [ allmulticast { on | off } ] [ promisc { on | off } ] [ trailers { on | off } ] [ carrier { on | off } ] [ txqueuelen PACKETS ] [ name NEWNAME ] [ address LLADDR ] [ broadcast LLADDR ] [ mtu MTU ] [ netns { PID | NAME } ] [ link-netns NAME | link-netnsid ID ]
ip link set up dev eth0 (is correct) also sudo ip link set dev eth0 up (will work) followed by sudo ifup eth0 (to reactivate the interface)