CentOS 5.2,设置IP网络

CentOS 5.2,设置IP网络

下午好,
我正在尝试在 CentOS 5.2 系统上安装 GCC,并且我已从 UNIX/Linux 论坛发送到网络工程论坛”https://networkengineering.stackexchange.com/questions/26048/centos-5-2-set-up-ip-network“对于这个,我真的希望有人可以帮助我:-)

完成此操作的一种方法是使我的网络正常工作,这样我就可以启动一个用于配置/编译/安装 GCC 的自动脚本,所以我的问题归结为网络部分:(请参阅我之前的帖子)

正如另一篇 StackExchange 帖子所解释的那样https://unix.stackexchange.com/questions/256093/how-to-install-gcc-4-7-2-on-centos-5-2“,我想在 CentOS 5.2 虚拟机上安装 GCC 版本。
这篇文章中有两条建议:

  • 升级到较新版本的 CentOS
  • 启动一个命令,该命令将连接到互联网并自动进行修改。

    由于无法遵循第一条建议,我想讨论第二条建议,看看我需要做什么才能在我的虚拟 CentOS 机器上设置网络连接。

    目前我的情况如下:
    在我的 PC 上:

    C:\>ipconfig
    
    Windows IP Configuration
    
       Connection-specific DNS Suffix  . : <mycompany>.com
       Link-local IPv6 Address . . . . . : fe80::5c75:960e:db38:8f39%11
       IPv4 Address. . . . . . . . . . . : 10.130.2.58
       Subnet Mask . . . . . . . . . . . : 255.255.252.0
       Default Gateway . . . . . . . . . : 10.130.1.17
    
    Ethernet adapter VMware Network Adapter VMnet1:
    
       Connection-specific DNS Suffix  . :
       Link-local IPv6 Address . . . . . : fe80::30fe:4197:b189:5516%26
       IPv4 Address. . . . . . . . . . . : 192.168.38.1
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . :
    

    在我的 VMWare 设置中: VMWare 网络适配器设置

    在我的虚拟机(CentOS 5.2)中:(小注释,bepc153是我的电脑的名字): 虚拟机网络配置

    (为了完整起见,我还在这里添加了最重要的网络相关文件的内容):

    root@dbserv1 network-scripts]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
    DEVICE=eth0
    BOOTPROTO=none
    #IPADDR=192.168.0.128
    #NETMASK=255.255.255.0
    ONBOOT=yes
    DHCP_HOSTNAME=dbserv1.orbotech.org
    TYPE=Ethernet
    USERCTL=yes
    IPV6INIT=no
    PEERDNS=no
    IPADDR=192.168.137.101
    NETMASK=255.255.255.0
    GATEWAY=192.168.137.1
    [root@dbserv1 network-scripts]# cat /etc/hosts
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    ::1     localhost.localdomain   localhost
    192.168.137.101 dbserv1.orbotech.org    dbserv1
    192.168.137.1   bepc153 bepc153
    [root@dbserv1 network-scripts]# cat /etc/resolv.conf
    ; generated by /sbin/dhclient-script
    search localdomain
    #nameserver 192.168.0.2
    nameserver 192.168.137.1
    #nameserver 195.238.3.17
    

    如您所见,我的目的是使用我的电脑(bepc153)作为虚拟机的网关,以启用网络设置,然后上网。

    但是,当我尝试启动网络服务时,收到以下消息:

    root@dbserv1 network-scripts]# /etc/init.d/network restart
    Shutting down interface eth0:                              [  OK  ]
    Shutting down loopback interface:                          [  OK  ]
    Bringing up loopback interface:                            [  OK  ]
    Bringing up interface eth0:  RTNETLINK answers: Invalid argument
                                                           [  OK  ]
    

    而且网络似乎也不起作用:
    从 VMWare 机器:

    [root@dbserv1 network-scripts]# ping 192.168.137.1
    PING 192.168.137.1 (192.168.137.1) 56(84) bytes of data.
    From 192.168.137.101 icmp_seq=2 Destination Host Unreachable
    From 192.168.137.101 icmp_seq=3 Destination Host Unreachable
    From 192.168.137.101 icmp_seq=4 Destination Host Unreachable
    

    从我的电脑(Windows 7):

    C:\>ping 192.168.137.101
    
    Pinging 192.168.137.101 with 32 bytes of data:
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    

    有人知道吗?如果这不是虚拟机相关问题论坛,请告诉我。
    提前致谢

  • 相关内容