Configure the IP address settings for the router (R1), the computers (PC1 and PC2), and the switch (S1) for the network provided in Figure 1. Use the IP addresses provided in Table 1.


```
R1
R1#
R1# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
R1(config)# interface fa0/0
R1(config-if)# ip address 192.168.21.1 255.255.255.240
R1(config-if)# no shut
R1(config-if)#

PC1
C:\> ip address 192.168.21.8 255.255.255.240
C:\> gateway 192.168.21.1

PC2
C:\> ip address 192.168.21.6 255.255.255.240
C:\> gateway 192.168.21.1

S1
C:\> ip address 192.168.21.5 255.255.255.240
C:\> gateway 192.168.21.1
```

Computer Science & Information Technology

You might also like to view...

If this code fragment were executed in an otherwise correct and complete program, what would the output be? Explain.

``` int a = 3, b = 2, c = 5 if (a > b) a = 4; if ( b > c) a = 5; else a = 6; cout << a < endl; a) 3 b) 4 c) 5 d) 6 e) None of the above, the cout statement belongs to the else and so is skipped. ```

Computer Science & Information Technology

________ is a standardized version of JavaScript

Fill in the blank(s) with correct word

Computer Science & Information Technology

Each type of collection supports some form of all of the following EXCEPT ____.

A. addition B. removal C. membership D. hierarchy

Computer Science & Information Technology

A site bridge is needed to connect two or more sites for replication.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology