Recent content by howarethingsgoing

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. H

    Solved Bug Open TCP Ports 5152 / 7788 / 18017 [User Error]

    :oops: Thanks, checked from outside the LAN and I see the ports as filtered correctly now. Derp.
  2. H

    Solved Bug Open TCP Ports 5152 / 7788 / 18017 [User Error]

    I think you may be right, and I see the final DROP rule. I'm unsure why I was able to open a connection to all these ports with netcat against my WAN ip though.
  3. H

    Solved Bug Open TCP Ports 5152 / 7788 / 18017 [User Error]

    From the internet hitting my WAN IP address. I've blocked the traffic with iptables, like so: iptables -I INPUT -p tcp -i br0 --destination-port 5152 -j REJECT iptables -I INPUT -p tcp -i br0 --destination-port 7788 -j REJECT iptables -I INPUT -p tcp -i br0 --destination-port 18017 -j REJECT...
  4. H

    Solved Bug Open TCP Ports 5152 / 7788 / 18017 [User Error]

    I'd feel more comfortable if they weren't listening globally at all. Also, how do you know the firewall won't allow traffic there? I'm not seeing any code or iptable rules about those 3 ports. And connecting with netcat to my public IP does work.
  5. H

    Solved Bug Open TCP Ports 5152 / 7788 / 18017 [User Error]

    I've updated to 386.2_4, and now have a 3rd open port: tcp 0 0 0.0.0.0:5152 0.0.0.0:* LISTEN 274/envrams tcp 0 0 0.0.0.0:18017 0.0.0.0:* LISTEN 1025/wanduck tcp 0 0 0.0.0.0:7788 0.0.0.0:*...
  6. H

    Solved Bug Open TCP Ports 5152 / 7788 / 18017 [User Error]

    Hi, It appears that there's a bug and envrams and cfg_server are listening and bound on 0.0.0.0 instead of just on localhost.localdomain. This makes them publicly accessible outside of your network. xyz@RT-AX58U-5FE8:/tmp/home/root# netstat -lp Active Internet connections (only servers) Proto...
Top