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...

Lisa, a technician, is troubleshooting a laptop's connection to a wireless network and notices the user has placed their cell phone on top of the wireless router. Which of the following is the cell phone MOST likely generating?

A. Wrong encryption B. An SSID mismatch C. Latency D. Interference

Computer Science & Information Technology

The update source for a WSUS server must be the Microsoft Update server.

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

Computer Science & Information Technology