exam questions

Exam 350-401 All Questions

View all questions & answers for the 350-401 exam

Exam 350-401 topic 1 question 884 discussion

Actual exam question from Cisco's 350-401
Question #: 884
Topic #: 1
[All 350-401 Questions]



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
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
outnumber_gargle024
Highly Voted 10 months, 1 week ago
Selected Answer: C
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
upvoted 9 times
...
teems5uk
Highly Voted 10 months, 3 weeks ago
Selected Answer: 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 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.
upvoted 7 times
Reavr
2 months, 4 weeks ago
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.
upvoted 1 times
...
...
ali_sh85
Most Recent 1 day, 14 hours ago
Selected Answer: D
I think D is correct, it should be a Destination NAT
upvoted 1 times
...
Outlaw_87
3 weeks ago
Selected Answer: C
From the picture Web Server IP is - 10.1.1.100 Last line should be like this: ip nat inside source static tcp 10.1.1.100 8080 209.165.200.225 80
upvoted 1 times
...
artilling
2 months ago
Selected Answer: D
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
upvoted 1 times
...
chiacche
2 months, 3 weeks ago
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)
upvoted 1 times
...
Rfvaz
3 months, 1 week ago
Selected Answer: A
Answer A, focus on the server!
upvoted 1 times
...
apetrov
5 months, 2 weeks ago
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
upvoted 3 times
...
[Removed]
6 months ago
Selected Answer: C
C is correct look at the source port and the source ip
upvoted 1 times
...
Alfredomulemarchese
6 months, 1 week ago
ChatGPT says "A"
upvoted 1 times
...
XomXom
7 months, 1 week ago
normally the incoming traffic (source) is holding a random port, destination is 8080. where we got this 80?
upvoted 1 times
...
anonymous1966
10 months, 1 week ago
Selected Answer: C
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.
upvoted 3 times
...
kldoyle97
11 months ago
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
...
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.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago