Setting Up a RADV and NAT64 Router with Packer and VirtualBox
Setting Up a RADV and NAT64 Router with Packer and VirtualBox In this post, I'll go through setting up the core functionalities to make the bare bones VM fully operational as an IPv6 router, including configuring RADV and NAT64. After that, I'll secure the VM, power it down, and run some final checks to ensure everything is working as expected. Once validated the build phase will be complete and will be setting up for the final step, packaging it for deployment. Prevent Premature OVF Export To ensure that the VM remains available for further customisation before being wrapped into an OVF, I adjusted the Packer HCL file. This change allows me to apply additional configurations directly within the guest environment. By keeping the VM in this state, I have more flexibility to refine the build process before creating the final image. Here's the adjustment I made to the HCL file: skip_export = true keep_registered = true The skip_export setting prevents ...