pve/network.sh
2023-02-24 09:59:12 +08:00

34 lines
1.1 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
#from https://github.com/spiritLHLS/pve
interface=$(lshw -C network | awk '/logical name:/{print $3}' | head -1)
ip=$(ip addr show $interface | awk '/inet /{print $2}' | head -1)
netmask=$(ifconfig $interface | awk '/netmask/{print $4}' | head -1)
gateway=$(ip route | awk '/default/ {print $3}')
cat << EOF | sudo tee /etc/network/interfaces.d/vmbr0.conf
auto vmbr0
iface vmbr0 inet static
address $ip
netmask $netmask
gateway $gateway
bridge_ports $interface
bridge_stp off
bridge_fd 0
EOF
cat << EOF | sudo tee /etc/network/interfaces.d/vmbr1.conf
auto vmbr1
iface vmbr1 inet static
address 172.16.1.1
netmask 255.255.255.0
bridge_ports none
bridge_stp off
bridge_fd 0
post-up echo 1 > /proc/sys/net/ipv4/ip_forward
post-up echo 1 > /proc/sys/net/ipv4/conf/vmbr1/proxy_arp
post-up iptables -t nat -A POSTROUTING -s '172.16.1.0/24' -o vmbr0 -j MASQUERADE
post-down iptables -t nat -D POSTROUTING -s '172.16.1.0/24 -o vmbr0 -j MASQUERADE
EOF
service networking restart
systemctl restart networking.service