DEVASC Exam QuestionsBrowse all questions from this exam

DEVASC Exam - Question 504


DRAG DROP

-

Refer to the exhibit. Drag and drop the code from the bottom onto the box where the code is missing to configure the GigabitEthernet 3 interface. Not all options are used.

Show Answer
Correct Answer:

Discussion

4 comments
Sign in to comment
Ghneuma
Jun 30, 2024

I think the last one is crud.update(provider, interface).

jbmac
Sep 24, 2024

The provided solution is correct. interface = model.Native.Interface.GigabitEthernet() interface.name = '3' interface.description = 'Interface Description' interface.ip.address.primary.address = '172.16.10.10' interface.ip.address.primary.mask = '255.255.255.0' crud.create(provider, interface)

ExamNinja1
Jan 27, 2025

update on the last one.. The interface has already been created on the device.

daniii89
Feb 5, 2025

interface = model.Native.Interface.GigabitEthernet() interface.ip.address.primary.address = '172.16.10.10' interface.ip.address.primary.mask = '255.255.255.0' crud.update(provider, interface)