Search results

  • 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. J

    Guest Network (N66U)

    There was one line that I forgot to add. Try adding this to the firewall rules. iptables -I INPUT -i wl0.1 -j ACCEPT Let me know if this helps.
  2. J

    Guest Network (N66U)

    I was able to do this but for a different reason. There are several things you have to do. What you have to do is use ebtables take arp and IP packets out of br0 from the wireless interface you are using. Then modify the dnsmasq.conf to add the network you want to add. Assign an IP address to...
  3. J

    Some assist with port forwarding w/telnet?

    When you say you have another rule is that to the same IP as the server that you are trying to access? This shouldn't pose a problem but you never know. The other thing I noticed was that the protocol you set is both. Telnet is a TCP protocol if I'm not mistaken. Again this shouldn't be an...
  4. J

    IPTables- Why Does this not work ?

    I was backwards in the statement about blocking traffic from 192.168.1.19 but the rule was correct to block everything but .19. I had a similar problem with using -A in iptables because of a previous rule that negated the one I added. Glad it helped.
  5. J

    IPTables- Why Does this not work ?

    Do you have any other rules before the one you are adding that would drop traffic from 192.168.1.19? Have you tried using insert instead of append so that the rule is looked at first. e.g. iptables -I FORWARD -p tcp --dport -s ! 192.168.1.19 -j DROP That line does look like it would work...
  6. J

    Switching ISP to FIOS How to use RT-AC66U (at least for wireless portion of access)?

    When I had FiOS, I just had to call them and have them activate the ethernet port on the ONT. There was no extra charge for me. I however did have to run the ether cable to the box, which was not problem as I ended up wiring up the whole house. I then just used the FiOS router for the TV...
  7. J

    just got the router, having problem with internet

    There could be a number of problems but it seems as though there is an issue with DNS and the router not able to fulfill DNS requests for the webpages. I see that you have the problem with both wired and wireless so try using a public DNS (i.e. Google's 8.8.8.8) in the Asus router page under LAN...
  8. J

    Guest Network working?

    You can use ebtables to block access by mac addresses. It could go something like this: ebtables -I FORWARD -i wl0.1 -o br0 ! AA:BB:CC:DD:EE:FF -j DROP This is saying that anything connecting to the wl0.1 network that doesn't have a mac address of AA:BB:CC... dropped if it is destined for the...
  9. J

    Guest Network working?

    Actually the wl0.3_lanaccess is an nvram variable, not a driver setting like ap_isolate so wl -i wl0.3_lanaccess 1 would not work as "lanaccess" is not a driver setting. Try running this and see if the variable exists in nvram. nvram show | grep lanaccess If it is there you...
  10. J

    Guest Network working?

    Those commands should work to limit the talking between the guest network and the other networks. I think I have a better understanding of what it is you are trying to do. When you set wl0.3_ap_isolated to one you are making it to where the devices are not able to see each other on the...
  11. J

    two openvpn clients at same time?

    I did a quick test and got it working. I am not sure what you are trying to do but I connected to two separate VPN servers and then used rules to make one client use a one server and the other to use the other. Here's is a quick rundown of what I did. I started the second openvpn service...
  12. J

    two openvpn clients at same time?

    Are you trying to connect to VPN services like HideMyAss or StrongVPN? Usually when you connect to these then they redirect all traffic to go over the tunnel by pushing the redirect-gateway def1 option so when you start the second VPN connection, it overwrites the routes for the first one. I...
  13. J

    Guest Network working?

    Oh. I am sorry. I was under the impression from the previous posts that you had actually isolated them from glancing over the previous posts. I thought you only wanted the variable to hide the SSID. Yes. You do need to configure ebtables. I use merlin's firmware and I wouldn't say that the...
  14. J

    Guest Network working?

    Yeah I should have said that the values for the nvram variable wl0.1_closed is either 1 or 0. When I set it to 1, I have to manually enter the SSID in order to connect to the wireless network. 0 makes it visible.
  15. J

    Guest Network working?

    I don't know if this will work but I use Merlin's firmware I changed the NVRAM variable (ex. guest network 1 on the 2.4 radio for an RT-N66U) wl0.1_closed I have not used the tomato firmware so the variables may be named something else entirely.
  16. J

    OpenVPN PS3 Join Freind in Game Problem

    Hey sorry it has taken a little while to respond. You can redirect traffic from the PS3 over your normal ISP. Try the following commands: ip route add default dev [wan inteface. ie. ppp0, eth0] table 10 ip route add [subnet of local lan] ip rule add from [ip address of PS3] table 10 ip...
  17. J

    VPN Issues

    Janosek is right. You will have to selectively route the traffic going from the CCTV and the FTP services over your regular ISP. Try typing in the following in the terminal ip route add default via [ip of wan gateway] table 10 ip route add [subnet of local lan] table 10 ip route add [any other...
  18. J

    OpenVPN PS3 Join Freind in Game Problem

    Are you connecting to a VPN service like HMA or StrongVPN and then trying to connect using the VPN? If so then PSN will block some of those VPN services from signing into their network. I have had that problem with PSN using Hide My butt VPN service. I just found a server that they would allow me...
  19. J

    PPTP & OpenVPN Client

    There should not be any reason why this shouldn't work with one router. From what I understand you are connecting to your router remotely using a PPTP VPN server and then you are wanting the traffic leaving the router to go over the OpenVPN Client link. Are you using the web interface to setup...
  20. J

    Hide SSID - Guest Networks?

    Yes. There is a way to hide the guest networks. You will need to SSH or telnet into the router. For example if you wanted disable the SSID advertisement for guest network 1 on the 2.4 Ghz band then type the following. nvram set wl0.1_closed=1 nvram commit Use 0 instead of 1 to make it visible...
Top