標籤

BAT (38) shell (34) Virtual Machine (33) Xubuntu (29) acfs (25) PHP (24) CentOS (21) Virtul Box (20) 編輯器 (17) 資料庫 (15) lubuntu (13) windows (13) CPP (12) ubuntu (12) chrome (11) laravel (10) Docker (9) Python (9) 5A88 (7) VMware (6) 資料結構 (6) Javascript (5) Node (5) Proxmox VE (5) 公告系統 (5) 程式積木 (5) Android Studio (4) ANN (3) OB2D2016x64 (3) Xoops (3) clonezilla (3) samba (3) 公文 (3) 其他 (3) 硬體 (3) API (2) Android (2) AppInvent2 (2) Html (2) Hyper-V (2) Nas (2) botnet (2) mbot (2) swift (2) wordpress (2) 樣板 (2) 防火牆 (2) AD的應用 (1) Ansible (1) Arduino (1) CSS (1) GitLab (1) HA Proxy (1) LegoEV3 (1) PowerShell (1) Scratch (1) VM (1) XenServer (1) kotlin (1) linuxmint (1) lxc (1)

2020年3月7日 星期六

如何用shell去變更 Proxmox VE 的 IP 與 Banner上的IP


現在 Proxmox VE 主機內的 Banner上的IP 192.168.25.165

一、在 Proxmox VE WebUI 變更:

1.
變更 [PVE]->[Hosts]->[192.168.25.165]改為[192.168.25.173]

2.
重開 Proxmox VE

3.
現在 Proxmox VE 主機內的 Banner上的IP 變更為 192.168.25.173

此時,Proxmox VE IP 仍然為 192.168.25.165

 4.變更 [PVE]->[網路]->[192.168.25.165/24]改為[192.168.25.173/24]


 5.
重開 Proxmox VE

6.在瀏覽器要打上 https://192.168.25.173:8006,才會看到 WebUI的登入畫面

二、在Proxmox VE 的主機上變更
1.
直接變更 /etc/hosts 內的IP
    #pico /etc/hosts


2.
直接變更 /etc/network/instrfaces 內的IP
   #pico /etc/network/interfaces

3.重開 Proxmox VE
   #reboot

三、用shell去變更 Proxmox VE IP Banner上的IP

感恩永靖國小邱顯錫老師的指導!!

尋找取代語法介紹:
sed -i 's/
尋找/取代/g' 絕對路徑+檔名
例如:要尋找 /etc/fstab 內的 defaults 並取代成 defaults,usrquota,grpquota
sed -i 's/
defaults/defaults,usrquota,grpquota/g' /etc/fstab
另外關於絕對路徑+檔名,可以改用
cd /etc
sed -i 's/defaults/defaults,usrquota,grpquota/g' fstab

檔名:ChangeBothIP.sh,其內容為

#!/bin/bash
sed -i 's/
192.168.25.165/192.168.25.173/g'  /etc/hosts
sed -i 's/
192.168.25.165/192.168.25.173/g' /etc/network/interfaces
reboot


資料來源:
1.解決 Proxmox VE 變更 IP Banner 沒有同步異動問題


沒有留言:

張貼留言

在 Windows 10 x64 1909版,使用BAT快速安裝公文系統與人事服務網(自然人憑證)版

相關內容移往 https://skjhcreator.blogspot.com/2021/02/windows-10-x64-1909bat.html