{"id":21189944,"url":"https://github.com/amingilani/ilo-proxy","last_synced_at":"2026-05-16T22:36:17.461Z","repository":{"id":263732395,"uuid":"891235713","full_name":"amingilani/ilo-proxy","owner":"amingilani","description":"Docker-based reverse proxy enabling modern browser access to HP ILO 2 remote management interfaces with legacy TLS","archived":false,"fork":false,"pushed_at":"2024-11-20T05:50:37.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-14T20:46:28.584Z","etag":null,"topics":["datacenter","docker","hardware-management","hp-ilo","ilo2","ipmi","legacy-hardware","legacy-systems","nginx","reverse-proxy","server-management","tls-proxy"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/amingilani.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-20T01:06:56.000Z","updated_at":"2024-12-28T12:16:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"e82a6d02-d306-4368-b1f4-911e4e944986","html_url":"https://github.com/amingilani/ilo-proxy","commit_stats":null,"previous_names":["amingilani/ilo-proxy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/amingilani/ilo-proxy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingilani%2Filo-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingilani%2Filo-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingilani%2Filo-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingilani%2Filo-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amingilani","download_url":"https://codeload.github.com/amingilani/ilo-proxy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amingilani%2Filo-proxy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263679238,"owners_count":23495014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["datacenter","docker","hardware-management","hp-ilo","ilo2","ipmi","legacy-hardware","legacy-systems","nginx","reverse-proxy","server-management","tls-proxy"],"created_at":"2024-11-20T18:57:36.354Z","updated_at":"2026-05-16T22:36:12.417Z","avatar_url":"https://github.com/amingilani.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ILO2 Legacy TLS Proxy\n\nTHIS DOES NOT WORK! OPENSSL NEEDS TO BE CONFIGURED TO USE THE OUTDATED CIPHER SUITES.\n\n\nThis project provides a Docker-based reverse proxy solution for accessing HP ILO 2 management interfaces from modern browsers. It addresses the issue where modern browsers block access to ILO 2 due to its outdated TLS 1.0 implementation.\n\n## Problem\n\nHP ILO 2 remote management interfaces use TLS 1.0 with outdated cipher suites, which are no longer supported by modern web browsers for security reasons. This makes it impossible to access these interfaces directly from current browsers.\n\n## Solution\n\nThis proxy:\n- Terminates modern TLS connections from your browser\n- Connects to the ILO 2 interface using TLS 1.0\n- Rewrites URLs in the response to maintain proxy connection\n- Handles both HTTP and HTTPS protocols\n- Runs in a Docker container for easy deployment\n\n## Prerequisites\n\n- Docker installed on your system\n- Network access to the ILO 2 interface\n- The IP address of your ILO 2 interface\n\n## Quick Start\n\n1. Clone this repository:\n```bash\ngit clone https://github.com/amingilani/ilo2-proxy\ncd ilo2-proxy\n```\n\n2. Build the Docker image:\n```bash\ndocker build -t ilo2-proxy .\n```\n\n3. Run the proxy (replace with your ILO 2's IP address):\n```bash\ndocker run -d \\\n  -p 80:8080 \\\n  -p 443:4343 \\\n  -e REMOTE_IP=192.168.1.20 \\\n  --name ilo2-proxy \\\n  ilo2-proxy\n```\n\n4. Access your ILO 2 interface through the proxy:\n- Open your browser\n- Navigate to `https://localhost` (or your proxy server's IP address)\n- Accept the self-signed certificate warning\n\n## Configuration\n\n### Environment Variables\n\n- `REMOTE_IP`: (Required) The IP address of your ILO 2 interface\n\n### Custom SSL Certificates\n\nTo use your own SSL certificates instead of the self-signed ones:\n\n```bash\ndocker run -d \\\n  -p 80:8080\n  -p 443:4343\\\n  -e REMOTE_IP=192.168.1.20 \\\n  -v /path/to/your/cert.crt:/etc/nginx/ssl/proxy.crt \\\n  -v /path/to/your/key.key:/etc/nginx/ssl/proxy.key \\\n  --name ilo2-proxy \\\n  ilo2-proxy\n```\n\n## Security Considerations\n\n- This proxy deliberately enables legacy TLS 1.0 support to communicate with ILO 2\n- Use only on trusted networks (preferably local network only)\n- Consider restricting access to specific IP ranges in your network\n- The proxy should be deployed as close to the ILO 2 interface as possible\n- All traffic between your browser and the proxy uses modern TLS\n\n## Files\n\n- `Dockerfile`: Builds the Nginx-based proxy container\n- `nginx.conf`: Nginx configuration template with TLS and proxy settings\n- `entrypoint.sh`: Container startup script that configures the remote IP\n\n## Troubleshooting\n\n1. Certificate Errors\n   - By default, the proxy uses a self-signed certificate\n   - Accept the certificate warning in your browser or use your own certificates\n\n2. Connection Refused\n   - Verify the ILO 2 IP address is correct\n   - Ensure network connectivity to the ILO 2 interface\n   - Check if ports 80/443 are available on your system\n\n3. Pages Not Loading Correctly\n   - Clear your browser cache\n   - Try accessing the page in incognito/private mode\n   - Verify the ILO 2 interface is responsive\n\n## Limitations\n\n- Java-based remote console features may not work through the proxy\n- Some dynamic content might not be properly rewritten\n- Session timeouts may occur differently than with direct access\n\n## Contributing\n\nContributions are welcome! Please feel free to submit pull requests or create issues for bugs and feature requests.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famingilani%2Filo-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famingilani%2Filo-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famingilani%2Filo-proxy/lists"}