Multiple choice cisco-ccna

Which command would prevent TFTP from address 172.16.16.16 to go through the Ethernet 0 interface 192.32.16.7?

  1. access-list 1 deny 192.32.16.7

  2. access-list 101 deny host 172.16.16.16 1 host 192.32.16.7 eq 69

  3. access-list 1 deny ip host 172.16.16.16 1 host 192.32.16.7 eq 69

  4. access-list 1 deny 172.16.16.16

  5. can't be done because it's TFTP

Reveal answer Fill a bubble to check yourself
D Correct answer
AI explanation

A standard access list can only filter based on source IP address, not on protocol or port, so access-list 1 deny 172.16.16.16 blocks all traffic sourced from that host out the interface — which includes the TFTP traffic in question. The other extended-ACL-style options mix syntax incorrectly (e.g., stray numbers, mismatched keywords), making them invalid Cisco IOS commands.