dacota 發表於 2009-1-31 23:31:06

Ubuntu 8.04 LTS 伺服器安裝-網路設定

網路設定 (設定固定ip,dhcp為自動取得ip)

vi /etc/network/interfaces

auto eth0
iface eth0 inet static
address 163.23.112.139
netmask 255.255.255.192
gateway 163.23.112.190

#同一張網卡新增一個虛擬的網路ip
auto eth0:0
iface eth0:0 inet static
address 172.20.1.248
netmask 255.255.255.0
gateway 172.20.1.254


/etc/init.d/networking restart #重新啟動網卡設定

ifconfig #檢查網路設定

vi /etc/hosts #檢查 hosts
127.0.0.1 localhost
163.23.112.139 mail.tdes.chc.edu.tw mail

GQrzgg 發表於 2013-5-21 09:43:59

頁: [1]
查看完整版本: Ubuntu 8.04 LTS 伺服器安裝-網路設定