I'm having trouble with two domains that send messages to my users.
The messages are stuck in the postfix queue with the following message:
D76C12740B 178921 Tue Feb 3 19:22:31 msprvs1=20494iL6NYVzL=bounces-321255@domain.com
(host...
It should work if you configure the IP address for the management VNet on the VNet instead of the bridge directly - so:
auto <vnet>
iface <vnet> inet static
address 203.0.113.100/24
You should be able to configure this manually in...
Hello,
The config at this moment is working by avoiding assigning any vNets/VMs to that vlan. The test VM I have is just sitting there.
If I add a vNet for 950, I lose management access and won't be able to copy/paste configs to you...
Hello,
We are currently mid migration and have all of a sudden run into an issue with using the ESX import feature.
We have imported about 50 VMs with the import feature flawlessly. Now all of a sudden, we are getting (500) errors for...
Hi @Bradomski ,
Have you looked at "journalctl -n 500" or "journalctl -f" during the migration attempt?
Have you run "pvesm status"? "pvesm list [storage]"
Any errors on ESXi side in the logs?
Any changes in networking?
Good luck
Blockbridge...
pvesm status shows
Which aligns with the error.
Running pvesm list storage yields 'failed to spawn fuse mount, process exited with status 65280'
I do not see any logs on the ESXi side
No changes in networking as far as I am aware.
Plug this into google , it seems you are not the only one reporting this type of error.
For example, here is the first search result for me: https://forum.proxmox.com/threads/proxmox-8-1-esxi-import-storage-error-500.144049/
Blockbridge ...
Yep. I was consulting that post as well. I have already attempted the mgmt network reset on ESX to no avail. Ensured the SOAP settings were set to 0 to no avail. Just looking to try and figure out this issue as it doesn't appear all that...
If you are using VPC i recommend you to use openvswitch and do a lacp with the following parameters:
bond_mode=balance-tcp lacp=active
I put a piece of a sample config
apt install openvswitch-switch
auto lo
iface lo inet loopback
auto eno1...
Hello, the switches support it. These hosts are connected via Cisco Nexus switches, with LACP, VPC, etc. configuration. They are in trunk mode with the VLANs passed, etc. At the network level, everything seems to be OK. Pings between devices on...
I see you have bond for interfaces nic0 nic4 with a policy of xmit-hash-policy in layer 2+3 this uses a combination of MAC address and IP addresses to do the bond for balancing.
May your switch does not support this feature?
You can ping between...
Hallo zusammen,
ich bin nun daran mein Unifi Netzwerk mit dem iOT Netzwerk zu trennen.
wollte nun eine 2. LAN Anbindung nutzen.
die 1. Läuft und bekommt aus dem DHCP Ihre IP Adresse.
bei der 2. klappt das noch nicht.
was mache ich falsch...
This is my network configuration, same on each node, but with diferents IP. I joined the nodes using the network 10.1.30.X/24 and the management network from i access it's 10.1.10.X/24.
Checking the settings, I see that there are strange things...
No, no real load increase on the PBS VM or the host it's running on (which is the PVE host, in this case). Using tcpdump, I'm not able to tell which interface/bridge the traffic is going over (I may not understand what I'm looking for, I'm just...
Backing up the host is not super difficult, but depends a bit on some of the details of how your system is installed. For a host that uses ZFS as root, I do something along these lines:
#!/bin/bash
# Configure where to store the backup and what...
The requests library doesn't post JSON data when using the data kwarg. Use json instead:
api_response = requests.post(api_node, headers=headers, json=data, verify=False)
See https://docs.python-requests.org/en/latest/api/#requests.Request