boa웹서버를 EZ HOWTO와 같이 설정을 하고 또한
...
AddType application/x-httpd-cgi cgi
ScriptAlias /cgi-bin/ /usr/local/boa/cgi-bin/
...
으로 설정해서 사용하고 있습니다.
물론 htm파일은 잘 로딩이 됩니다만.
cgi를 구동시키기 위해서 c로 짜서 컴파일된 cgitest를 위의 cgi-bin디렉토리
에 넣고 콘솔에서 실행을 하면 잘 됩니다만
웹에서 주소창에 넣으면 파일다운로드창으로 떠버립니다.

이렇게 되는 원인을 몰라 해결을 못하고 있습니다.
물론 퍼미션도 chmod 4555로 설정을 해주었구요..

주소창에 http://장비 아이피 주소/cgi-bin/cgitest?Hello+There 이렇게 넣고
테스트를 하고 있습니다.
답변 부탁드리겠습니다. 그럼 수고하십시요.

아래는 c로 짠 간단한 cgitest 소스입니다.
#include
#include

void main(int argc, char *argv[])
{
int i;

printf("Content-type: test/html

");
printf("
");
printf(" CGI TEST
");
printf("

CGI PROGRAM TEST


");
printf("Arguments: %u
",argc);
for(i=0; i printf("Argument %u: %s
",i,argv[i]);
printf("Query String: %s
", getenv("QUERY_STRING"));
printf("Remote Addr: %s
", getenv("REMOTE_ADDR"));
printf("

");
exit(0);
}