From 103971e788664f72d0b119e5831eb35e143ffff1 Mon Sep 17 00:00:00 2001 From: medusa Date: Fri, 19 Apr 2024 20:49:23 +0000 Subject: [PATCH] Update docs/tech_docs/proxmox_dhcp.md --- docs/tech_docs/proxmox_dhcp.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/tech_docs/proxmox_dhcp.md b/docs/tech_docs/proxmox_dhcp.md index 399bae3..0afeb8c 100644 --- a/docs/tech_docs/proxmox_dhcp.md +++ b/docs/tech_docs/proxmox_dhcp.md @@ -11,7 +11,7 @@ cp /etc/network/interfaces /etc/network/interfaces.bak 1. **Update Network Interface Configuration:** - Open `/etc/network/interfaces` in a text editor: ```bash - nano /etc/network/interfaces + vim /etc/network/interfaces ``` - Change the `vmbr0` configuration from static to DHCP: ```bash @@ -47,15 +47,12 @@ cp /etc/network/interfaces /etc/network/interfaces.bak ``` - Save and exit. -5. **Reserve IP in DHCP Server (Optional but Recommended):** - - To ensure the IP does not change on reboots, reserve the IP in your DHCP server settings to always assign the same IP to the MAC address of `vmbr0`. - ### Creating a New Virtual Bridge (`vmbrX`): 1. **Add a New Virtual Bridge Configuration:** - Edit `/etc/network/interfaces`: ```bash - nano /etc/network/interfaces + vim /etc/network/interfaces ``` - Add a new bridge configuration at the end of the file: ```bash @@ -74,4 +71,3 @@ cp /etc/network/interfaces /etc/network/interfaces.bak ``` ### General Notes: -