Proxmox Network Configuration with Range of Public IP Addresses

edited April 20 in Help

Public IPv4 Addresses
IP Allocation
104.219.44.16/29

  • Usable IP(s)
    104.219.44.18 - 22

  • Gateway IP
    104.219.44.17

  • Subnet Mask
    255.255.255.248

I’ll create a bridge using .18

How do I set up proxmox so that all traffic travels via the bridge?

Would something like this work?
‘’’
auto lo
iface lo inet loopback

iface ens18 inet manual

auto vmbr0
iface vmbr0 inet static
address 172.99.233.2/24
gateway 172.99.233.1
bridge_ports ens18
bridge_stp off
bridge-fd 0
post-up echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp
post-up ip route add 172.99.233.3/32 dev vmbr0
post-up ip route add 172.99.233.4/32 dev vmbr0
post-up ip route add 172.99.233.5/32 dev vmbr0
‘’’
This is another example I found online obviously, I’ll have to use the correct IP addresses.

Comments

Sign In or Register to comment.