Solaris 10.5配置主機名、IP地址、閘道器

你好我是李白發表於2020-01-10
/* 確定當前在系統上安裝了哪些介面,此命令報告它找到的所有介面驅動程式,而不管介面當前是否已配置。
# dladm show-link
/* 確定當前在系統上已檢測哪些介面。
# ifconfig -a
/* 配置並檢測每個介面。
# ifconfig interface plumb up
/* 配置IPV4地址
# ifconfig -a
# ifconfig e1000g1 192.168.204.244
# ifconfig e1000g1 netmask 255.255.255.0
# ifconfig e1000g1 up
# ifconfig -a
/* 要使介面配置在重新引導後繼續存在,請執行以下步驟:
/* 為要配置的每個介面建立 /etc/hostname.interface 檔案。
/* 例如,要新增 e1000g1 介面,請建立以下檔案:
# vi /etc/hostname.e1000g1
192.168.204.244 netmask 255.255.255.0
/* 修改主機名
# vi /etc/nodename
solaris
/* /etc/hosts為/etc/inet/hosts檔案的軟連線
# vi /etc/hosts 
192.168.204.244       solaris
/* 配置閘道器,預設閘道器只能配置一個
# vi /etc/defaultrouter
/* 使用命令route -p選項配置永久路由
# route -p add net 192.168.204.0 -netmask 255.255.255.0 192.168.204.100 -interface
/* 重新引導
# reboot -- -r
/* 刪除物理介面。
# ifconfig interface down unplumb 
/* 例如,要刪除介面 qfe1,可鍵入:
# ifconfig qfe1 down unplumb
/* 監控系統
# prstat
/* 利用程式pid檢視程式關聯的檔案以及ip地址,埠
# pfiles


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

相關文章