ubuntu下設定靜態ip 問題

2021-06-22 14:35:58 字數 1620 閱讀 3152

1. 檢驗是否可以連通,就使用ping命令ping 閘道器

2. 設定ip

sudo ifconfig eth0 10.8.17.99 netmask 255.255.255.0

這樣就算設定好了網絡卡eth0的ip位址和子網掩碼

3. 設定閘道器

sudo route add default gw 133.133.133.40

4. ping 閘道器就可以ping通了

5. 設定dns 修改/etc/resolv.conf,在其中加入

nameserver dns的位址1

nameserver dns的位址2

這樣設定之後,下次開機時候似乎ip又不存在了

二、直接修改系統配置檔案

ubuntu的網路配置檔案是:/etc/network/inte***ces

ubuntu命令列修改網路配置方法

/etc/network/inte***ces

開啟後裡面可設定dhcp或手動設定靜態ip。前面auto eth0,讓網絡卡開機自動掛載.

1. 以dhcp方式配置網絡卡

編輯檔案/etc/network/inte***ces:

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

並用下面的行來替換有關eth0的行:

# the primary network inte***ce - use dhcp to find our address

auto eth0

iface eth0 inet dhcp

用下面的命令使網路設定生效:

sudo /etc/init.d/networking restart

也可以在命令列下直接輸入下面的命令來獲取位址

sudo dhclient eth0

2. 為網絡卡配置靜態ip位址

編輯檔案/etc/network/inte***ces:

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

並用下面的行來替換有關eth0的行:# the primary network inte***ce

auto eth0

iface eth0 inet static

address 192.168.3.90

gateway 192.168.3.1

netmask 255.255.255.0

#network 192.168.3.0

#broadcast 192.168.3.255

將上面的ip位址等資訊換成你自己就可以了.用下面的命令使網路設定生效:

sudo /etc/init.d/networking restart

3. 設定第二個ip位址(虛擬ip位址)

編輯檔案/etc/network/inte***ces:

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

在該檔案中新增如下的行:

auto eth0:1

iface eth0:1 inet static

address 192.168.1.60

netmask 255.255.255.0

network x.x.x.x

broadcast x.x.x.x

gateway x.x.x.x

ubuntu下設定靜態ip 問題

1.檢驗是否可以連通,就使用ping命令ping 閘道器 2.設定ip sudo ifconfig eth0 10.8.17.99 netmask 255.255.255.0 這樣就算設定好了網絡卡eth0的ip位址和子網掩碼 3.設定閘道器 sudo route add default gw 13...

Ubuntu 16 04下設定靜態IP

參考 新增內容 auto eth0 iface eth0 inet static address 192.168.8.100 netmask 255.255.255.0 gateway 192.168.8.2 dns nameserver 119.29.29.29 注意 erho要改為自己網絡卡的名...

linux下設定靜態IP

前提請確認網路連線方式為 橋接 修改網絡卡eth0 vim etc sysconfig network scripts ifcfg eth0 device eth0 bootproto static 將原來的值 dhcp 改為 static hwaddr 00 0c 29 f2 4e 96 ipv6...