Write an IOS command so that the addresses in the private network are mapped to the public IP address 128.143.136.80.

What will be an ideal response?

```
ip nat inside source static 10.0.1.0 128.143.136.80
Students can use the other command sets.
ip nat pool o-ip 128.143.136.80 128.143.136.80 prefix 16
access-list 1 permit 10.0.1.0 0.0.0.255
ip nat inside source list 1 o-ip overload
```

Computer Science & Information Technology

You might also like to view...

Case-Based Critical Thinking QuestionsCase 3-1Art's Woodworking Shop is trying to design a Web page with CSS.  Art would like create the new design based on the latest elements and styles from HTML and CSS.  He has created a few sample pages: home.htm---describes the business and contact informationProduct.htm---list of product descriptions Custom.htm---list of custom products The first step is determine how to render the document.  The style sheet used on the Web is the ______.

A. HTML B. W3C C. CSS D. XHTML

Computer Science & Information Technology

What happens when a router receives a packet with a TTL of 0?

a. The router drops the packet and sends an ICMP TTL expired message back to the host. b. The router attempts to forward the traffic on a local network. c. The router resets the TTL to 128. d. The router marks the packet as corrupted and forwards it to the next hop.

Computer Science & Information Technology