Results 1 to 2 of 2

Thread: Change Port 80, no redirection of port

  1. #1

    Question Change Port 80, no redirection of port

    Hi people of forum, how are you?

    The first, thanks in advance.

    My Asus is Asus wl 500 gx with the latest firmware (1.9.2.7-6b)

    I have a question, i need change the listen port of the web configurator without iptables.

    I cant use Iptables because i stay in project without this.

    I need the port 80 to other web server, this no is the problem, i can make this with this command:

    kill `pidof httpd eth1` && busybox_httpd -p 80 -h /opt/www

    But I cant start the configuration webserver with this command:

    busybox_httpd -p 81 -h /www

    Because the busybox_httpd dont have asp support.

    I need resolve a question:

    - Can I change the listen port? How?

    - How make the busybox to start the configuration webserver?
    (I think in this command: kill `pidof httpd eth1` && busybox_httpd -p 80 -h /opt/www && busybox_httpd -p 81 -h /www)

    Thanks for all.

    Sorry for my english, I´m spanish and ...................... sorry ;-)

  2. #2

    Eureka, Tase 1 - Asus 0

    I won, :-).

    This commands kill the configuration http server and change the listen port to configuration web.

    first Posibility (No kill watchdog, watchdog restart process)
    Code:
    kill `pidof httpd eth1` && busybox_httpd -p 80 -h /opt/www
    # Kill the webserver and start the new webserver in port 80
    cd /www
    httpd -p 81 eth1
    # Start the Webserver Configuration. Remember navigate to /www, the 
    # DocumentRoot is te PWD.
    Second Posibility (Killing watchdog, no restart any process)

    Code:
    kill `pidof watchdog`
    kill `pidof httpd eth1`
    # Kill watchdog and configuration webserver
    busybox_httpd -p 80 -h /opt/www
    # Start the second webserver in port 80
    cd /www
    httpd -p 81 eth1
    # Start the Webserver Configuration. Remember navigate to /www, the 
    # DocumentRoot is te PWD.
    Bye, thanks in advance.

    Tase.

Similar Threads

  1. Change Port 80, no redirection of port
    By tase in forum WL-500g Q&A
    Replies: 0
    Last Post: 19-09-2005, 20:36
  2. Replies: 1
    Last Post: 07-09-2005, 08:09
  3. Replies: 3
    Last Post: 08-06-2005, 15:19
  4. Remote Port vs. Generic TCP port
    By jimroche in forum WL-500g Q&A
    Replies: 2
    Last Post: 18-09-2004, 11:32
  5. Change webinterface port
    By alpha5 in forum WL-500g Q&A
    Replies: 2
    Last Post: 16-06-2004, 17:49

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •