CentOS 5.2, IP 네트워크 설정


2

안녕하세요,
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내 PC 이름) : 가상 머신 네트워크 구성

    (완료하기 위해 가장 중요한 네트워크 관련 파일의 내용도 여기에 추가합니다) :

    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
    

    보시다시피, 내 PC (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
    

    내 PC에서 (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.
    

    아무도 단서가 있습니까? 가상 머신 관련 질문에 대한 포럼이 잘못된 경우 알려주십시오.
    미리 감사드립니다

  • 당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
    Licensed under cc by-sa 3.0 with attribution required.