クラウド エンジニアは、IP アドレス 192.168.10.50 からの Linux サーバーへのアクセスをブロックする必要があります。 この目標を達成するには、次のコマンドのどれを使用しますか?
正解:B
The correct command to block the IP address 192.168.10.50 from accessing a Linux server is: iptables -A INPUT -s 192.168.10.50 -j DROP This command appends a rule to the INPUT chain that matches the source address 192.168.10.50 and jumps to the DROP target, which discards the packet. The other commands are incorrect because they either have invalid syntax, wrong parameters, or wrong order of arguments.