Link to home
Start Free TrialLog in
Avatar of yongsing
yongsing

asked on

Get IP address

I have a Solaris 8 server. How do I get its IP address from the console?
ASKER CERTIFIED SOLUTION
Avatar of Pete Long
Pete Long
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
from http:Q_20770413.html#9626744
"netstat -i" display all the network interfaces you have
"ifconfig <interface>" shows all the parameters for the asked interface
"ifconfig -a" display params for all interfaces (but not all UNIX variants support "-a")
Avatar of yongsing
yongsing

ASKER

Thanks, it works.
ThanQ