Hello,
usually it should be enough to do the following after logging in as root (which I hope is possible via the serial console for you):
ifconfig <if> <ip> netmask <netmask> up
So for example for 192.168.100.10/24 on eth0:
ifconfig eth0 192,168.100.10 netmask 255.255.255.0 up
The bond could be a problem in case if cannot be started. If you have not configured all physical interfaces to be part of the bond maybe you can plug the cable into another interface, and configure the IP address as above?
Once the IP is applied correctly (can be checked by running ifconfig without parameters) you should be able to ping the default gateway, whose IP you need to know from your network team or the network documentation.
Once you can ping the default gateway you can set it:
route add default gw <ip>
For example if the default gateway is 192.168.100.1:
route add default gw 192.168.100.1
When the default gateway is setup outgoing and incoming connectivity should be working. At least a connect via SSH should be possible, even if the UI port was bound to a specific IP.
Note: This won't survive a reboot. Once you restored connectivity, access the UI and reconfigure the network in order to make the network configuration persistent.
Andre
Best,
Andre