| Author |
Message |
|
|
Posted: Aug 31, 2006 - 10:14 AM |
|


Joined: Jul 21, 2006
Posts: 40
Location: Matera/Italy
|
|
Hi comunity,
i want to enable SSL support for Http server.
I see on busybox and don't find never about this.
An idea?
Thank |
|
|
| |
|
|
|
|
|
Posted: Aug 31, 2006 - 10:50 AM |
|


Joined: Jan 07, 2003
Posts: 4580
Location: Oslo, Norway
|
|
| I don't think busybox has implemented SSL support, you probably have to compile OpenSSL + wget to get full SSL support. |
|
|
| |
|
|
|
|
|
Posted: Aug 31, 2006 - 10:54 AM |
|


Joined: Jul 21, 2006
Posts: 40
Location: Matera/Italy
|
|
|
hce wrote:
I don't think busybox has implemented SSL support, you probably have to compile OpenSSL + wget to get full SSL support.
Hi hce,
an idea about Openssl cross compiling for avr32?
I don't found config.sub for to add avr32-linux host support.
Thank |
|
|
| |
|
|
|
|
|
Posted: Aug 31, 2006 - 11:24 AM |
|

Joined: Jul 03, 2005
Posts: 4
|
|
Sometimes the config.sub is in a subdirectory like ./scripts or ./conf-scripts, did you try a "find . -name config.sub", or it is not based on autotools?
edit: just checked the tarball I once downloaded, openssl has a self cooked ./Configure script, but seems to support a lot of architectures. You have to look into that how to add support for
cross compiling to avr32. |
|
|
| |
|
|
|
|
|
Posted: Aug 31, 2006 - 11:36 AM |
|


Joined: Jul 21, 2006
Posts: 40
Location: Matera/Italy
|
|
|
Benjamin wrote:
Sometimes the config.sub is in a subdirectory like ./scripts or ./conf-scripts, did you try a "find . -name config.sub", or it is not based on autotools?
I've tried to find config.sub on openssl install subdiectories, but i don't find it or similar files.
Code:
#find . -name config.sub
find: config.sub: No such file or directory
|
|
|
| |
|
|
|
|
|
Posted: Aug 31, 2006 - 12:59 PM |
|


Joined: Jan 07, 2003
Posts: 4580
Location: Oslo, Norway
|
|
I think the patch below should be enough:
Code:
diff -upr openssl-0.9.8b/config openssl-0.9.8b-avr32/config
--- openssl-0.9.8b/config 2006-03-01 20:52:07.000000000 +0100
+++ openssl-0.9.8b-avr32/config 2006-07-17 10:42:34.000000000 +0200
@@ -585,6 +585,7 @@ case "$GUESSOS" in
OUT="linux-generic32" ;;
arm*b-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
arm*l-*-linux2) OUT="linux-generic32"; options="$options -DL_ENDIAN" ;;
+ avr32-*) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
s390*-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN -DNO_ASM" ;;
x86_64-*-linux?) OUT="linux-x86_64" ;;
*86-*-linux2) OUT="linux-elf"
|
|
|
| |
|
|
|
|
|
Posted: Aug 31, 2006 - 04:11 PM |
|


Joined: Jul 21, 2006
Posts: 40
Location: Matera/Italy
|
|
Ok hce,
i'm now able to port Openssl on avr32....it work fine, but i don't understand....why WGET.
It is used to download a file from an URL. I want to add on my httpd server the SSL support.
I've tried to port on avr32 stunnel (for create an encrypted tunnel with http protocol), but i'n not able to cross compile it.
Have you an idea? |
|
|
| |
|
|
|
|
|
Posted: Sep 01, 2006 - 07:29 AM |
|


Joined: Jan 07, 2003
Posts: 4580
Location: Oslo, Norway
|
|
| I don't think the http server in busybox supports SSL at all. You will have to find a webserver which has this possibility. |
|
|
| |
|
|
|
|
|
Posted: Oct 22, 2010 - 08:44 AM |
|

Joined: Oct 22, 2010
Posts: 2
|
|
|
mitsus wrote:
Hi comunity,
i want to enable SSL support for Http server.
I see on busybox and don't find never about this.
An idea?
Thank
You can find the Internet Services management console by navigating to Control Panel | Administrative Tools | Internet Services Manager.
Right-click on your site and choose Properties, select the Directory Security tab, and click the Server Certificate button. This will starts the Certificate Installation Wizard.
The default port for SSL is 443, and I highly recommend that you keep that port number.
finally ,You can test out an SSL connection by pointing your Web browser to https://yourservername/. |
_________________ Community Association Management
|
| |
|
|
|
|
|
Posted: Oct 22, 2010 - 08:56 AM |
|


Joined: Jan 07, 2003
Posts: 4580
Location: Oslo, Norway
|
|
|
MacJordan wrote:
mitsus wrote:
Hi comunity,
i want to enable SSL support for Http server.
I see on busybox and don't find never about this.
An idea?
Thank
You can find the Internet Services management console by navigating to Control Panel | Administrative Tools | Internet Services Manager.
Right-click on your site and choose Properties, select the Directory Security tab, and click the Server Certificate button. This will starts the Certificate Installation Wizard.
The default port for SSL is 443, and I highly recommend that you keep that port number.
finally ,You can test out an SSL connection by pointing your Web browser to https://yourservername/.
What are you talking about?! This thread is really old and you are far far away from the topic. The user wants to have enable a secure layer for his webserver running on the embedded target.
PS! Please remove the commercial in your signature. |
|
|
| |
|
|
|
|
|