无法使用 DRAC 在 Ubuntu 服务器上配置网络

无法使用 DRAC 在 Ubuntu 服务器上配置网络

我已经使用戴尔的 DRAC 在我的服务器上安装了 Ubuntu 14 服务器。

IP 地址、网关、网络掩码由服务器公司提供。

我已尝试使用 DHCP 配置网络。

我已尝试使用我掌握的详细信息设置静态 IP。

但无论我做什么,似乎都无法让它发挥作用。

当我尝试时,ping 8.8.8.8我得到:

connect: Network is unreachable

$ ifconfig -a
em1 Link encap:Ethernet HWaddr ec:f4:bb:d6:51:40
    inet addr:75.4.234.152  BCast:172.25.0.255  Mask:255.255.252.0
    inet6 addr: fe80::eef4:bbff:fed6:5140/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:14488 errors:0 dropped:0 overruns:0  frame:0
    TX packets:2469 errors:0    dropped:0   overruns:0  carrier:0
    collisions:0    txqueuelen:1000
    RX bytes:869280 (869.2 KB)  TX bytes:838134 (838.1 KB)
    Memory:dcb00000-dcbfffff

em2 Link encap:Ethernet HWaddr ec:f4:bb:d6:51:41
    BROADCAST MULTICAST MTU:1500    Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0  frame:0
    TX packets:0 errors:0   dropped:0   overruns:0  carrier:0
    collisions:0    txqueuelen:1000
    RX bytes:0 (0.0 KB) TX bytes:0 (0.0 KB)
    Memory:dcc00000-dccfffff

em3 and em4 are the same like em2 just with 1 digit difference in the mac address

lo  Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0

$ cat /etc/network/interface
auto lo
iface lo inet loopback
auto em1
iface em1 inet static
address 75.4.234.152
netmask 255.255.252.0
network 152.25.0.152 #i have tried also without this
broadcast 152.25.0.255 #i have tried also without this
dns-nameservers 152.25.0.1 8.8.8.8 

我也尝试过没有这个

gateway 152.25.0.1

答案1

正如指出的那样此评论,问题出在服务器公司向我提供的 IP 地址上。

相关内容