Ubuntu 的網路配置

2021-08-02 23:56:00 字數 1528 閱讀 9642

1、安裝vim full版本,ubuntu預設安裝的是vim tiny版本:

$sudo apt-get remove vim-common

$sudo apt-get install vim //為了防止退格鍵、方向鍵在vi編輯模式下失效

2、修改ubuntu的/etc/network/inte***ces

檔案預設的內容如下:

auto lo

iface lo inet loopback

動態獲取的配置方法:

auto eth0

iface eth0 inet dhcp

靜態分配的配置方法:

auto eth0

iface eth0 inet static

address 192.168.0.1

netmask 255.255.255.0

gateway 192.168.0.1

3、編輯 /etc/resolv.conf檔案

nameserver

202.99.166.4

4、重啟下網路

$cd /etc/init.d/

$sudo ./networking restart

5、如果未重啟成功,編輯命令有如下結果

$ dmesg | grep -i eth

[ 3.050064] e1000

0000:02

:01.0

eth0: (pci:66

mhz:

32-bit) 00

:0c:29:

05:a3

:e2[ 3.050074] e1000

0000:02

:01.0

eth0:

intel(r) pro/1000

network

connection

[ 3.057410] e1000

0000:02

:01.0

ens33: renamed from eth0

6、操作如下步驟:

$ sudo nano /etc/default/grub

修改 grub_cmdline_linux="net.ifnames=0 biosdevname=0"

// dhcp 模式無需操作以下步驟!

$ sudo grub-mkconfig -o /boot/grub/grub.cfg

auto eth0

iface eth0 inet static

address 192.168.12.12

netmask 255.255.255.0

dns-nameservers 192.168.12.2

gateway 192.168.12.2

$ sudo reboot

Ubuntu的網路配置

1.使用命令檢視網絡卡基本資訊 ifconfig 如要配置電腦的實體地址是00 11 22 33 44 55 則 sudo ifconfig eth0 hw ether 00 11 22 33 44 55 4.禁止網絡卡 sudo ifconfig eth0 down 使能網絡卡 sudo ifco...

ubuntu 的網路配置

重啟網路命令 sudo etc init.d networking restart 修改網路配置 sudo vi etc network inte ces 具體檔案參考 etc network inte ces configuration file for ifup 8 ifdown 8 the l...

ubuntu 網路配置

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