ssh user@IP -L 32400:127.0.0.1:32400
http://127.0.0.1:32400/manage/index.html
Settings > Server > General
| *.DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Icon must end with two \r | |
| Icon | |
| # Thumbnails | |
| ._* |
| def ip_to_bigint(ip): | |
| ip_parts = ip.split('.') | |
| part_1 = int(ip_parts[0]) * 16777216 | |
| part_2 = int(ip_parts[1]) * 65536 | |
| part_3 = int(ip_parts[2]) * 256 | |
| part_4 = int(ip_parts[3]) | |
| bigint_ip = part_1 + part_2 + part_3 + part_4 |
ssh user@IP -L 32400:127.0.0.1:32400
http://127.0.0.1:32400/manage/index.html
Settings > Server > General