1. 程式人生 > >Ubuntu設定靜態IP地址

Ubuntu設定靜態IP地址

1)開啟命令控制檯,輸入如下命令
sudo vi /etc/network/interfaces
,然後輸入root賬戶的密碼。

2)使用vi命令的“i”進入編輯模式,先註釋掉如下程式碼

auto eth0
iface eth0 inet dhcp

同時在該檔案中加入如下程式碼:

auto eth0
iface eth0 inet static
address 192.168.1.1 #靜態ip
gateway 192.168.1.253 #閘道器
netmask 255.255.255.0 #子網掩碼


3)然後重啟網路服務即可,輸入如下命令:

sudo /etc/init.d/networking restart