Ubuntu網路配置

2021-10-09 10:44:49 字數 956 閱讀 3285

sudo vim /etc/network/inte***ces
靜態ip配置:

auto lo

iface lo inet loopback

auto eno1 //系統啟動時自動啟動第0塊網絡卡

iface eno1 inet static

//static表示設定靜態ip

address 172.17

.200

.156

//設定ip

gateway 172.17

.200

.1//設定閘道器

netmask 255.255

.255

.0//設定子網掩碼

自動獲取ip配置:

auto lo

iface lo inet loopback

auto eno1 //系統啟動時自動啟動第0塊網絡卡

iface eno1 inet dhcp //dhcp表示自動獲取ip位址

sudo /etc/init.d/networking restart

方法一

ifconfig eno1 down

ifconfig eno1 up

方法二
ifdown eno1

ifup eno1

方法三
service network restart

或者/etc/init.d/netorking restart

ubuntu 網路配置

進入網路配置檔案 sudo vi etc network inte ces 在這裡你應該會看到如下內容 auth lo iface lo inet loopback 這個正是 lo回環,我需要讓這台執行 ubuntu server 的機子通過 dhcp 獲得ip 來加入網路,那麼我只需要在上面的 l...

Ubuntu 網路配置

1 sudo vi etc network inte ces 更改配置為 autoeth0 ifaceeth0 inet static address 192.168.3.90 gateway 192.168.3.1 netmask 255.255.255.0 sudo etc init.d net...

ubuntu 網路配置

檢查網路配置命令 ifconfig 4 如果以dhcp方式配置網絡卡,則改為 auto eth0 iface eth0 inet dhcp 也可以在命令列下直接輸入下面的命令來獲取位址 sudo dhclient eth0 5 配置dns伺服器的位址,最多可以使用3個dns伺服器 sudo vi e...