1. 檢驗是否可以連通,就使用ping命令ping 閘道器
開始的時候總是現實unreachable
2. 設定ip
sudo ifconfig eth0 133.133.133.190 netmask 255.255.255.0
這樣就算設定好了網絡卡eth0的ip位址和子網掩碼
3. 設定閘道器 sudo route add default gw 133.133.133.40
4. ping 閘道器就可以ping通了
5. 設定dns 修改/etc/resolv.conf,在其中加入
nameserver dns的位址1
nameserver dns的位址2
2. 為網絡卡配置靜態ip位址編輯檔案
/etc/network/inte***ces: sudo vi /etc/network/inte***ces
並用下面的行來替換有關eth0的行:
# the primary network inte***ce
auto eth0
iface eth0 inet static
address 203.171.239.155
gateway 203.171.239.129
netmask 255.255.255.224
#network 203.171.239.128 #broadcast 192.168.3.159
將上面的ip位址等資訊換成你自己就可以了.用下面的命令使網路設定生效: sudo /etc/init.d/networking 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...