Refer to the Exhibit. External users require HTTP connectivity to an internal company web server that is listening on TCP port 8080. Which command set accomplishes?
A.
interface G0/0 ip address 209.165.200.225 255.255.255.224 ip nat outside
interface G0/1 ip address 10.1.1.1 255.255.255.0 ip nat inside
ip nat inside source static tcp 209.165.200.225 8080 10.1.1.100 8080
B.
interface G0/0 ip address 209.165.200.225 255.255.255.224 ip nat inside
interface G0/1 ip address 10.1.1.1 255.255.255.0 ip nat outside
ip nat inside source static tcp 10.1.1.1 8080 209.165.200.225 80
C.
interface G0/0 ip address 209.165.200.225 255.255.255.224 ip nat outside
interface G0/1 ip address 10.1.1.1 255.255.255.0 ip nat inside
ip nat inside source static tcp 10.1.1.1 8080 209.165.200.225 80
D.
interface G0/0 ip address 209.165.200.225 255.255.255.224 ip nat inside
interface G0/1 ip address 10.1.1.1 255.255.255.0 ip nat outside
ip nat inside source static tcp 209.165.200.225 80 10.1.1.100 8080
C. interface G0/0
ip address 209.165.200.225 255.255.255.224
ip nat outside
interface G0/1
ip address 10.1.1.1 255.255.255.0
ip nat inside
ip nat inside source static tcp 10.1.1.1 8080 209.165.200.225 80
This translates traffic on http standard port (80) to port 8080.
8080 is not a default http port... doesn't make sense that anything outside of this private network would be trying to send http traffic to 8080
interface G0/0
ip address 209.165.200.225 255.255.255.224
ip nat outside
interface G0/1
ip address 10.1.1.1 255.255.255.0
ip nat inside
ip nat inside source static tcp 209.165.200.225 8080 10.1.1.100 8080
The external interface (G0/0) is configured as an "outside" interface using ip nat outside.
The internal interface (G0/1) is configured as an "inside" interface using ip nat inside.
The static NAT translation is set up using ip nat inside source static tcp, which maps the external IP address and port to the internal IP address and port.
This configuration ensures that traffic entering the router from the internet on port 8080 is translated to the internal web server (10.1.1.100) on port 8080.
Options B, C, and D have incorrect configurations for achieving the specified goal.
Both A and C would work. A is the more direct configuration because it allows a 1:1 translation.
However, I would go with C because that option lets people outside the NAT use default http port 80. If the goal is to let people outside the NAT use the webserver, I doubt most people would know to specifically put port 8080 when trying to reach the server.
Sorry for my English.
Confused question.
In options "B", "C" the source IP address is incorrect.
In option “A” the public IP address is indicated first. And you will never have a NAT match in your life. While interface G0/0 "nat outside"
In option "D" ip nat is incorrectly specified internally on interface G0/0.
But if we do not have information that PAT is running on the router, or there is another Static NAT. Why don't we choose option "D"? After all, then the configuration will be correct and requests from the ISP on port 80 will be redirected to the WEB server on port 8080
ip nat inside source static tcp 209.165.200.225 8080 10.1.1.100 8080
# Configure NAT mapping to map the external IP address and port (209.165.200.225:8080) to the internal web server (10.1.1.100:8080)
Did you notice that B C Dall have ip nat inside source static 10.1.1.1? 10.1.1.1 is the router IP address, while the task says that we should redirect to a WEB server address which is 10.1.1.100
The traffic coming from the web would probably use the TCP port 80 and the server is listening for the TCP port 8080. When you configure a NAT translation, it applies for both incoming and outgoing traffic.
Based on the wording of the question, the answer is either A or C since G0/1 is the inside address.
I believe the translated address should be 10.1.1.100 not "10.1.1.1" since we want to translate the servers address in choice C.
Choice A looks correct if we are trying to do Destination NAT, but it specifies "source".
Not sure what to go with :/
upvoted 3 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
outnumber_gargle024
Highly Voted 10 months, 1 week agoteems5uk
Highly Voted 10 months, 3 weeks agoReavr
2 months, 4 weeks agoali_sh85
Most Recent 1 day, 14 hours agoOutlaw_87
3 weeks agoartilling
2 months agochiacche
2 months, 3 weeks agoRfvaz
3 months, 1 week agoapetrov
5 months, 2 weeks ago[Removed]
6 months agoAlfredomulemarchese
6 months, 1 week agoXomXom
7 months, 1 week agoanonymous1966
10 months, 1 week agokldoyle97
11 months ago