Home › Forums › FABRIC General Questions and Discussion › Management IP invalid while uploading file.
- This topic has 5 replies, 3 voices, and was last updated 1 year, 7 months ago by Nagmat Nazarov.
-
AuthorPosts
-
May 15, 2023 at 5:39 pm #4242
Dear Community,
I am trying to upload two files to the nodes but getting : “Exception: upload_file: Management IP Invalid: None” error.
As you see in picture, code 53 I am getting Management IPs for s1 and s3 as “2620:103:a006:12:f816:3eff:fee0:415f” and “129.114.110.83”. What may be the issue?
Kind regards,
Nagmat
May 16, 2023 at 7:39 am #4244That node failed. Note the error message in the table.
This is a transient error we have see this before. Komal will need to look at it.
thanks,
Paul
May 16, 2023 at 7:50 am #4245Thank you Paul!
@Nagmat,
Could you please share the slice id for your slice?Thanks,
KomalMay 16, 2023 at 9:22 am #4246Hi Nagmat,
You have 4 active slices:
Slice Name: mri_ded3 Slice ID: d54fd501-ca14-49ce-b217-50c593bd0927 Project ID: 527832fc-c273-4254-b988-16e5c2923bf9 Project Name: in-network caching Slice Name: mri1 Slice ID: 6ce8648d-26a9-47b8-8349-4e3e724085a0 Project ID: 527832fc-c273-4254-b988-16e5c2923bf9 Project Name: in-network caching Slice Name: mri3 Slice ID: fa527279-b9bb-4dac-bb68-7a46b63c8ad1 Project ID: 527832fc-c273-4254-b988-16e5c2923bf9 Project Name: in-network caching Slice Name: Nagm_P4Test01 Slice ID: 140247fe-cb45-47da-a797-dca5592487dd Project ID: 527832fc-c273-4254-b988-16e5c2923bf9 Project Name: in-network caching
The last slice
Nagm_P4Test01
has two VM slivers on FIU and the VM slivers are in ActiveTicketed state – which means a pending Renew. We have been observing network issues with FIU and working to resolve that since yesterday. FIU was moved to maintenance as well. I do see management IPs for these VMs but it is possible that they are not accessible because of the network issue.All other slices have all the VMs and Networks in Active state. If you are observing failure with these slices, please do a
slice = fablib.get_slice(slice_name)
and then try to upload the file.Thanks,
Komal- This reply was modified 1 year, 7 months ago by Komal Thareja.
May 16, 2023 at 9:45 am #4248Apologies I missed the screenshot, I see that you are trying to upload to the node without doing a get on it.
Could you please try adding the following statements before upload to ensure that node object has all the information from the slice?
s1 = slice.get_node(name="s1") s3 = slice.get_node(name="s3")
The above statements should be added after the cell which does a
get_slice()
.Also regarding the failed VM:
h2
– unfortunately it is again because of disk un-availability.s2
andh2
are both requested on MICH and each VM is requesting 500G. Based on current allocation of MICH, only one can be provisioned.This is because of a known issue: availability discrepancy between software and infrastructure. We are working on the plans to resolve this, until then if possible request VMs with smaller disks.
Thanks,
KomalMay 19, 2023 at 2:49 pm #4286It worked, Thanks!
`
s1 = slice.get_node(name=”s1″)
s1.upload_file(‘scripts/dump.pcap’, ‘dump.pcap’)<code></code>`
-
AuthorPosts
- The topic ‘Management IP invalid while uploading file.’ is closed to new replies.