Last active
May 6, 2022 11:05
-
-
Save Dragod/52b76773d13fd26fb32a59d68d6b12e2 to your computer and use it in GitHub Desktop.
Proxmox network config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #etc/network/interfaces | |
| auto lo | |
| iface lo inet loopback | |
| auto enp4s0 | |
| iface enp4s0 inet manual | |
| auto vmbr0 | |
| iface vmbr0 inet static | |
| address 192.168.0.11/24 | |
| gateway 192.168.0.1 | |
| bridge-ports enp4s0 | |
| bridge-stp off | |
| bridge-fd 0 | |
| iface wlp3s0 inet manual |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
NOTE
Sometimes when proxmox reboot it does change the network interface Ex: from
enp4s0toenp3s0so the network will stop working completely.How to fix it:
etc/network/interfacesdo not contains errors by usingifup vmbr0on the command linels /sys/class/net, it should give you all the current interfaces. Update the fileetc/network/interfaceswith the new bridge ex:enp3s0hwinfo --short --network