ubuntu網路配置檔案主要檔案有/etc/network/inte***ces 和 /etc/resolv.conf。
主要命令/etc/init.d/networking restart重啟網路,使配置生效;也可以通過sudo ifdown eth0 和sudo ifup eth0來重啟網絡卡使配置生效。
1、通過/etc/network/inte***ces來更改ip、閘道器、掩碼等。
a、配置dhcp方式上網
auto eth0 #開機啟動網絡卡
iface eth0 inet dhcp
b、靜態ip
auto lo
iface lo inet loopback
#上面的是回環
#網絡卡eth0的配置
auto eth0
#staic 靜態ip
iface eth0 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.1
2、通過/etc/resolv.conf配置dns
nameserver 202.96.128.68
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...