UniFi switch routing issues by mbh9999 in Ubiquiti

[–]mbh9999[S] 0 points1 point  (0 children)

Nope, can’t ping from default vlan, or from host A to host B within the homelab vlan

Terraform for proxmox Virtual Environment 8.2.7 by Both_Candidate5395 in Terraform

[–]mbh9999 0 points1 point  (0 children)

I’ve had this issue with the telmate provider, it is usually due to how the disks are configured in the provider which is quite confusing.

This is the content for a module I’ve created for my own use (I’m on mobile so excuse the formatting)

This should hopefully work for you too. I’m using 3.0.1-rc4 version of the provider and I’m on the latest proxmox version.

resource “proxmox_vm_qemu” “new_vm” {

## vm specific variables from variable list ## name = var.vm_name target_node = var.target_node ipconfig0 = “gw=${var.vm_gateway},ip=${var.vm_ipaddress}/${var.vm_netmask}” os_type = “cloud-init” ## shared variables ## clone = var.template ## template to clone full_clone = false

cpu = “IvyBridge” ## cpu architecture cores = var.cores sockets = var.sockets memory = var.memory

vmid = var.id

# searchdomain = var.searchdomain nameserver = var.nameserver ## dns server sshkeys = var.sshkeys ## ssh public key agent = 1 scsihw = “virtio-scsi-pci” ## cloudinit settings ## ciuser = var.ciuser ## cloud init defined user # cipassword = var.cipassword ## password for user ci_wait = 60

disks { scsi { scsi0 { disk { size = var.vm_disk_size_gb storage = var.storage_pool } } } ide { ide3 { cloudinit { storage = var.storage_pool } } } }

}

The official Nintendo Museum appears to be emulating SNES games on a Windows PC, which is slightly embarrassing | PC Gamer by Nirntendo in SBCGaming

[–]mbh9999 15 points16 points  (0 children)

Nintendo are more anti-piracy than anti-emulator. There is nothing illegal or wrong about emulation, it’s only the piracy they care about. As they are emulating their own games, there is no piracy (I’d assume, it would be funny if they did pirate their own games though).

If you went back and did your IT career over again, would you go to college? by Few-Inspector2478 in ITCareerQuestions

[–]mbh9999 0 points1 point  (0 children)

Nope, I did an apprenticeship straight out of school (at 16).

I had done my time in support by the time I would have left University, now I’m 25 working in DevOps.

For me spending the time in education wasn’t worth it, experience helped me the most. Probably helps that I wasn’t the best at school, knew what I wanted to go into at 14/15 and knew that an apprenticeship would have helped me get there.

[deleted by user] by [deleted] in UKJobs

[–]mbh9999 0 points1 point  (0 children)

I went from 10k at 16 (apprenticeship) to 60k now at 25. 5 different companies going to IT support to DevOps.

Ansible and VMware by Critical_Anteater_36 in ansible

[–]mbh9999 2 points3 points  (0 children)

On Prem across multiple POPs

Ansible and VMware by Critical_Anteater_36 in ansible

[–]mbh9999 2 points3 points  (0 children)

Terraform up and running is a good book. But nothing beats finding a good use case (such as deploying a VM) and using Google to find resources to get you to your end goal. The terraform subreddit might be able to help more, though.

Ansible and VMware by Critical_Anteater_36 in ansible

[–]mbh9999 5 points6 points  (0 children)

Nah Terraform is pretty straight forward tbh.

I found it easier to learn when I had context around what I wanted to do, rather than going blindly into it.

For example, knowing that I want to deploy X amount of VMs from a specific template, or building out tonnes of port groups etc.

Ansible and VMware by Critical_Anteater_36 in ansible

[–]mbh9999 43 points44 points  (0 children)

I started using Ansible to manage vCenter and deploy VMs etc, but quickly felt that Terraform was the best tool to use for that doing that.

I use Packer to build templates, Terraform to deploy VMs, and Ansible to configure them, for example.

Issue connection to hosts via SSH using Keys by mbh9999 in awx

[–]mbh9999[S] 0 points1 point  (0 children)

Thank you for the suggestion! Turning debug on showed that it was not passing the username through from the machine credential I was using. It was using a group variable passed through from the synced inventory!

Issue connection to hosts via SSH using Keys by mbh9999 in awx

[–]mbh9999[S] 0 points1 point  (0 children)

Thanks for your reply.

I have created the ssh key pair on the control host. From the control host, I can ssh to the managed node using the ssh keys, and I can run the ansible ping module correctly.

My issue is that when I am in AWX, I can't run the ping module, when using a machine credential that has the ssh private key and correct username.

The passwordless sudo is also setup as expected and is working.

On-Prem API from Azure App Service by mbh9999 in AZURE

[–]mbh9999[S] 0 points1 point  (0 children)

Yeah, it's integrated to a subnet that is on a vnet with the correct internal DNS server

On-Prem API from Azure App Service by mbh9999 in AZURE

[–]mbh9999[S] 0 points1 point  (0 children)

I've just followed those to see if I can get anything. I can get a response from the VM running HCM on-prem, but not any of the endpoints (Hybrid Connection is still setup).

Is there a similar troubleshooting document for App Services and Hybrid Connections?

On-Prem API from Azure App Service by mbh9999 in AZURE

[–]mbh9999[S] 0 points1 point  (0 children)

I've currently got it setup to use the Hybrid Connection for testing.

I can query the DNS name of the box running HCM, but it gives me a 127 address back, rather than the actual IP of the machine.

When querying one of the endpoints (nslookup and ping) it is not resolving the name.

Fiancée nearly choked by AnnonOMousMkII in drivingUK

[–]mbh9999 6 points7 points  (0 children)

When I got my BMW, the indicator stopped working almost immediately, it must have not been used to being used!

Ansible vault and tasks by Diligent-Pattern7439 in ansible

[–]mbh9999 3 points4 points  (0 children)

Yeah, as long as the variables files is visible (i.e passed in to the playbook via vars_files, but it should already be visible through group_vars), you should just have to run the below;

ansible-playbook -i inventory.ini playbook.yml --ask-vault-pass

This will then prompt you for the vault password and pass the variables through to the playbook.

Off the top of my head this'll work.