102-500 Exam QuestionsBrowse all questions from this exam

102-500 Exam - Question 94


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.)

Show Answer
Correct Answer:

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'.

Discussion

2 comments
Sign in to comment
Lewatos
Nov 27, 2021

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 ]

SScott
Mar 23, 2022

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)