pve/build_backend.sh

36 lines
898 B
Bash
Raw Normal View History

2023-02-15 15:03:21 +08:00
#!/bin/bash
#from https://github.com/spiritLHLS/pve
# 创建网桥
echo "Creating bridge vmbr1..."
cat <<EOF >> /etc/network/interfaces.d/vmbr1.cfg
auto vmbr1
iface vmbr1 inet static
address 192.168.1.1
netmask 255.255.255.0
bridge_ports enp0s8
bridge_stp off
bridge_fd 0
EOF
2023-02-17 09:54:10 +08:00
if grep -q "iface vmbr1" /etc/network/interfaces; then
echo "Bridge vmbr1 is already in Proxmox VE configuration."
else
# Add bridge configuration to Proxmox VE configuration
echo "Adding bridge vmbr1 to Proxmox VE configuration..."
cat <<EOF >> /etc/network/interfaces
# Proxmox VE bridge vmbr1
iface vmbr1 inet manual
bridge-ports enp0s8
bridge-stp off
bridge-fd 0
EOF
fi
2023-02-15 15:03:21 +08:00
systemctl restart networking.service
echo "Bridge vmbr1 created!"
2023-02-17 09:54:10 +08:00
2023-02-15 15:03:21 +08:00
# 创建资源池
echo "Creating resource pool mypool..."
pvesh create /pools --poolid mypool
echo "Resource pool mypool created!"