Include the saved output of the routing table. Explain the entries in the routing table and discuss the values of the fields for each entry.

What will be an ideal response?


```
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
10.0.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
10.0.2.0 10.0.1.21 255.255.255.0 UG 0 0 0 eth0
10.0.3.0 10.0.1.21 255.255.255.0 UG 0 0 0 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
```
Routing table on PC2
```
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
10.0.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
10.0.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
10.0.3.0 10.0.2.1 255.255.255.0 UG 0 0 0 eth1
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
```
Routing table on PC4
```
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
10.0.1.0 10.0.3.1 255.255.255.0 UG 0 0 0 eth0
10.0.2.0 10.0.3.1 255.255.255.0 UG 0 0 0 eth0
10.0.3.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U 0 0 0 lo
```
The first field is the destination, which can be a specific host, a subnet, the loopback, or a default
route (anything else).
? The second field is the gateway to forward packets intended for the destination.
? The third field is the netmask for the corresponding destination, with 255.255.255.255 for a host
and 0.0.0.0 for a default route.
? The fourth field is the flags (U = route is up; G = use gateway).
? The fifth field is the Maximum Segment Size (bytes) for TCP packets.
? The sixth field is the Windows size for TCP connections over this route.
? The seventh field is the initial route trip time for TCP connections over this route.
? The eighth field is the interface in which this route is connected to.

Computer Science & Information Technology

You might also like to view...

Computer programming is

a. an art b. a science c. both of the above d. neither of the above

Computer Science & Information Technology

In the binary search, each pass (recursion or iteration) selects a subproblem of the original problem to solve. What fraction of the array sent to an initial call is eliminated in the next iterative pass or recursive call?

What will be an ideal response?

Computer Science & Information Technology

______ can be used to make the program execute nonsequentially.

A. if statements B. Loops C. All of the above

Computer Science & Information Technology

Name one way to enter the Flash testing environment.

What will be an ideal response?

Computer Science & Information Technology