要查看Linux系統(tǒng)中的子網(wǎng)掩碼和網(wǎng)關(guān),可以使用以下命令:
子網(wǎng)掩碼:
ifconfig
命令查看網(wǎng)絡(luò)接口的配置信息。示例命令:ifconfig eth0
或ifconfig enp0s3
。Mask
、netmask
或子網(wǎng)掩碼
,后面的數(shù)值即為子網(wǎng)掩碼。網(wǎng)關(guān):
route
命令查看路由表。示例命令:route -n
。Destination
為0.0.0.0
的那一行。Gateway
列中的數(shù)值即為網(wǎng)關(guān)。注意:上述命令需要在root權(quán)限下執(zhí)行,或者使用sudo命令執(zhí)行。