This project aim to discover mac address of all IPMI asking IP address
1.7K
This project aim to discover mac address of all IPMI asking IP address
Launch image
$ docker-compose up -d
Enter inside container
$ docker-compose exec ipmi-discover bash
This folder is synced with /code/ in container so all python deps are inside
container
By default this tool wait 60 seconds for kea to alloc ip then parse it's log
To use this image you must provide a kea configuration in the container at
/kea-config.json and log to a file
You can change options from command execute /launch-services.sh:
60/var/log/kea-debug.log/usr/sbin/kea-dhcp4 -c /kea-config.jsondocker-compose example:
version: '3'
services:
ipmi-discover:
image: itsalex/ipmi-discover
restart: unless-stopped
network_mode: host
command: /launch-services.sh -t 60
volumes:
- ./kea-config.json:/kea-config.json
output:
[{
"vendor": {
"description": "PcsCompu",
"name": "PcsCompu"
},
"ip": "192.168.0.12",
"mac": "08:00:27:8a:17:9b",
"ipmi": false
}, {
"vendor": {
"description": "PcsCompu",
"name": "PcsCompu"
},
"ip": "192.168.0.12",
"mac": "08:00:27:8a:17:9b",
"ipmi": false
}]
Content type
Image
Digest
Size
117.7 MB
Last updated
over 8 years ago
docker pull itsalex/ipmi-discover