Search results

  1. N

    Extending mountpoint on LXC

    Thanks! That works. I've made a mistake at first, extending LVM f that storage, thus no space for MP extending left available. I have made lvreduce -L 200G LV-name and then
  2. N

    Extending mountpoint on LXC

    Hello, I'm running pve-manager/7.3-4/d69b70d4 with a Debian 11 based LXC. I've created a new LVM storage with a 500G disk, then added a mount point to LXC 100 via GUI, size=200G Now I want to extend mount point to 500G What are my steps to do? root@pve:~# pct config 100xc/100.conf arch: amd64...
  3. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    I've found a mistake in /etc/network/interfaces - no post-up before echo 1 > /proc/sys/net/ipv4/ip_forward as I've been using smartphone for configuring the server at some point.
  4. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    Successfully solved this incident by installing iptables-persistent on host and running multuple commands for each CT : port iptables -A PREROUTING -t nat -i wlx28ee52097d6f -p tcp -d %ext_ip_on_vmbr0% --dport %ext_port% -j DNAT --to %int_CT_ip_on_vmbr0%:%int_port%
  5. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    Shame on me, I had to figure it out by myself. Thank you! Now I'm going to study port forwarding in Linux, never done that before.
  6. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    # ip r default via 192.168.1.1 dev wlx28ee52097d6f 10.0.0.0/24 dev vmbr1 proto kernel scope link src 10.0.0.2 192.168.1.0/24 dev wlx28ee52097d6f proto kernel scope link src 192.168.1.112 192.168.2.0/24 dev vmbr0 proto kernel scope link src 192.168.2.1 # ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu...
  7. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    I couldn't ping CT from other machine on 192.168.1.0/24 network, including host/node. Couldn't ping anything from CT. Couldn't resolve domain names from CT as nameserver 192.168.1.1 (router) belonged to another network than CT (192.168.2.0/24) and I didn't know what gateway to configure on CT...
  8. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    That part was for a setup with firewall enabled, wasn't it? Not my situation. The host works just fine on wifi connection
  9. N

    [SOLVED] configuring WLAN-based host (no wired connection)

    Hello! I've been stuck trying to configure wireless setup with my home lab by this article: https://pve.proxmox.com/pve-docs/chapter-sysadmin.html#_masquerading_nat_with_span_class_monospaced_iptables_span main network: 192.168.1.0/24 gw (wifi-router): 192.168.1.1 host # cat...