User jack on host solaris attempts to use ssh to log in to host oracle and receives this message:
jack@solaris:~$ ssh oracle
ssh: connect to host oracle port 22: connection refused What is the problem?
Correct Answer:
G
The host he is trying to connect to (oracle) is not running the required service (ssh).
You need to know the IP address configured on interface net3, and that the interface is up. Which command confirms these?
Correct Answer:
C
Show address information, either for the given addrobj or all the address objects configured on the specified interface, including the address objects that are only in the persistent configuration.
State can be: disabled, down, duplicate, inaccessible, ok, tentative Example:
# ipadm show-addr
ADDROBJ TYPE STATE ADDR
lo0/v4 static ok 127.0.0.1/8 lo0/v6 static ok ::1/128
You are the administrator for a group of shell script developers. They use vi, and have asked you to make their scripts automatically executable when they save their files.
How can this be accomplished?
Correct Answer:
E
Unlike DOS, which uses the file extension to determine if a file is executable or not, UNIX relies on file permissions.
The value assigned by umask is subtracted from the default.
User's file creation mask. umask sets an environment variable which automatically sets file permissions on newly created files. i.e. it will set the shell process's file creation mask to mode.
umask 000 would grant full permissions. Note: 777 full permissions
Oracle Solaris 11 limits access to the system with usernames and passwords.
The usernames are held in , and the passwords are held in . Select the correct pair.
Correct Answer:
B
The /etc/passwd file contains basic user attributes. This is an ASCII file that contains an entry for each user. Each entry defines the basic attributes applied to a user.
/etc/shadow file stores actual password in encrypted format for user's account with additional properties related to user password i.e. it stores secure user account information. All fields are separated by a colon (:) symbol. It contains one entry per line for each user listed in /etc/passwd file.
Select the packet type that identifies members of the group and sends information to all the network interfaces in that group.
Correct Answer:
B
IPv6 defines three address types: unicast
Identifies an interface of an individual node.
multicast
Identifies a group of interfaces, usually on different nodes. Packets that are sent to the multicast address go to all members of the multicast group.
anycast
Identifies a group of interfaces, usually on different nodes. Packets that are sent to the anycast address go to the anycast group member node that is physically closest to the sender.