檢視ubuntu 的ip : ifconfig
一、動態ip配置
開啟網路配置檔案:
$ sudo gedit /etc/network/inte***ces
在這裡你應該會看到如下內容:
auth lo
iface lo inet loopback
這個正是lo回環,是讓你可以ping通localhost的,不能刪除,否則你寫程式的時候偵錯程式會工作不正常。
如果需要讓這台機器通過dhcp獲得ip來加入網路,那麼只需要在上面的lo回環的配置內容下面加入:
auth eth0
iface eth0 inet dhcp
二、靜態ip配置
開啟網路配置檔案:
$ sudo gedit /etc/network/inte***ces
如果不是通過dhcp來獲得ip而是需要手動指定ip並且指定閘道器,那麼如此配置:
auto eth0
iface eth0 inet static
address 192.168.1.190
netmask 255.255.255.0
gateway 192.168.1.1
設定dns:
$ sudo gedit /etc/resolv.conf
向這裡新增配置內容:
nameserver ***.***.***.***
儲存即可。
三、讓網路配置檔案生效
兩個方法(推薦方法2):
1、重啟ubuntu:
$ sudo reboot
2、重啟網路元件:
$ sudo /etc/init.d/networking restart
四、配置示例
**:zzm@zzm-desktop:~$ more /etc/network/inte***ces
auto eth0
iface eth0 inet static
address 192.168.1.190
netmask 255.255.255.0
gateway 192.168.1.1
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
zzm@zzm-desktop:~$ more /etc/resolv.conf
nameserver 10.10.0.21
nameserver 192.168.1.149
zzm@zzm-desktop:~$
Ubuntu 檢視本機的ip
開啟終端中執行 ifconfig a命令即可,如下圖所示白色背景資訊即是。說明 enp0s3 表示第一塊網絡卡,其中 hwaddr 表示網絡卡的實體地址,可以看到目前這個網絡卡的實體地址 mac位址 是 08 00 27 4e e0 ae inet addr 用來表示網絡卡的ip位址,此網絡卡的 i...
Ubuntu檢視當前IP位址
ifconfig eth0 awk inet 截圖 arping ip位址 nmblookup a ip位址 ifconfig eth0 awk inet w3m no cookie dump www.123cha.com grep o 0 9 0 9 0 9 0 9 w3m no cookie d...
檢視區域網的所有IP
檢視區域網ip 已知兩種方式一種是cmd命令,另一種是第三方軟體。第一種cmd視窗方式 通過以下命令獲取所有ip儲存到d盤下pinglog.txt檔案中 注意 提前建立好檔案 for l i in 1,1,254 do ping n 1 w 30 192.168.9.i d pinglog.txt ...