Announcements

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

Ethernet ports not working after installing DKU

remy_b-f
Observer

Ethernet ports not working after installing DKU

remy_b-f
Observer
Observer

Hi,

 

We just got a new computer at work to run flame 2020, and I installed centOs 7.4 and then the DKU 14.0.

 

After installing CentOS, the network card integrated to the motherboard works perfectly fine, but after installing the DKU, is does not work anymore. I have no cards listed in system settings. 

 

While installating the DKU, I get a message saying that the config file was not found, and that I can proceed with a generic installation, which I do. After rebooting, everything is fine except for that card.

 

Is there anyway I can make it work again, or just install the DKU without installing the network driver?

 

The motherboard is a supermicro MBD-X10DAX-O.

 

Thank you! 

0 Likes
Reply
662 Views
2 Replies
Replies (2)

jeffrey.ramirez
Autodesk
Autodesk

Hi remy_b-f,

 

While installating the DKU, I get a message saying that the config file was not found, and that I can proceed with a generic installation, which I do. After rebooting, everything is fine except for that card.

 

- DKU is installed with generic config if the system is not in the Autodesk Certified Workstations in the Flame System Requirement page.

 

What is the output of 'ifconfig -a' from terminal?

or the

systemctl status network

 

You may need to edit the network script file manually from the terminal as root:

 

vim /etc/sysconfig/network-scripts/ifcfg-ethX (or enX)

X=replace with the actual device number. ex, en0, en1, eth0

with these info:

 

DEVICE=enX

BOOTPROTO=static

# change the HWADDR with the MAC address of the eth device (refer dmesg or ifconfig for the MAC adress)

HWADDR=XX:XX:XX:XX:XX:XX

# change the IP address with the real ip needed

IPADDR=192.168.1.55

NETMASK=255.255.255.0

NM_CONTROLLED=yes

ONBOOT=yes

 

This info should also be inside  /etc/sysconfig/network-scripts/ADSKtemplate_ifcfg-ethX 

 

Once edited, you may need to 'ifup' the device:

cd /etc/sysconfig/network-scripts/

ifup ifcfg-enX

you may also need to restart the network service:

systemctl restart network

 

Hope that helps.

 

Regards,

Jeff

 

e0555945
Contributor
Contributor
Thanks Jeff you are a life saver!
0 Likes