밑에 글에 이어서 질문드려요~


타겟보드 내에서

 

/etc/rc.d/rc.local 파일 내용입니다.

 

 

 #!/bin/sh

# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

TERM=xterm
export $TERM

CMDLINE=$(cat /proc/cmdline)

# parsing cmd_line
if [ -f /etc/rc.d/parse_cmd ]; then
    /etc/rc.d/parse_cmd $CMDLINE
fi

#  NETWORK config
ifconfig lo 127.0.0.1 up

NETDEV="eth0"
if [ -f /etc/rc.d/arch_name ]; then
    if [ "EZ-IXP42x" = "$(cat /etc/rc.d/arch_name)" ]; then
        NETDEV="ixp0"
    fi
fi

IP="192.168.10.200"
if [ -f /etc/rc.d/ip0 ]; then
    IP=$(cat /etc/rc.d/ip0)
fi
ifconfig $NETDEV $IP netmask 255.255.255.0 up

GW="192.168.10.1"
if [ -f /etc/rc.d/gw ]; then
    GW=$(cat /etc/rc.d/gw)
fi
route add default gw $GW $NETDEV

# mount config
if [ -f /etc/rc.d/initrd ]; then
    rm -f /etc/rc.d/initrd

    if [ -d /app ]; then
        mount -t yaffs /dev/mtdblock2 /app
    chmod 777 /app
    fi    
fi

# execute for arch
if [ -f /etc/rc.d/exec_arch ]; then
    /etc/rc.d/exec_arch
fi

# issue
if [ -f /etc/rc.d/mkissue ]; then
    /etc/rc.d/mkissue
fi

# auto execute
if [ -f /app/app_script ]; then
    /app/app_script
fi

================================================

이 파일에서  ip, submask, gateway 주소를 지정하는 곳이 있는것 같은데


혹시 이부분을 수정하는 것이 맞나요??


vmware 로 구동중인 호스트(리눅스)컴퓨터의 아이피주소는

192.168.0.129 이며

타겟보드의 아이피주소는

192.168.10.161 입니다.


호스트와 타겟보드 간의 핑테스를 서로 각각 해봤는데

둘다 먹통입니다 ㅠㅠ


타겟보드에는 랜선을 직접 꽂아서 사용하였고

타겟보드는 무선랜을 사용하여 인터넷에 접속중입니다.

같은 공유기를 사용하였구요..


지금같은 상황에서

타겟보드에서 이더넷환경을 구축하기위한 방법이 어떤 것이 있을까요??


고수님들 부탁드립니다 ㅠ 도와주세요.