Ubuntu下靜態IP位址的配置

2021-06-26 06:47:33 字數 1226 閱讀 6078

linux下靜態ip位址的配置

設定ip

$sudo vi /etc/network/inte***ces

auto lo

iface lo inet loopback          

auto eth0

iface eth0 inet static

address 192.168.1.221

netmask 255.255.255.0

gateway 192.168.1.1

儲存,並關閉gedit。

這樣,ip並沒有立即生效。需要執行

$sudo /etc/init.d/networking restart

這時候就能ping到區域網中的電腦了。但是上不了internet,是因為沒有設定dns的原因。dns資訊儲存在/etc/resolv.conf中,一旦更改,立即生效。

$sudo vi /etc/resolv.conf

#generated by networkmanager

domain localdomain

search localdomain

nameserver 192.168.1.1

nameserver 192.168.1.1

儲存並關閉,現在就可以上網了。

附網絡卡設定相關命令:

檢視網絡卡資訊: ifconfigsu

設定乙個網絡卡ip:ifconfig eth0 192.168.1.10 netmask 255.255.255.0

重啟網絡卡使設定生效:sudo /etc/init.d/networking restart

檢視路由相關資訊:route -n

注意!!!!!!!!!!!!!

如果你在ubuntu 12.04下,會發現修改乙個dns,都有點困難。我每次修改後,重啟網路,修改就丟失。

# dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)

#     do not edit this file by hand -- your changes will be overwritten -

檔案是自動生成。那麼到底修改那個檔案,可以永久生效。

cd /etc/resolvconf/resolv.conf.d/

# cat base

nameserver 172.16.10.4

這個時候,才能永久修改。

ubuntu配置靜態IP位址

我本人使用的linux為深度的發行版,其核心仍然是ubuntu,並且我的使用環境是vmware中。其靜態ip配置如下 1.首先sudo vim etc network inte ces 2.然後輸入如下內容 auto lo iface lo inet loopback 前兩行是系統自帶的。auto ...

ubuntu設定靜態ip位址

vim etc network inte ces 原內容有如下4行 auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp 以上表示預設使用dhcp分配ip,修改為如下 auto lo iface lo inet loopback ...

ubuntu配置靜態IP位址

ubuntu靜態ip配置方法 sudo gedit etc network inte ces auto eth0 iface eth0 inet static 指定為static address 192.168.1.103 ip位址 gateway 192.168.1.1 閘道器 netmask 2...