Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
887 B
Plaintext
39 lines
887 B
Plaintext
# Proxmox VE Network Configuration
|
|
# File: /etc/network/interfaces
|
|
# pve (ML110) - 192.168.1.207
|
|
# DHCP on all NICs - adjust NIC names as needed
|
|
|
|
# Loopback interface
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
# Physical interface 1 (LAN) - Adjust name (nic0, eth0, etc.)
|
|
auto nic0
|
|
iface nic0 inet manual
|
|
|
|
# vmbr0 - LAN Bridge (DHCP from 192.168.1.0/24)
|
|
auto vmbr0
|
|
iface vmbr0 inet dhcp
|
|
bridge-ports nic0
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
bridge-vlan-aware no
|
|
metric 200
|
|
|
|
# Physical interface 2 (WAN) - Adjust name (nic1, eth1, etc.)
|
|
auto nic1
|
|
iface nic1 inet manual
|
|
|
|
# vmbr1 - WAN Bridge (DHCP from Spectrum modem)
|
|
auto vmbr1
|
|
iface vmbr1 inet dhcp
|
|
bridge-ports nic1
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
bridge-vlan-aware no
|
|
metric 100
|
|
|
|
# NOTE: Adjust interface names (nic0, nic1) to match your actual NIC names
|
|
# Check with: ip link show | grep -E "^[0-9]+: (nic|eth|enp)"
|
|
|