UNSOLVED

phumlaniTechEx

updated

3 years ago

0

152

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

  • Origin3k

    6 Operator

    2421 Posts

    12396 Points

    0

    0

    Posted 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)