在Debian系統中,ifconfig
命令用于顯示和配置網絡接口。要使用ifconfig
查看網絡接口,請按照以下步驟操作:
打開終端(Terminal)。
輸入以下命令并按回車鍵:
ifconfig
這將顯示系統中所有活動的網絡接口及其相關信息,如IP地址、子網掩碼、廣播地址等。輸出示例:
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::a00:27ff:fe4e:66a1 prefixlen 64 scopeid 0x20<link>
ether 08:00:27:4e:66:a1 txqueuelen 1000 (Ethernet)
RX packets 1003421 bytes 123456789 (117.7 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 987654 bytes 987654321 (941.5 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 640 bytes 524288 (512.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 640 bytes 524288 (512.0 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
在這個示例中,eth0
是一個活動的網絡接口,具有IPv4地址192.168.1.100
和IPv6地址fe80::a00:27ff:fe4e:66a1
。lo
是本地回環接口,用于在本地計算機上進行網絡通信。
請注意,ifconfig
命令在某些Debian版本中可能已被棄用,建議使用ip
命令替代。要使用ip
命令查看網絡接口,請輸入以下命令:
ip addr
或者
ip a