IP not showing in my vm

Hi, I’m trying to connect my vm from putty but IP is not configured even after selecting bridged adapter option in virtual box, can some please advice??

Hello @Nik-Maverik,
Try this command sudo pkill dhclient then sudo dhclient

If the previous not working, Try the following to set a static IP with the following steps,

Within the directory /etc/sysconfig/network-scripts/ you should find the file ifcfg-INTERFACENAME (Where INTERFACENAME is the name of your interface). Open the correct file for editing with the command sudo nano /etc/sysconfig/network-scripts/ifcfg-<INTERFACENAME> or using vim editor. We need to modify that file in order to not only change the protocol from dhcp to static, but to add the specific IP address. So when you open up that file, you’ll want to change BOOTPROTO=dhcp to BOOTPROTO=static

Now you’ll need to add the entries to set not only the IP address, but the netmask, gateway, and DNS addresses. At the bottom of that file, add the following.

IPADDR=192.168.1.200

NETMASK=255.255.255.0

GATEWAY=192.168.1.1

DNS1=8.8.8.8

DNS2=8.8.4.4

then restart the network service using this command systemctl restart network
Note: **you need to check your PC settings first and according to these settings you will set your IP to be in the same network of your PC so you will be able to connect to the VM using putty or mobaxtrem

These are the files I’m seeing,which one should i edit??
ifconfig

I’m also unable to restart network service.

Hi @Nik-Maverik ,
Are you able to ping to www.google.com?

ping www.google.com

Regards,

Can you please tell me which OS image is this?