<P>Hi Joe,</P>
<P>   I think you missed out to add your MAC address in
the networkconfig.h file. I don't know if you should do this, but
I'm sure you defined some other value there.
            &nb
sp; </P>
<P>I've gone through the RTEMS networking supplement( though didn't 
most of it didn't get in to my head). I am trying to use
networking demo executives. I selected the PC386 target so as to test
it on my system itself. I built the BSP using the RTEMS snapshot 20021111.
My network card is RTL8139. I've downloaded the netdemo files.  The
I've edited the networkconfig.h as below. Also edited the bsp.h file to
define the BSP_NETWORK_DRIVER as NE2000, didn't define USE_BOOTP. The
netdemo executive built fine and loaded. Now when I issue a 't' command,
which sends a tcp packet, I suppose, the application got hanged. Also when
I gave the 'u' input repeatedly, the executive crashed and shutdown. I
don't know how to test if my network card driver or any other configuration
is causing the problem. Hope someone helps me.</P>
<P>thanks</P>
<P>Imran</P>
<P>/*<BR> * Network
configuration<BR> *<BR> *****************************************
*******************<BR> * EDIT THIS FILE TO REFLECT YOUR NETWORK
CONFIGURATION     *<BR> * BEFORE RUNNING ANY RTEMS
PROGRAMS WHICH USE THE NETWORK!
*<BR> ************************************************************<BR>
 *<BR> *  $Id: networkconfig.h,v 1.6.4.1 2000/05/09 21:38:58
joel Exp $<BR> */</P>
<P>#ifndef _RTEMS_NETWORKCONFIG_H_<BR>#define _RTEMS_NETWORKCONFIG_H_</P>
<P>/*<BR> *  The following will normally be set by the BSP if it
supports<BR> *  a single network device driver.  In the
event, it supports<BR> *  multiple network device drivers, then
the user's default<BR> *  network device driver will have to be
selected by a BSP<BR> *  specific mechanism.<BR> */</P>
<P>#ifndef RTEMS_BSP_NETWORK_DRIVER_NAME<BR>#warning
"RTEMS_BSP_NETWORK_DRIVER_NAME is not defined"<BR>#define
RTEMS_BSP_NETWORK_DRIVER_NAME "no_network1"<BR>#endif</P>
<P>#ifndef RTEMS_BSP_NETWORK_DRIVER_ATTACH<BR>#warning
"RTEMS_BSP_NETWORK_DRIVER_ATTACH is not defined"<BR>#define
RTEMS_BSP_NETWORK_DRIVER_ATTACH 0<BR><BR>/* #define RTEMS_USE_BOOTP */</P>
<P>#include <bsp.h></P>
<P>/*<BR> * Define RTEMS_SET_ETHERNET_ADDRESS if you want to specify
the<BR> * Ethernet address here.  If RTEMS_SET_ETHERNET_ADDRESS
is not<BR> * defined the driver will choose an
address.<BR> */</P>
<P>#define RTEMS_SET_ETHERNET_ADDRESS<BR>#if (defined
(RTEMS_SET_ETHERNET_ADDRESS))<BR>/* static char ethernet_address[6] = {
0x08, 0x00, 0x3e, 0x12, 0x28, 0xb1 }; */</P>
<P> </P>
<P><BR>static char ethernet_address[6] = { 0x00, 0xE0, 0x18, 0x37, 0x3D,
0x65 };</P>
<P>#endif<BR>extern void rtems_bsdnet_do_dhcp();<BR>#ifdef
RTEMS_USE_LOOPBACK<BR>/*<BR> * Loopback
interface<BR> */<BR>extern void rtems_bsdnet_loopattach();</P>
<P>static struct rtems_bsdnet_ifconfig loopback_config =
{<BR> "lo0",    /* name
*/<BR> rtems_bsdnet_loopattach, /* attach function */</P>
<P> NULL,    /* link to next interface */</P>
<P> "127.0.0.1",   /* IP address
*/<BR> "255.0.0.0",   /* IP net mask
*/<BR>};<BR>#endif</P>
<P>/*<BR> * Default network interface<BR> */<BR>static struct
rtems_bsdnet_ifconfig netdriver_config =
{<BR> RTEMS_BSP_NETWORK_DRIVER_NAME,  /* name
*/<BR> RTEMS_BSP_NETWORK_DRIVER_ATTACH, /* attach function */</P>
<P>#ifdef RTEMS_USE_LOOPBACK<BR> &loopback_config,  /*
link to next interface */<BR>#else<BR> NULL,    /*
No more interfaces */<BR>#endif</P>
<P>#if (defined (RTEMS_USE_BOOTP))<BR> NULL,    /*
BOOTP supplies IP address */<BR> NULL,    /* BOOTP
supplies IP net mask */<BR>#else<BR> "10.0.0.138",  /* IP
address */<BR> "255.0.0.0",  /* IP net mask */<BR>#endif /*
!RTEMS_USE_BOOTP */</P>
<P>#if (defined
(RTEMS_SET_ETHERNET_ADDRESS))<BR> ethernet_address,   &
nbsp;           /*
Ethernet hardware address
*/<BR>#else<BR> NULL,        &
nbsp;           &nbs
p;      /* Driver supplies hardware address
*/<BR>#endif<BR> 0    /* Use default driver
parameters */<BR>};</P>
<P>/*<BR> * Network configuration<BR> */<BR>struct
rtems_bsdnet_config rtems_bsdnet_config =
{<BR> &netdriver_config,</P>
<P>#if (defined
(RTEMS_USE_BOOTP))<BR> rtems_bsdnet_do_dhcp,<BR>#else<BR> NULL,<B
R>#endif</P>
<P> 0,   /* Default network task priority
*/<BR> 0,   /* Default mbuf capacity
*/<BR> 0,   /* Default mbuf cluster capacity */</P>
<P>#if (!defined (RTEMS_USE_BOOTP))<BR> "IMRAN",  /* Host
name */<BR> "msdomain",  /* Domain name
*/<BR> "10.0.0.9", /* Gateway */<BR> "10.0.0.9", /* Log
host */<BR> {"10.0.0.9" }, /* Name server(s)
*/<BR> {"10.0.0.9" }, /* NTP server(s) */</P>
<P> /*<BR>  *  A real example -- DO NOT USE THIS
YOURSELF!!!<BR>  */</P>
<P>#if 0<BR> "dy4",   /* Host name
*/<BR> "NOT_oarcorp.com", /* Domain name
*/<BR> "192.168.1.2",    /* Gateway
*/<BR> "192.168.1.2",   /* Log host
*/<BR> {"192.168.1.2" }, /* Name server(s)
*/<BR> {"192.168.1.2" }, /* NTP server(s) */<BR>#endif<BR>#endif
/* !RTEMS_USE_BOOTP */</P>
<P>};</P>
<P>/*<BR> * For TFTP test application<BR> */<BR>#if (!defined
(RTEMS_USE_BOOTP))<BR>#define RTEMS_TFTP_TEST_HOST_NAME "IMRAN"<BR>#define
RTEMS_TFTP_TEST_FILE_NAME "tftptest"<BR>#endif</P>
<P>#endif /* _RTEMS_NETWORKCONFIG_H_ */<BR></P>
<P> </P>
<P> </P>
<P>        
<BR></P><BR><PRE>>Thank you for your response. Setting the file
>descriptors did fix the problem, but partially. Right
>now I'm trying to fiqure out why I can't ping the
>target system. I thought this is prebuilt to the
>network demo program.
>
> I know I can't change the hardware address. I just
>wanted to know that whether the address displayed by
>the  netdemo program is my hw address. If so, it's
>something diffrerent than that shown by ifconfig. What
>does that mean? Is RTEMS identifying my NIC correctly?
>with regards
>Joe
> --- Ian Caddy <ianc@microsol.iinet.net.au> wrote: >
>Hi Joe,
>> 
>> When you build your application you must tell RTEMS
>> how many resources 
>> you require.
>> 
>> In the example that you showed, you are running out
>> of file handles. 
>> This can be increased by:
>> 
>> 
>> #define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS  20
>> 
>> 20 is just a number that I put in there, but you
>> have to decide how big 
>> you want it.  There are a bunch of other ones that
>> you will require as well.
>> 
>> The C_UserGuide has information on these defines
>> which need to be placed 
>> in your application before the confdefs.h include
>> file.  This is 
>> normally contained in your init task file.
>> 
>> As to your mac address, the card may have a
>> hardcoded mac address and 
>> won't let you change it if that is what you were
>> trying to do.  In this 
>> case, when you read it back it will be the card's
>> mac address and not 
>> one you tried to put in.
>> 
>> I hope this helps,
>> 
>> Ian Caddy
>> 
>> 
>> Joe Samuel wrote:
>> > Hi Sachin,
>> >      thank you for your response. But I could know
>> > that RTL 8139 is NE2000 compatible. When I changed
>> the
>> > bsp.h(#define RTEMS_BSP_NETWORK_DRIVER_NAME
>> > BSP_NE2000_NETWORK_DRIVER_NAME), the
>> initialization
>> > didn't hang, but I got the following messages:
>> > 
>> > Network device 'ne1' <00:D0:09:57:86:23>
>> initialized
>> > on port 0xC000, irq 5
>> > Can't bring ne1 up: Too many open files on system
>> > Can't set default roots: No such process
>> > No routes!
>> > Create socket
>> > RTEMS: Can't create socket
>> >         
>> >     These messages give me some hope that there is
>> a
>> > workaround using the RTL network card itself. 
>> > I'm posting this to the RTEMS group also. Can
>> anyone
>> > suggest a solution?
>> > 
>> > BTw, is the address in the first messge supposed
>> to be
>> > my mac address?, but ifconfig return a different
>> > address- 00:E0:18:37:3E:86 .
>> > 
>> > regards,
>> > Joe
>> > 
>> > 
>> > 
>> >  --- Sachin K <sachin@dexceldesigns.com> wrote: >
>> > ----- Original Message -----
>> > 
>> >>From: "Joe Samuel" <sjoe2@yahoo.com>
>> >>To: "Sachin K" <sachin@dexceldesigns.com>
>> >>Sent: Monday, November 25, 2002 5:29 PM
>> >>Subject: Re: RTEMS networking (RTL 8139)
>> >>
>> >>
>> >>
>> >>>Hi Sachin,
>> >>>  thank you for your quick response. I'm using
>> RTL
>> >>>8139 NIC.
>> >>
>> >>( same card which i was using. ;) )
>> >>
>> >>
>> >>>I think I should look for another NIC right?
>> >>
>> >>yes.
>> >>try for winbond NIC.
>> >>
>> >>>
>> >>>Joe
>> >>> --- Sachin K <sachin@dexceldesigns.com> wrote:
>
>> >>>----- Original Message -----
>> >>>
>> >>>>From: "Joe Samuel" <sjoe2@yahoo.com>
>> >>>>To: "Sachin K" <sachin@dexceldesigns.com>
>> >>>>Sent: Monday, November 25, 2002 12:00 PM
>> >>>>Subject: RTEMS networking (RTL 8139)
>> >>>>
>> >>>>
>> >>>>
>> >>>>>Hi Sachin,
>> >>>>
>> >>>>Hi Samuel,
>> >>>>
>> >>>>
>> >>>>>    I'm an undergradute experimenting with
>> >>>>
>> >>RTEMS
>> >>
>> >>>>as
>> >>>>
>> >>>>>part of my research project. I also faced the
>> >>>>
>> >>same
>> >>
>> >>>>>problem described by you here:
>> >>>>>
>> >>>>
>> >
>>
>http://www.oarcorp.com/rtems/maillistArchives/rtems-users/2002/july/msg
00053
>> > 
>> >>>>.html
>> >>>>
>> >>>>>  Could you please let me know if you've found
>> >>>>
>> >>any
>> >>
>> >>>>>work arounds?
>> >>>>
>> >>>>first check which type of ethernet card you
>> >>>
>> >>have,
>> >>
>> >>>>because RTEMS currently
>> >>>>supports only NE2000, dec compatible ethernet
>> >>>>devices.
>> >>>>
>> >>>>if you have the network card which is compatible
>> >>>>with the above mentioned
>> >>>>chipset, modify the attached network config file
>> >>>>according to your network
>> >>>>setings and use it in your application.
>> >>>>
>> >>>>
>> >>>>>thank you in advance.
>> >>>>>Joe
>> >>>>>
>> >>>>
>> >>>>Sachin.K
>> >>>>
>> >>>
>> >>>>ATTACHMENT part 2 application/octet-stream
>> >>>
>> >>>name=networkconfig.h
>> >>>
>> >>>>
>> >
>>
>--------------------------------------------------------------
>> > 
>> >>>>Dexcel Electronics Designs (P) Ltd., Bangalore,
>> >>>>India
>> >>>>
>> >>>
>>
>>>>__________________________________________________
>> >>>Do You Yahoo!?
>> >>>Everything you'll ever need on one web page
>> >>>from News and Sport to Email and Music Charts
>> >>>http://uk.my.yahoo.com
>> >>
>> >>
>> >>
>> >
>>
>--------------------------------------------------------------
>> > 
>> >>Dexcel Electronics Designs (P) Ltd., Bangalore,
>> >>India
>> >>
>> >> 
>> > 
>> > 
>> > __________________________________________________
>> > Do You Yahoo!?
>> > Everything you'll ever need on one web page
>> > from News and Sport to Email and Music Charts
>> > http://uk.my.yahoo.com
>> > 
>>  
>
>__________________________________________________
>Do You Yahoo!?
>Everything you'll ever need on one web page
>from News and Sport to Email and Music Charts
>http://uk.my.yahoo.com
>
</PRE>
<br>
_______________________________________________________________
<br><a href='http://www.homenetmail.com' target='_blank'>http://www.homenetmail.com</a> Free e-Mail Service <br>Visit <a href="http://www.schoolnetindia.com" target='_blank'>www.schoolnetindia.com</a> for <i>Networked Learning</i>