RESTful API server to list network interfaces of the host machine
api_address:32432/list[?json=true|verbose=true]
-- get list of network interfaces of the host machineapi_address:32432/help
-- show readme file
If URL doesn't match any of the described paths, returns readme.
json=true
-- return list of network devices in a JSON format (uppercased)verbose=true
-- if not set, returns only names of interfaces, full info otherwise
200
-- on success520
-- on errors
localhost:32432/list?json=true
docker run --net=host -it yakkodash/restful_ifconfig
docker build -t yakkodash/restful_ifconfig:latest .