溫馨提示×

ubuntu如何更改ip地址

小新
19948
2021-04-12 19:27:08
欄目: 智能運維

ubuntu更改ip地址的方法:1.打開終端;2.輸入命令打開ubuntu的網(wǎng)絡(luò)配置文件;3、根據(jù)需求修改設(shè)置address、gateway、netmask這三個值;4.使用命令使網(wǎng)絡(luò)設(shè)置生效即可。


ubuntu如何更改ip地址


具體操作步驟:

1.首先通過快捷鍵【Ctrl+Alt+T】打開終端命令行模式。

2.輸入以下命令打開ubuntu的網(wǎng)絡(luò)配置文件。


sudo vi /etc/network/interfaces


3.根據(jù)自己的需求修改設(shè)置address、gateway、netmask這三個值即可。


# The primary network interface iface eth0 inet static

auto eth0

iface eth0 inet static

address 192.168.2.1 #ip地址

gateway 192.168.2.254 #網(wǎng)關(guān)

netmask 255.255.255.0 #子網(wǎng)掩碼


4.最后使用以下命令使網(wǎng)絡(luò)設(shè)置生效即可。


sudo /etc/init.d/networking restart


相關(guān)操作:

為網(wǎng)卡配置靜態(tài)IP地址

首先在終端使用“sudo vi /etc/network/interfaces”命令打開網(wǎng)絡(luò)配置文件。

然后用以下的代碼替換有關(guān)eth0的行內(nèi)容,然后輸入命令網(wǎng)絡(luò)配置生效即可。


# The primary network interface

auto eth0

iface eth0 inet static

address 192.168.2.1

gateway 192.168.2.254

netmask 255.255.255.0

#network 192.168.2.0

#broadcast 192.168.2.255



sudo /etc/init.d/networking restart #使網(wǎng)絡(luò)配置生效



0