Graylog OVA 環境設定固定 IP

  開源 log 系統 — Graylog 有提供 OVA 的虛擬映像環境供使用,預設的網卡設置會以 DHCP 為初始設定,因此開起來後如果沒配發到 IP,會有部份錯誤訊息,如要改成固定 IP,可依照下列步驟進行:

 

 

1. 停用網路介面

sudo ifdown eth0
 

2. 透過 vi 修改 interfaces 檔。

sudo vi /etc/network/interfaces
 
【vi 指令】
a 進入編輯模式
esc 離開編輯模式
:w 存檔
:q 離開
 

3. 修改內容成如下範例格式並存檔。

auto eth0
  iface eth0 inet static
  address 192.168.0.1
  netmask 255.255.255.0
  gateway 192.168.0.254
  dns-nameserver 1.1.1.1
  dns-nameserver 8.8.8.8
  pre-up sleep 2
 

4. 啟用網路介面,並重新設定 Graylog

sudo ifup eth0
sudo graylog-ctl reconfigure
 

【參考連結】

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.