NAME

hrobot.pl - Hetzner Robot CLI (Perl implementation)

VERSION

version 0.001

SYNOPSIS

# List servers
hrobot.pl server list

# Show server details
hrobot.pl server describe 123456

# Reset server
hrobot.pl reset 123456
hrobot.pl reset 123456 --type hw

# List SSH keys
hrobot.pl key list

# JSON output
hrobot.pl -o json server list

DESCRIPTION

Perl implementation of a CLI for the Hetzner Robot API. This is for managing dedicated servers, unlike hcloud.pl which manages cloud servers.

NAME

hrobot.pl - Hetzner Robot CLI (Perl implementation)

OPTIONS

-u, --user=USER

Robot webservice username. Defaults to HETZNER_ROBOT_USER env.

-p, --password=PASSWORD

Robot webservice password. Defaults to HETZNER_ROBOT_PASSWORD env.

-o, --output=FORMAT

Output format: table (default) or json.

COMMANDS

server

Manage dedicated servers.

hrobot.pl server list          # List all servers
hrobot.pl server describe ID   # Show server details

key

Manage SSH keys.

hrobot.pl key list             # List all keys

reset

Reset a server.

hrobot.pl reset ID             # Software reset
hrobot.pl reset ID --type hw   # Hardware reset
hrobot.pl reset ID --type man  # Manual reset (technician)

wol

Wake-on-LAN.

hrobot.pl wol ID

ENVIRONMENT

HETZNER_ROBOT_USER

Robot webservice username.

HETZNER_ROBOT_PASSWORD

Robot webservice password.

SEE ALSO

WWW::Hetzner::Robot, https://robot.hetzner.com/doc/webservice/en.html

SUPPORT

Source Code

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

https://github.com/Getty/p5-www-hetzner

git clone https://github.com/Getty/p5-www-hetzner.git

AUTHOR

Torsten Raudssus <torsten@raudssus.de>

COPYRIGHT AND LICENSE

This software is copyright (c) 2026 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.