Solaris 10 網路卡相關配置

spectre2發表於2012-01-08

配置網路卡

(注意:網路卡名可能是bge0、pcn0、qfe0 可以使用ifconfig -a檢視)

#ifconfig -a    檢視網路卡
例如網路卡名為:bge0

#ifconfig bge0 unplumb 停止網路卡

#ifocnfig bge0 down 停止使用

#ifconfig bge0 plumb 起用網路卡

#ifconfig bge0 up 使用網路卡

# vi /etc/nodename 新增主機名

配置IP地址

格式:ifconfig 介面 IP netmak 子網掩碼

例:#ifconfig bge0 192.168.240.2 netmask 255.255.255.192

配置預設閘道器

修改etc/defaultrouter檔案(如果沒有該檔案自己建立一個)

例:

#vi /etc/defaultrouter

192.168.1.1

配置DNS伺服器地址

修改etc/resolv.conf檔案(如果沒有該檔案自己建立一個)

例:

#vi /etc/resolv.con

nameserver 202.106.192.6

修改etc/nsswitch.conf

例:

#vi /etc/nsswitch.conf

...

hosts:      files dns

...

(配置了IP地址、預設閘道器、dns主機、reboot後就可正常連線到公網了)

如何一塊網路卡幫定三個ip,並且子網掩碼不同

舉例說明,網路卡名bge0:

# vi /etc/hosts

127.0.0.1 localhost

192.168.2.1 dbs loghost

192.168.9.15 dd

192.168.9.65 aa

# vi /etc/netmasks

192.168.2.0 255.255.255.0

192.168.9.0 255.255.255.192

192.168.9.64 255.255.255.252

#vi /etc/hostname.bge0:1

dd

#vi /etc/hostname.bge0:2

aa

#init 6

#ifconfig -a
配置閘道器:
# route add default gateway (如果需要的話)
# vi /etc/hosts
# vi /etc/netmasks
# vi /etc/defaultrouter
ok,不用重新啟動

檢視服務狀態(online\disable)

#svcs

檢視某一個服務是否開啟

#svcs -a |grep telent

啟動服務

#svcadm enable telnet

關閉服務

#svcadm disable telnet

重啟服務

#svcadm restart telent

參考:http://hi.baidu.com/itwzz/blog/item/4d416643de5304179213c645.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14184018/viewspace-714577/,如需轉載,請註明出處,否則將追究法律責任。

相關文章