ubuntu 靜態位址配置

2021-06-02 20:20:22 字數 921 閱讀 5240

1.單網絡卡配單ip(普遍)

vi /etc/network/inte***ce

auto eth0

iface eth0 inet static

address ip

netmask 子網掩碼

gateway 閘道器

2.單網絡卡雙ip (情況較少,多用於區分服務或者安全隱藏)

vi /etc/network/inte***ce

auto eth0:0

iface eth0:0 inet static

address ip

netmask 子網掩碼

gateway 閘道器

auto eth0:1

iface eth0:1 inet static

address ip

netmask 子網掩碼

gateway 閘道器

3.雙網絡卡雙ip(應用情況較多,一般為乙個內網乙個為外網)

auto eth0

iface eth0 inet static

address ip

netmask 子網掩碼

gateway 閘道器

auto eth1

iface eth1 inet static

address ip

netmask 子網掩碼

gateway 閘道器

綜上,配置後儲存推出,一般需要重啟下網絡卡才能設定生效,方法很多,比如ifdown eth0 ,ifup eth0,最直接的方法直接在終端鍵入/etc/init.d/networking restart

至於dns,都是一樣的,如下

vi /etc/resolv.conf(實際系統預設的並不存在resolv.conf該檔案,屬於自己建立)

nameserver 主dns

nameserver 後備dns

配置Ubuntu靜態位址

右上角有乙個wifi或者上下箭頭的圖示 選擇這個選項edit contions ipv4 manual 手動方式 ip 192.168.0.210 netmask 255.255.255.0 gatewayip 192.168.0.1 dns 8.8.8.8 sudo service network...

ubuntu配置靜態IP位址

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

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...