Ubuntu網路配置命令

2021-06-02 21:40:12 字數 918 閱讀 1977

為網絡卡配置靜態ip位址

auto lo

iface lo inet loopback

auto eth0

iface eth0 inet static

address 192.168.7.44

netmask 255.255.255.0

gateway 192.168.7.1

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

sudo /etc/init.d/networking restart

注:生效後,需要配置dns後才可上網

設定dns:

要訪問dns 伺服器來進行查詢,需要設定/etc/resolv.conf檔案.

sudo vi /etc/resolv.conf

nameserver 202.106.0.20

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

sudo /etc/init.d/networking restart

測試ping一下**:

ping g.cn

1. 以dhcp方式配置網絡卡

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

ubuntu網路配置命令

ubuntu網路配置例如 1 配置eth0的ip位址,同時啟用該裝置。ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up 2 配置eth0別名裝置eth0 1的ip位址,並新增路由。ifconfig eth0 192.168.1.3 route a...

Ubuntu修改網路配置命令

以eth0為例 1.以dhcp方式配置網絡卡 sudo vi etc network inte ces 並用下面的行來替換有關eth0的行 the primary network inte ce,use dhcp to find our address auto eth0 iface eth0 in...

ubuntu 網路配置

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