Recent content by Dilnane

  1. D

    Proxmox inventory source: Access PVE network configuration to set ansible_host with compose

    Hello, I'm dealing with proxmox inventory source in ansible. I have collection community.proxmox in it's latest version 1.3.0. As I learned from community.proxmox.proxmox inventory docs, We are able to set ansible_host with compose. I have my ansible.cfg: [defaults] inventory =...
  2. D

    Pass USB Device to unprivileged LXC

    Interesting thanks. I passed the partition straight awaypct set <ID> --dev0 /dev/sda1, as passing the all device node with pct set <ID> --dev0 /dev/sda wasn't creating my /dev/sda1 device node on CT. It's owned by root as it should be: root@ct:/dev# stat sda1 File: sda1 Size: 0...
  3. D

    Pass USB Device to unprivileged LXC

    I have a question very similar to this one: Pass USB Device to LXC I have my externel disk enclosure that is plugged in USB on host: root@pve:~# lsusb Bus 004 Device 006: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge...
  4. D

    Bridge NIC Passthrough for use in LXC

    Yes that's the idea, I have switch sure. I can connect switch to ethernet interface and my laptop to switch also it was just to take an easy example ;) Perfect thanks, question answered.
  5. D

    Bridge NIC Passthrough for use in LXC

    Connect my personal computer to this physical port that I passthrough in my virtual VM pfSense for example.
  6. D

    Bridge NIC Passthrough for use in LXC

    To be clear, if I'm doing passthrough of an ethernet interface to my Virtual VM pfSense, I won't be able to use this interface ANYWHERE else on my HV except inside virtual VM PfSense ? But I will still be able to use the physical ethernet interface by connecting myself to this port with...
  7. D

    Bridge NIC Passthrough for use in LXC

    Understood that's what I realized further. So if I'm using passthrough for LAN interface on a virtual pfsense the only use would be via the physical port ? I won't be able to use it at all elsewhere with Proxmox (CT/VM) because I can't create any bridge on it if I'm right.
  8. D

    Bridge NIC Passthrough for use in LXC

    Hi to all, After struggling with briding WAN/LAN in pfsense/OPNSense VM I decided to use NIC passthrough for my LAN interface. I had heavy packet loss when using bridge LAN interface in pfsense/OPNsense, this topic on reddit gave me hints and I had no more issues after using NIC passthrough for...
  9. D

    PVE 7 OpenVPN (LXC) problem: Cannot open TUN/TAP dev

    Thanks a lot exactly same issue for docker inside LXC, the "-v /dev/net/tun:/dev/net/tun" made it works for me :D My Pve version : root@pve:~# pveversion pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve) My LXC config : root@pve:~# cat /etc/pve/lxc/102.conf arch: amd64 cores: 1...
  10. D

    Mknod in an unprivileged lxc container

    Hi, I'm facing some issues trying to build a sock5 proxy container (with docker-ce) inside an unprivileged lxc container. I put the feature "mknod=1" (which is experimental I get it.) No matter this feature, the command mknod performed inside my lxc container returns an error ~# mknod...