diff --git a/web/app/docs/network/repair-network/page.tsx b/web/app/docs/network/repair-network/page.tsx index 6aa5937..6e43e12 100644 --- a/web/app/docs/network/repair-network/page.tsx +++ b/web/app/docs/network/repair-network/page.tsx @@ -3,7 +3,7 @@ import { Steps } from "@/components/ui/steps" export const metadata: Metadata = { title: "Repair Network | ProxMenux Documentation", - description: "Learn how to repair and verify network configurations in Proxmox VE using ProxMenux.", + description: "Learn how to repair network configurations in Proxmox VE using ProxMenux.", } export default function RepairNetwork() { @@ -12,55 +12,12 @@ export default function RepairNetwork() {

Repair Network

- This script provides comprehensive network repair and verification functionality for Proxmox VE systems. It - helps users troubleshoot and fix common network issues, ensuring stable connectivity and proper configuration. + The Repair Network function is part of the network management script in ProxMenux. It automatically detects and + fixes common network issues in Proxmox VE systems, ensuring stable connectivity and proper configuration.

-

What Does This Script Do?

-

When executed, this script offers the following main functions:

-
    -
  1. Repair Network: Automatically detects and fixes common network issues
  2. -
  3. Verify Network: Checks the current network configuration and connectivity
  4. -
  5. Show IP Information: Displays IP addresses for all relevant network interfaces
  6. -
- -

Key Features

- - -

How to Use

- - -

Run the script and select the "Network Repair Menu" option from the main ProxMenux interface.

-
- -

Select one of the following options:

- -
- -

The script will guide you through the process with clear prompts and information dialogs.

-
- -

After each operation, review the results displayed in the dialog boxes.

-
- -

Choose another option or return to the main menu when finished.

-
-
- -

Repair Network Process

-

When you select "Repair Network", the script performs the following actions:

+

What Does Repair Network Do?

+

When you select the Repair Network option, the script performs the following actions:

  1. Detects physical network interfaces
  2. Cleans up non-existent interfaces from the configuration
  3. @@ -71,9 +28,39 @@ export default function RepairNetwork() {
  4. Displays updated IP information
+

How to Use Repair Network

+ + +

Run the network management script and select the "Network Repair Menu" option.

+
+ +

From the menu, select the "Repair Network" option.

+
+ +

The script will guide you through the repair process with clear prompts and information dialogs.

+
+ +

After the repair process, review the results displayed in the dialog boxes.

+
+ +

If prompted, decide whether to restart the networking service to apply changes.

+
+
+ +

Key Features of Repair Network

+ +

Important Notes

- This script simplifies the process of troubleshooting and repairing network issues in Proxmox VE. It provides an - easy-to-use interface for common network maintenance tasks, helping to ensure your Proxmox system maintains - stable connectivity. + The Repair Network function simplifies the process of troubleshooting and fixing network issues in Proxmox VE. + It provides an automated approach to common network maintenance tasks, helping to ensure your Proxmox system + maintains stable connectivity.

) diff --git a/web/app/docs/network/show-ip-information/page.tsx b/web/app/docs/network/show-ip-information/page.tsx index 600711b..91a7540 100644 --- a/web/app/docs/network/show-ip-information/page.tsx +++ b/web/app/docs/network/show-ip-information/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Steps } from "@/components/ui/steps" export const metadata: Metadata = { title: "Show IP Information | ProxMenux Documentation", @@ -9,22 +10,66 @@ export default function ShowIPInformation() { return (

Show IP Information

+

- This guide explains how to display IP information for Proxmox VE and its virtual machines using ProxMenux. + The Show IP Information function is part of the network management script in ProxMenux. It provides a quick and + easy way to view the IP configurations of all relevant network interfaces in your Proxmox VE system.

-

IP Information Available

-
) } diff --git a/web/app/docs/network/verify-network/page.tsx b/web/app/docs/network/verify-network/page.tsx index cd861b8..96ac59e 100644 --- a/web/app/docs/network/verify-network/page.tsx +++ b/web/app/docs/network/verify-network/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Steps } from "@/components/ui/steps" export const metadata: Metadata = { title: "Verify Network | ProxMenux Documentation", @@ -9,22 +10,65 @@ export default function VerifyNetwork() { return (

Verify Network

+

- This guide will show you how to verify network configuration and connectivity in Proxmox VE using ProxMenux. + The Verify Network function is part of the network management script in ProxMenux. It checks the current network + configuration and connectivity in Proxmox VE systems, providing a comprehensive overview of the network status.

-

Network Verification Steps

-
    -
  1. Check network interface status
  2. -
  3. Verify IP address configuration
  4. -
  5. Test DNS resolution
  6. -
  7. Ping gateway and external servers
  8. -
  9. Verify network throughput
  10. + +

    What Does Verify Network Do?

    +

    When you select the Verify Network option, the script performs the following actions:

    +
      +
    1. Detects and lists physical network interfaces
    2. +
    3. Checks the current IP configuration for all relevant interfaces
    4. +
    5. Verifies network connectivity by pinging an external server
    6. +
    7. Displays a summary of the network status
    -

    Using ProxMenux for Network Verification

    -

    - Detailed instructions on how to use ProxMenux to perform these verification steps will be provided here. + +

    How to Use Verify Network

    + + +

    Run the network management script and select the "Network Repair Menu" option.

    +
    + +

    From the menu, select the "Verify Network" option.

    +
    + +

    + The script will display information about detected interfaces, IP configurations, and connectivity status. +

    +
    + +

    + Based on the results, determine if any further action is needed (e.g., running the Repair Network function). +

    +
    +
    + +

    Key Features of Verify Network

    + + +

    Important Notes

    + + +

    + The Verify Network function provides a quick and easy way to check the status of your Proxmox VE system's + network configuration and connectivity. Use it regularly as part of your system maintenance routine or whenever + you suspect network issues.

    - {/* Add more content here */}
) }