ネットワーク エンジニアが、既存の VLAN に新しくインストールされたサーバーの接続のトラブルシューティングを行っています。 エンジニアは次の出力を確認します。 C:\> ipconfig IPアドレス: 192.168.100.225 マスク: 255.255.255.224 ゲートウェイ: 192.168.100.254 ルータ# show ip route C 192.168.100.0/24は直接接続されており、GigabitEthernet0/0 次のどれが問題を表していますか?
正解:A
The server's subnet mask is 255.255.255.224 (/27), which covers IPs from 192.168.100.224 to 192.168.100.255. However, the router only recognizes 192.168.100.0/24, indicating a mismatch between the server's subnet and the router's network. Correct mask for the /24 network is 255.255.255.0, allowing 256 IPs from 192.168.100.0 to 192.168.100.255. This mismatch would result in routing issues, especially with the gateway outside of the subnet range. # Reference: CompTIA Network+ N10-009 Official Objectives: 5.2 - Given a scenario, troubleshoot common wired connectivity issues.