How to get ILO management IP and Mac address
I am looking for a way to find the IP address of the HP Proliant server ilo.
I have searched a lot, but no luck. there are way to reboot and get into the bios for getting it. But i cant reboot the production server.
From the Linux server there are some tools I don't know which one to use.
from the below ilo prompt there must be some way to get the ip.
</>hpiLO->
The server is a under cloud env BM as a service. So I can login to both ilo and server only.
hp-proliant
add a comment |
I am looking for a way to find the IP address of the HP Proliant server ilo.
I have searched a lot, but no luck. there are way to reboot and get into the bios for getting it. But i cant reboot the production server.
From the Linux server there are some tools I don't know which one to use.
from the below ilo prompt there must be some way to get the ip.
</>hpiLO->
The server is a under cloud env BM as a service. So I can login to both ilo and server only.
hp-proliant
How did you get the ilo prompt in the first place?
– grawity
Feb 13 '17 at 6:08
It's configured with hostname. Ping is not working it's dropped.
– Mongrel
Feb 13 '17 at 6:09
you could look up the hostname of the ip address from the system you're connecting from, and ARP tables. Exact tools would depend on the OS.
– Journeyman Geek♦
Feb 13 '17 at 6:34
If you have the hostname, you don't need ping just to resolve that name to an address. (That always happens before ping packets are sent, anyway.)
– grawity
Feb 13 '17 at 8:04
add a comment |
I am looking for a way to find the IP address of the HP Proliant server ilo.
I have searched a lot, but no luck. there are way to reboot and get into the bios for getting it. But i cant reboot the production server.
From the Linux server there are some tools I don't know which one to use.
from the below ilo prompt there must be some way to get the ip.
</>hpiLO->
The server is a under cloud env BM as a service. So I can login to both ilo and server only.
hp-proliant
I am looking for a way to find the IP address of the HP Proliant server ilo.
I have searched a lot, but no luck. there are way to reboot and get into the bios for getting it. But i cant reboot the production server.
From the Linux server there are some tools I don't know which one to use.
from the below ilo prompt there must be some way to get the ip.
</>hpiLO->
The server is a under cloud env BM as a service. So I can login to both ilo and server only.
hp-proliant
hp-proliant
edited Feb 13 '17 at 9:23
asked Feb 13 '17 at 5:49
Mongrel
160110
160110
How did you get the ilo prompt in the first place?
– grawity
Feb 13 '17 at 6:08
It's configured with hostname. Ping is not working it's dropped.
– Mongrel
Feb 13 '17 at 6:09
you could look up the hostname of the ip address from the system you're connecting from, and ARP tables. Exact tools would depend on the OS.
– Journeyman Geek♦
Feb 13 '17 at 6:34
If you have the hostname, you don't need ping just to resolve that name to an address. (That always happens before ping packets are sent, anyway.)
– grawity
Feb 13 '17 at 8:04
add a comment |
How did you get the ilo prompt in the first place?
– grawity
Feb 13 '17 at 6:08
It's configured with hostname. Ping is not working it's dropped.
– Mongrel
Feb 13 '17 at 6:09
you could look up the hostname of the ip address from the system you're connecting from, and ARP tables. Exact tools would depend on the OS.
– Journeyman Geek♦
Feb 13 '17 at 6:34
If you have the hostname, you don't need ping just to resolve that name to an address. (That always happens before ping packets are sent, anyway.)
– grawity
Feb 13 '17 at 8:04
How did you get the ilo prompt in the first place?
– grawity
Feb 13 '17 at 6:08
How did you get the ilo prompt in the first place?
– grawity
Feb 13 '17 at 6:08
It's configured with hostname. Ping is not working it's dropped.
– Mongrel
Feb 13 '17 at 6:09
It's configured with hostname. Ping is not working it's dropped.
– Mongrel
Feb 13 '17 at 6:09
you could look up the hostname of the ip address from the system you're connecting from, and ARP tables. Exact tools would depend on the OS.
– Journeyman Geek♦
Feb 13 '17 at 6:34
you could look up the hostname of the ip address from the system you're connecting from, and ARP tables. Exact tools would depend on the OS.
– Journeyman Geek♦
Feb 13 '17 at 6:34
If you have the hostname, you don't need ping just to resolve that name to an address. (That always happens before ping packets are sent, anyway.)
– grawity
Feb 13 '17 at 8:04
If you have the hostname, you don't need ping just to resolve that name to an address. (That always happens before ping packets are sent, anyway.)
– grawity
Feb 13 '17 at 8:04
add a comment |
2 Answers
2
active
oldest
votes
I'd use another approach - checking from the system you're connected on.
I have a Windows box in front of me so I'd use nslookup
to look up the ip address for the hostname, then arp
to look up the MAC address. (The latter assumes the two systems are in the same subnet, as MAC addresses are not visible through a router. Though you could of course check the ARP cache of the router.)
C:Usersfaile_000>nslookup phoebe
Server: router.asus.com
Address: 192.168.1.1
Name: phoebe
Address: 192.168.1.43
C:Usersfaile_000>arp -a 192.168.1.43
Interface: 192.168.1.110 --- 0x1b
Internet Address Physical Address Type
192.168.1.43 c0-7c-d1-c0-39-44 dynamic
Likewise you can use host
or dig
to look up IP addresses on Linux, and arp
or ip neigh show
to see the ARP cache.
[geek@phoebe ~]$ host clocacina
clocacina has address 192.168.1.10
^[[A[geek@phoebe ~]$ dig clocacina
; <<>> DiG 9.10.4-P1-RedHat-9.10.4-1.P1.fc24 <<>> clocacina
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12329
;; flags: qr aa rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;clocacina. IN A
;; ANSWER SECTION:
clocacina. 0 IN A 192.168.1.10
;; Query time: 54 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Feb 13 16:37:04 SGT 2017
;; MSG SIZE rcvd: 43
[geek@phoebe ~]$ ip neigh show 192.168.1.10
192.168.1.10 dev bridge0 lladdr 00:16:d3:2d:8b:9a STALE
[geek@phoebe ~]$ arp 192.168.1.10
Address HWtype HWaddress Flags Mask Iface
Clocacina ether 00:16:d3:2d:8b:9a C bridge0
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
add a comment |
Use this:
hponcfg -w iLO_ouput.out
You will get the general config from ILO.
Try this or a later Version:
https://support.hpe.com/hpsc/swd/public/detail?sp4ts.oid=7252838&swItemId=MTX_ed2c3a30d95f49b8a0eda8e2af&swEnvOid=4184
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1178186%2fhow-to-get-ilo-management-ip-and-mac-address%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'd use another approach - checking from the system you're connected on.
I have a Windows box in front of me so I'd use nslookup
to look up the ip address for the hostname, then arp
to look up the MAC address. (The latter assumes the two systems are in the same subnet, as MAC addresses are not visible through a router. Though you could of course check the ARP cache of the router.)
C:Usersfaile_000>nslookup phoebe
Server: router.asus.com
Address: 192.168.1.1
Name: phoebe
Address: 192.168.1.43
C:Usersfaile_000>arp -a 192.168.1.43
Interface: 192.168.1.110 --- 0x1b
Internet Address Physical Address Type
192.168.1.43 c0-7c-d1-c0-39-44 dynamic
Likewise you can use host
or dig
to look up IP addresses on Linux, and arp
or ip neigh show
to see the ARP cache.
[geek@phoebe ~]$ host clocacina
clocacina has address 192.168.1.10
^[[A[geek@phoebe ~]$ dig clocacina
; <<>> DiG 9.10.4-P1-RedHat-9.10.4-1.P1.fc24 <<>> clocacina
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12329
;; flags: qr aa rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;clocacina. IN A
;; ANSWER SECTION:
clocacina. 0 IN A 192.168.1.10
;; Query time: 54 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Feb 13 16:37:04 SGT 2017
;; MSG SIZE rcvd: 43
[geek@phoebe ~]$ ip neigh show 192.168.1.10
192.168.1.10 dev bridge0 lladdr 00:16:d3:2d:8b:9a STALE
[geek@phoebe ~]$ arp 192.168.1.10
Address HWtype HWaddress Flags Mask Iface
Clocacina ether 00:16:d3:2d:8b:9a C bridge0
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
add a comment |
I'd use another approach - checking from the system you're connected on.
I have a Windows box in front of me so I'd use nslookup
to look up the ip address for the hostname, then arp
to look up the MAC address. (The latter assumes the two systems are in the same subnet, as MAC addresses are not visible through a router. Though you could of course check the ARP cache of the router.)
C:Usersfaile_000>nslookup phoebe
Server: router.asus.com
Address: 192.168.1.1
Name: phoebe
Address: 192.168.1.43
C:Usersfaile_000>arp -a 192.168.1.43
Interface: 192.168.1.110 --- 0x1b
Internet Address Physical Address Type
192.168.1.43 c0-7c-d1-c0-39-44 dynamic
Likewise you can use host
or dig
to look up IP addresses on Linux, and arp
or ip neigh show
to see the ARP cache.
[geek@phoebe ~]$ host clocacina
clocacina has address 192.168.1.10
^[[A[geek@phoebe ~]$ dig clocacina
; <<>> DiG 9.10.4-P1-RedHat-9.10.4-1.P1.fc24 <<>> clocacina
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12329
;; flags: qr aa rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;clocacina. IN A
;; ANSWER SECTION:
clocacina. 0 IN A 192.168.1.10
;; Query time: 54 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Feb 13 16:37:04 SGT 2017
;; MSG SIZE rcvd: 43
[geek@phoebe ~]$ ip neigh show 192.168.1.10
192.168.1.10 dev bridge0 lladdr 00:16:d3:2d:8b:9a STALE
[geek@phoebe ~]$ arp 192.168.1.10
Address HWtype HWaddress Flags Mask Iface
Clocacina ether 00:16:d3:2d:8b:9a C bridge0
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
add a comment |
I'd use another approach - checking from the system you're connected on.
I have a Windows box in front of me so I'd use nslookup
to look up the ip address for the hostname, then arp
to look up the MAC address. (The latter assumes the two systems are in the same subnet, as MAC addresses are not visible through a router. Though you could of course check the ARP cache of the router.)
C:Usersfaile_000>nslookup phoebe
Server: router.asus.com
Address: 192.168.1.1
Name: phoebe
Address: 192.168.1.43
C:Usersfaile_000>arp -a 192.168.1.43
Interface: 192.168.1.110 --- 0x1b
Internet Address Physical Address Type
192.168.1.43 c0-7c-d1-c0-39-44 dynamic
Likewise you can use host
or dig
to look up IP addresses on Linux, and arp
or ip neigh show
to see the ARP cache.
[geek@phoebe ~]$ host clocacina
clocacina has address 192.168.1.10
^[[A[geek@phoebe ~]$ dig clocacina
; <<>> DiG 9.10.4-P1-RedHat-9.10.4-1.P1.fc24 <<>> clocacina
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12329
;; flags: qr aa rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;clocacina. IN A
;; ANSWER SECTION:
clocacina. 0 IN A 192.168.1.10
;; Query time: 54 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Feb 13 16:37:04 SGT 2017
;; MSG SIZE rcvd: 43
[geek@phoebe ~]$ ip neigh show 192.168.1.10
192.168.1.10 dev bridge0 lladdr 00:16:d3:2d:8b:9a STALE
[geek@phoebe ~]$ arp 192.168.1.10
Address HWtype HWaddress Flags Mask Iface
Clocacina ether 00:16:d3:2d:8b:9a C bridge0
I'd use another approach - checking from the system you're connected on.
I have a Windows box in front of me so I'd use nslookup
to look up the ip address for the hostname, then arp
to look up the MAC address. (The latter assumes the two systems are in the same subnet, as MAC addresses are not visible through a router. Though you could of course check the ARP cache of the router.)
C:Usersfaile_000>nslookup phoebe
Server: router.asus.com
Address: 192.168.1.1
Name: phoebe
Address: 192.168.1.43
C:Usersfaile_000>arp -a 192.168.1.43
Interface: 192.168.1.110 --- 0x1b
Internet Address Physical Address Type
192.168.1.43 c0-7c-d1-c0-39-44 dynamic
Likewise you can use host
or dig
to look up IP addresses on Linux, and arp
or ip neigh show
to see the ARP cache.
[geek@phoebe ~]$ host clocacina
clocacina has address 192.168.1.10
^[[A[geek@phoebe ~]$ dig clocacina
; <<>> DiG 9.10.4-P1-RedHat-9.10.4-1.P1.fc24 <<>> clocacina
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 12329
;; flags: qr aa rd ra ad; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;clocacina. IN A
;; ANSWER SECTION:
clocacina. 0 IN A 192.168.1.10
;; Query time: 54 msec
;; SERVER: 192.168.1.1#53(192.168.1.1)
;; WHEN: Mon Feb 13 16:37:04 SGT 2017
;; MSG SIZE rcvd: 43
[geek@phoebe ~]$ ip neigh show 192.168.1.10
192.168.1.10 dev bridge0 lladdr 00:16:d3:2d:8b:9a STALE
[geek@phoebe ~]$ arp 192.168.1.10
Address HWtype HWaddress Flags Mask Iface
Clocacina ether 00:16:d3:2d:8b:9a C bridge0
edited Feb 13 '17 at 8:40
answered Feb 13 '17 at 6:49
Journeyman Geek♦
112k43216366
112k43216366
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
add a comment |
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
Sorry I forgot to mention some details, question edited.
– Mongrel
Feb 13 '17 at 9:23
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
You can still look up the IP address this way.
– Journeyman Geek♦
Feb 13 '17 at 9:44
add a comment |
Use this:
hponcfg -w iLO_ouput.out
You will get the general config from ILO.
Try this or a later Version:
https://support.hpe.com/hpsc/swd/public/detail?sp4ts.oid=7252838&swItemId=MTX_ed2c3a30d95f49b8a0eda8e2af&swEnvOid=4184
add a comment |
Use this:
hponcfg -w iLO_ouput.out
You will get the general config from ILO.
Try this or a later Version:
https://support.hpe.com/hpsc/swd/public/detail?sp4ts.oid=7252838&swItemId=MTX_ed2c3a30d95f49b8a0eda8e2af&swEnvOid=4184
add a comment |
Use this:
hponcfg -w iLO_ouput.out
You will get the general config from ILO.
Try this or a later Version:
https://support.hpe.com/hpsc/swd/public/detail?sp4ts.oid=7252838&swItemId=MTX_ed2c3a30d95f49b8a0eda8e2af&swEnvOid=4184
Use this:
hponcfg -w iLO_ouput.out
You will get the general config from ILO.
Try this or a later Version:
https://support.hpe.com/hpsc/swd/public/detail?sp4ts.oid=7252838&swItemId=MTX_ed2c3a30d95f49b8a0eda8e2af&swEnvOid=4184
edited Dec 13 at 14:44
Twisty Impersonator
17.7k136395
17.7k136395
answered Dec 13 at 14:23
user972753
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1178186%2fhow-to-get-ilo-management-ip-and-mac-address%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How did you get the ilo prompt in the first place?
– grawity
Feb 13 '17 at 6:08
It's configured with hostname. Ping is not working it's dropped.
– Mongrel
Feb 13 '17 at 6:09
you could look up the hostname of the ip address from the system you're connecting from, and ARP tables. Exact tools would depend on the OS.
– Journeyman Geek♦
Feb 13 '17 at 6:34
If you have the hostname, you don't need ping just to resolve that name to an address. (That always happens before ping packets are sent, anyway.)
– grawity
Feb 13 '17 at 8:04