Skip to content
Snippets Groups Projects
Commit b87692fd authored by Daniel Juarez's avatar Daniel Juarez :speech_balloon:
Browse files

Troubleshoot AIMS TFTP/HTTP gets

parent 2e0b7cb7
No related branches found
No related tags found
No related merge requests found
Pipeline #3953678 passed
......@@ -2,6 +2,35 @@
Arne recently added Alex and Juárez to the access list for [Ironic monitoring](https://monit-grafana.cern.ch/d/000000212/ironic?orgId=3&refresh=1m). This can help checking if there is a major outage going on.
## Check that TFTP and HTTP files can be served
TFTP is a nightmare and we could not make the client part work on a CS8 client so use a CC7 one.
You will need to enable TFTP on the client's side firewall or packets will be filtered/dropped:
```bash
yum install tftp -y
firewall-cmd --zone=public --add-service=tftp --permanent
firewall-cmd --reload
```
Then check that files can be retrieved:
```bash
# Check that the port 69 is open, or TFTP won't work
nmap aims.cern.ch -sU -p 69
# Check autoregistration part works fine. If this works, registered images should work as well, but if needed adapt paths.
# UEFI bootloader
tftp -4 -vvv -m binary aimstest02.cern.ch -c get /hwreg/loader/uefi/bootx64.efi.0
# BIOS bootloader (HTTPS)
tftp -4 -vvv -m binary aims.cern.ch -c get /hwreg/loader/bios/lpxelinux.0
# BIOS hwreg image (HTTP)
wget aims.cern.ch/aims/boot/HWREG_AUTOINSTALL/vmlinuz
# UEFI hwreg image (TFTP). Ref. https://its.cern.ch/jira/browse/LOS-763
tftp -4 -vvv -m binary aims.cern.ch -c get/aims/boot/OPENSTACK-IRONIC-IPA/vmlinuz
```
## Collection of AIMS2 errors
We have gathered some AIMS2 errors in the following link: [AIMS2 error collection](/aims2/errorcollection)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment