溫馨提示×

linux怎么查看子網(wǎng)掩碼和網(wǎng)關(guān)

小億
456
2023-11-08 16:01:11

要查看Linux系統(tǒng)中的子網(wǎng)掩碼和網(wǎng)關(guān),可以使用以下命令:

  1. 子網(wǎng)掩碼:

    • 使用ifconfig命令查看網(wǎng)絡(luò)接口的配置信息。示例命令:ifconfig eth0ifconfig enp0s3
    • 在輸出中找到Mask、netmask子網(wǎng)掩碼,后面的數(shù)值即為子網(wǎng)掩碼。
  2. 網(wǎng)關(guān):

    • 使用route命令查看路由表。示例命令:route -n。
    • 在輸出的表格中找到Destination0.0.0.0的那一行。
    • 在該行的Gateway列中的數(shù)值即為網(wǎng)關(guān)。

注意:上述命令需要在root權(quán)限下執(zhí)行,或者使用sudo命令執(zhí)行。

0