Results 1 to 2 of 2

Thread: How to open up a port?

  1. #1

    How to open up a port?

    I have installed Oleg's firmware on my Asus WL-500g Premium router. I've also installed ctorrent and YODCTCS Web Gui for administrating the torrents. The web gui uses port 18000 for access. This works fine when I sit at home but I would like to be able to access the web gui externally so I can start and administrate downloads when I'm not at home. So I figured I need to open up port 18000 for external traffic.

    Now how can I accomplish this?

    Any ideas?

  2. #2
    Join Date
    Jul 2008
    Location
    Romania, Bucharest
    Posts
    11
    Try to create this rule with iptables:

    Code:
    iptables -I INPUT -m tcp -p tcp --dport 18000  -j ACCEPT
    eventually put it in /usr/local/sbin/post-firewall so it will be reinitialised in case the router is restarted, like this:
    Code:
     echo "iptables -I INPUT -m tcp -p tcp --dport 18000  -j ACCEPT" >> /usr/local/sbin/post-firewall
    ..and don`t forget to save it:

    Code:
    flashfs save && flashfs commit && flashfs enable
    to save it.

    Or try
    Code:
    iptables -A INPUT -p tcp --dport 18000 -j ACCEPT
    It`s about the same thing.

    Cheers.
    WL-500gP V2 - Oleg Firmware

Similar Threads

  1. Replies: 3
    Last Post: 01-11-2014, 13:16
  2. Open port with iptables
    By zebs in forum WL-500gP Q&A
    Replies: 0
    Last Post: 20-11-2007, 19:51
  3. Simply.... How to open a port
    By ikir in forum WL-500g Q&A
    Replies: 2
    Last Post: 02-02-2006, 15:35
  4. Firmware v1.9.2.7 CR1 [Oleg]
    By Oleg in forum WL-500g Firmware Releases
    Replies: 53
    Last Post: 13-04-2005, 23:26

Posting Permissions

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