0
0
SCADA systemsdevops~10 mins

Mobile SCADA access in SCADA systems - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start the SCADA mobile server.

SCADA systems
start_mobile_scada_server(port=[1])
Drag options to blanks, or click blank then click option'
A8080
B443
C21
D3306
Attempts:
3 left
💡 Hint
Common Mistakes
Using port 21 which is for FTP and not secure.
Using port 8080 which is often for HTTP but not secure.
Using port 3306 which is for MySQL database connections.
2fill in blank
medium

Complete the code to enable user authentication for mobile SCADA access.

SCADA systems
enable_authentication(method='[1]')
Drag options to blanks, or click blank then click option'
Anone
Bguest
Canonymous
Doauth2
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'none' disables authentication, which is insecure.
Using 'anonymous' or 'guest' allows access without credentials.
3fill in blank
hard

Fix the error in the code to correctly configure the SCADA mobile client timeout.

SCADA systems
set_client_timeout(seconds=[1])
Drag options to blanks, or click blank then click option'
A30
BNone
C-10
D'thirty'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a string instead of a number.
Using a negative number which is invalid.
Using None which is not a valid timeout value.
4fill in blank
hard

Fill both blanks to configure secure communication and logging for mobile SCADA.

SCADA systems
configure_mobile_scada(ssl=[1], logging_level='[2]')
Drag options to blanks, or click blank then click option'
ATrue
BFalse
CDEBUG
DERROR
Attempts:
3 left
💡 Hint
Common Mistakes
Disabling SSL which makes communication insecure.
Using ERROR level which shows fewer logs.
5fill in blank
hard

Fill all three blanks to define a mobile SCADA user with role and access level.

SCADA systems
create_user(username='[1]', role='[2]', access_level=[3])
Drag options to blanks, or click blank then click option'
Aoperator
Badmin
C5
Dguest
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'guest' role which has limited access.
Using access_level as a string instead of a number.