|
|
|
|
UGU: Unix Guru Universe - Unix Tip #4375- March 3, 2024
- Home : Help
: Today's Tip
Unix Tip #4375- March 3, 2024
ANOTHER GET YOUR IP ADDRESS
A previous tip listed how
to get the IP address for your
system using the output from
ifconfig. However the output
from ifconfig is different
across systems.
For Solaris use:
ifconfig -a | grep "inet" | grep -v "127.0.0.1" | awk '{print $2;}'
For HP-UX use:
ifconfig foo | grep "inet" | awk '{print $2;}'
Where foo is the interface, generally lan0, lan1 etc.
This tip generously supported by: gromano@staterail.nsw.gov.au
NOTE: All tips provided are USE AT YOUR OWN RISK. Tips are submitted
by various unix admins around the globe. UGU suggest you read and
test each tip in a non-volitile environment before placing into
production.
LAST 5 TIPS
4374
- WATCH THOSE VENDORS
4373
- SHELL PROMPT CONTROL
4372
- SOLARIS PROCESSOR COUNT
4371
- MOVING FILES WITH CPIO
4370
- CHECKI FOR FULL FILESYSTEMS
I want to
SUBSCRIBE
and get a UGU Tip everyday.
I want to
UNSUBSCRIBE
and NOT get a UGU Tip everyday.
If you have a UNIX TIP let us know, we just may use it:
(All tips become the property of the Unix Guru Universe)
|
|
|
Copyright 1994-2024 Unix Guru Universe |
|
|
|
|