Search results

  1. S

    [SOLVED] Node not showing on "pvecm nodes"

    Ahh, I see, sorry for my mistake. I have managed to delete it now. I will probably reinstall node2 from scratch and try to re-add it again, hoping it doesnt error again..
  2. S

    [SOLVED] Node not showing on "pvecm nodes"

    Notice: I dont know how to use syntax for code highlightning.. It is interesting since pvecm nodes shows this: root@ark:~# pvecm nodes Membership information ---------------------- Nodeid Votes Name 1 1 ark (local) While root@ark:~# nano /etc/pve/corosync.conf...
  3. S

    [SOLVED] Node not showing on "pvecm nodes"

    Greetings, So, I decided, to put two nodes into cluster. Create cluster on node1, join cluster on node 2. Datacenter on node 1 shows two nodes in Cluster Nodes, although it says Standalone node - no cluster defined above. Command pvecm nodes on node1 only lists one node: root@ark:~# pvecm...
  4. S

    Best practices for PBS

    Greetings, A quick background on my small infrastructure: Proxmox server with multiple running VMs and LXCs. Empty SFP+ port. All incoming traffic from public IP is being routed via iptables, either to custom SSH port for direct server access, to port 8006, and the rest towards VM running...
  5. S

    Sending email via PHP - hostname.localdomain problem

    Greetings, I have PVE6.3 with LXC, running Ubuntu 20.04. I have wordpress installed on this LXC. Whenever I send email through the wordpress, sender is set to Sitename via hostname.localdomain (eg. Digital via digital.localdomain). I cannot find where this .localdomain comes into play. I have...
  6. S

    Slow connection speeds on VM or LXCs

    VMs have VirtIO, you think that could a culprit? Will test with different NICs then. Will also do ipref, I have two identical server on same switch. Thank you for now.
  7. S

    Completely confused with networking.

    6 different IP pools, but ok.. You have to decide, where you gonna use your public ip and where private, if you even need private ip pool. this example with one public IP works for me if I only want one IP/VM to be accessible: auto lo iface lo inet loopback auto eno1 iface eno1 inet manual...
  8. S

    Slow connection speeds on VM or LXCs

    Hi, I have 2x 1GBit connections in LACP mode. I'm getting download speeds on VMs and LXC at around 200MBits/s, rarely around 300MBits/s, even from servers in the same local network, on 10GBit links, switches are all 10GBit. How can one start debugging this? What kind of benchmarks should I do?
  9. S

    Completely confused with networking.

    Well, since you want to use both public IPs at the same time, you will have to have two virtual bridges, vmbr0 and vmbr1. I suggest setting IP directly on vmbrs and bridging physical ports to them. For example: auto lo iface lo inet loopback auto enp4s0 iface enp4s0 inet manual auto...
  10. S

    DiskIO in CT missing

    Can confirm missing Disk IO info on Summary of LXC. proxmox-ve: 6.2-2 (running kernel: 5.4.65-1-pve)
  11. S

    [SOLVED] Cannot turn off firewall completely

    Turns out, my ISP was doing some ACLs on their side.. Wasted 3 days on this..
  12. S

    [SOLVED] Cannot turn off firewall completely

    Also, ebtables are empty, checked that too.. root@ark:~# ebtables -t filter -L Bridge table: filter Bridge chain: INPUT, entries: 0, policy: ACCEPT Bridge chain: FORWARD, entries: 0, policy: ACCEPT Bridge chain: OUTPUT, entries: 0, policy: ACCEPT root@ark:~# ebtables -t nat -L Bridge table...
  13. S

    [SOLVED] Cannot turn off firewall completely

    Greetings, I tried forwarding port 80 on my public ip to specific VM onto port 80, which works, apache says hello. Then I tried to forward port 8080 to same VM to port 80. Cannot. ERR_CONNECTION_TIMED_OUT. I turned off FW on node, on VM and on VM-NIC. I have next iptables rules on node (that...
  14. S

    Using bond, vmbr and vlan at the same time - confusion

    Greetings, thank you for reply. Yes, bond0 was working. I could apt update OS, I could ping in and out. Even removing cable from one NIC is detected and there is no link downtime. I did have to break bond apart, because I didnt know what to do with OP and how to solve the problem, so I'm back...
  15. S

    Need for a bridge over a bond?

    I know its old topic, but I do have same problem. Your solution kind of works, but how do I make VMs to use private IP pool then? When creating VM, I have to choose vmbr0 as network bridge, where is private IP pool then defined that VM can use?
  16. S

    Using bond, vmbr and vlan at the same time - confusion

    Greetings, I have went through alot of instructions on how to configure networking side of proxmox, but still cannot manage to do next organization: having one public IP, inside proxmox local IP pool with two or three separate vlans. All VMs should be accessible from outside. Server has two...