solaris配置IP位址過程

2021-08-25 07:09:30 字數 1626 閱讀 2061

solaris 10 配置 ip 位址過程

一.快速配置

1.確定網絡卡介面名

# kstat -c net | grep net

name: ce0 class: net

name: ce1 class: net

2.啟動介面

# ifconfig ce0 plumb

3.設定ip

# ifconfig ce0 10.24.8.207 netmask 255.255.255.0 up

4.設定預設閘道器

# route add default 10.24.8.1

5.檢查ip配置

# ifconfig -a

lo0: flags=2001000849mtu 8232 index 1

inet 127.0.0.1 netmask ff000000

ce0: flags=1000843running ,multicast,ipv4> mtu 1500 index 2

inet 10.24.8.207 netmask ffffff00 broadcast 10.24.8.255

...注意配置的網絡卡狀態中有running 字樣,如果沒有的話,可以考慮是網線沒有插在相應的網絡卡介面上,

要麼把網線插到正確的介面上,要麼重新在正確的網路介面上配置ip。

以上配置在機器重啟後會失效。

要使以上配置永久生效,按如下步驟修改各個檔案。

二.永久生效配置

1.修改/etc/hosts檔案

這個檔案中指定ip位址與別名的對應關係,如果以後要修改ip位址,修改這個檔案的ip就可以

# cat /etc/hosts

127.0.0.1 localhost

10.24.8.207 testsvr.com testsvr loghost

為避免系統報找不到本機機器名的錯誤,一定按照上面的樣子配置ip 。

2.編輯網路介面檔案

修改介面檔案,如果不存在就直接建立,這個檔案確定網路介面、別名、ip三者的對應關係。

有幾個網絡卡,就有幾個hostname.《介面名》 檔案

這個檔案只有一行內容,對應於/etc/hosts檔案中ip位址後的別名

# cat /etc/hostname.ce0

testsvr

3.修改預設閘道器的配置

# cat /etc/defaultrouter

10.24.8.1

4.修改子網掩碼配置

# cat /etc/netmasks

10.24.8.207 255.255.255.0

5.dns設定

如果機器需要通過網域名稱訪問其他伺服器,則必須配置dns

#cat /etc/resolv.conf

domainname testsvr.com

nameserver 10.24.7.7

當然,也可以在/etc/hosts檔案中追加要訪問的伺服器的ip 和網域名稱資訊。

但是,如果使用/etc/resolv.conf 的話,必須同時修改 /etc/nsswitch.conf 的這一行

hosts: files

改為hosts: files dns

這表示:將使用hosts檔案解析主機,如果無法解析主機名將使用dns。

solaris配置IP位址過程

本文 表示感謝 solaris 10 配置 ip 位址過程 一.快速配置 1.確定網絡卡介面名 kstat c net grep net name ce0 class net name ce1 class net 2.啟動介面 ifconfig ce0 plumb 3.設定ip ifconfig c...

solaris配置IP位址過程

solaris 10 配置 ip 位址過程 一.快速配置 1.確定網絡卡介面名 kstat c net grep net name ce0 class net name ce1 class net 2.啟動介面 ifconfig ce0 plumb 3.設定ip ifconfig ce0 10.24...

Solaris下更改IP位址

solaris下更改ip位址 1 ifconfig命令暫時修改 ifconfig用來配置網絡卡的ip位址,改動後即生效,但並不儲存,下次啟動後失效。ifconfig a 得出網絡卡的名字,一般第一塊100m網絡卡名為 hme0 ifconfig hme0 down 先把網絡卡hme0的服務暫時停止 ...