Files
proxmox/docs/04-configuration/UDM_PRO_IP_CHANGE_MANUAL_STEPS.md
defiQUG fbda1b4beb
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
docs: Ledger Live integration, contract deploy learnings, NEXT_STEPS updates
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands
- CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround
- CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check
- NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere
- MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates
- LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 15:46:57 -08:00

2.4 KiB

Manual IP Change Steps - 192.168.11.4

Last Updated: 2026-01-14
Status: Active Documentation Current IP: 192.168.0.23
Target IP: 192.168.11.4


Quick Steps

Step 1: Edit Netplan Configuration

# Find netplan config file
ls /etc/netplan/*.yaml

# Edit the config file (replace with actual filename)
sudo nano /etc/netplan/50-cloud-init.yaml
# or
sudo nano /etc/netplan/01-netcfg.yaml

Step 2: Update Configuration

Find the eth0 section and update it:

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      addresses:
        - 192.168.11.4/24
      gateway4: 192.168.11.1
      nameservers:
        addresses:
          - 192.168.11.1
          - 8.8.8.8

Important: Keep the existing structure, just update the eth0 section.

Step 3: Apply Changes

# Validate configuration
sudo netplan try --timeout 5

# If validation succeeds, apply permanently
sudo netplan apply

Step 4: Verify

# Check new IP
ip addr show eth0

# Should show: inet 192.168.11.4/24

# Test gateway
ping -c 3 192.168.11.1

# Test ml110
ping -c 3 192.168.11.10

Complete Example Config

If your current config looks like this:

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      dhcp4: true

Change it to:

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      addresses:
        - 192.168.11.4/24
      gateway4: 192.168.11.1
      nameservers:
        addresses:
          - 192.168.11.1
          - 8.8.8.8

Troubleshooting

If netplan apply fails:

  1. Check syntax:

    sudo netplan --debug apply
    
  2. Validate YAML:

    sudo netplan try --timeout 5
    
  3. Check logs:

    journalctl -u systemd-networkd
    

If IP doesn't change:

  1. Restart network:

    sudo systemctl restart systemd-networkd
    
  2. Check interface:

    ip link show eth0
    
  3. Bring interface down/up:

    sudo ip link set eth0 down
    sudo ip link set eth0 up
    

Reverting Back

To revert to original IP (192.168.0.23):

network:
  version: 2
  renderer: networkd
  ethernets:
    eth0:
      addresses:
        - 192.168.0.23/24
      gateway4: 192.168.0.1
      nameservers:
        addresses:
          - 192.168.0.1
          - 8.8.8.8

Then:

sudo netplan apply

Last Updated: 2026-01-14