Include the NAT table of Router2 and provide an explanation of the columns of the table.

What will be an ideal response?

Contents of the NAT table:
```
Router2#show ip nat translations
Pro Inside global Inside local Outside local Outside global
--- 200.0.0.2 10.0.1.2 --- ---
```
The NAT table has four columns which show the entries for the Inside global, Inside local,
Outside local and Outside global address respectively.
? An inside local address is an address in the private network that is not visible in the
public network.
? An inside global address can be used in the public network for devices in the private
network.
? An outside local address is used by devices in the private network to addresses in the
public network.
? An outside global address is an address in the public network that is not made known in the private network. The local address 10.0.1.2 is mapped onto global address 200.0.0.2 by the NAT router. The outside local and outside global addresses are not set.

Computer Science & Information Technology

You might also like to view...

In the catch block below, what is e?

``` catch (DivideByZeroException e) { Console.WriteLine(e); } ``` a) The type of the exception being caught b) The name of catch block’s exception parameter c) A finally block d) An exception handler

Computer Science & Information Technology

The electronic components of most digital devices are mounted on a circuit board called a ______________.

A. system board B. motherboard C. main board D. all of the above

Computer Science & Information Technology