Start a Conversation

Unsolved

P

1 Message

118

November 17th, 2023 15:06

IP address config

On my server poweredge i installed Ubuntu OS and a SIEM solution(Application), If i run a command "Ip a" i am not getting any Ip address. Kindly help, because i need the OS ip address to use it on a search engine to have a visibility of the install application.

Kindly see below screenshot

4 Operator

 • 

2.2K Posts

November 18th, 2023 23:42

The easiest way it to configure the network during the installation of Ubuntu. Now you have to use "netplan".

sudo vi /etc/netplan/00-installer-config.yaml
network:
  version: 2
  renderer: networkd
  ethernets:
    en02:
     dhcp4: no
     addresses: [192.168.1.10/24]
     gateway4: 192.168.1.254
     nameservers:
       addresses: [192.168.1.1,192.168.1.2]
sudo netplan apply

(edited)

No Events found!

Top