RMU build Gen-1.5: II. Proxmox - E. Add LAN Network Device

From Internet Computer Wiki
Jump to: navigation, search

This page is part of the Gen-1.5 RMU build runbook.

Go back to the previous section: D. Download ISO Images

E. Add LAN Network Device

  1. Select RMU > Network
  2. Select Create > Linux Bridge
    • Add Network Bridge.png
  3. Bridge vmbr1 with IP 10.10.100.1/24 (CIDR is required) on Bridge port eno2, comment LAN
    • Screenshot 2023-12-20 at 10.39.05 AM.png
  4. Create another Bridge and set Name to vmbr2 with IP empty on Bridge port eno5, comment WAN.
    • Eno5.png
  5. After creating the bridge, select the Apply Configuration button
    • Apply Networking Configuration.png
  6. Select your RMU device on the left side. (Note: Everything below this step is not needed when creating the linux bridge vmbr2)
  7. Select Shell
    • Screenshot 2023-12-18 at 3.17.40 PM.png
  8. Open the following file with your favorite text editor (vi, nano, emacs etc) /etc/network/interfaces
  9. Add the following lines at the end of the vmbr1 section (before the LAN comment):
    • Ensure that the spacing is correct:
    • Screenshot 2023-12-18 at 3.18.59 PM.png
    • post-up   echo 1 > /proc/sys/net/ipv4/ip_forward
              post-up   iptables -t nat -A PREROUTING -i vmbr0 -p tcp --dport 443 -j DNAT --to 10.10.100.22:443
              post-up   iptables -t nat -A POSTROUTING -s '10.10.100.0/24' -o vmbr0 -j MASQUERADE
              post-down iptables -t nat -A POSTROUTING -s '10.10.100.0/24' -o vmbr0 -j MASQUERADE
    • Screenshot 2023-12-18 at 3.22.14 PM.png
  10. Save and quit the file.
  11. After saving the file, in the shell run: cat /proc/sys/net/ipv4/ip_forward
    • (result should be "0")
    • Run: ifup vmbr1 cat /proc/sys/net/ipv4/ip_forward
    • (result should be "1")
    • Screenshot 2023-10-30 at 2.49.13 PM.png

Continue to next section: II. Teleport - A. Create Teleport CT

Go to the index of the Gen-1.5 RMU build runbook.