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 DHCP

    This is what I use currently and its working for me. Its in firewall-start not wan-start. I will update the older post. firewall-start #!/bin/sh #Start Guest WiFi with separate DHCP/DNS /sbin/ifconfig wl0.1 192.168.10.1 netmask 255.255.255.0 /usr/sbin/ebtables -t broute -I BROUTING -p...
  2. J

    Use LAN port 4 as private network

    Would you be able to tag an interface (for example guest network wl0.1) to a separate VLAN? Thanks.
  3. J

    how to remove asus from computers in network

    To make it disappear on system I had to make sure share with account was selected and then disable it. If I disabled it when share with no account was selected it would still should up. I am running 38_2. Thanks.
  4. J

    Guest network DHCP

    Ok I got it working!!! First create a guest wireless network though the web interface. Make sure that intranet access is set to "on". When its set to "off" the following is listed in the ebtables: admin@RT-N66U:/jffs/scripts# ebtables --list Bridge table: filter Bridge chain: INPUT...
  5. J

    Guest network DHCP

    It seems that as long as I keep the option in the guest network to "Access the intranet" off I can get dnsmasq to bind to the interface, either br1 or wl0.1 (if using the latest wan-start). However once the guest network is moved off of br0, you cannot establish a connection. I really...
  6. J

    Guest network DHCP

    wl0.1 is now gone and no connection can be made to the guest network brctl show bridge name bridge id STP enabled interfaces br0 8000.3085a9394340 yes vlan1 eth1...
  7. J

    Guest network DHCP

    The configuration that seemed to be mostly working was the following: wan-start #!/bin/sh WANIP=$(/sbin/ifconfig eth0|grep 'inet addr'|cut -d':' -f2|awk '{print $1}') brctl delif br0 wl0.1 brctl addbr br1 brctl addif br1 wl0.1 ifconfig br1 192.168.85.1 netmask 255.255.255.0 broadcast...
  8. J

    Guest network DHCP

    Ok based on the last suggestions, I CAN connect to the guest network. However, no dhcp and when I give static ip and dns no internet. I also I have noticed that the br1 interface is not created any more, so wl0.1 is still on br0. That would probably explain why I can connect to the guest...
  9. J

    Guest network DHCP

    Ok, If I use the two latest files you posted. Everthing seems to work fine on the regular wireless network. However, the clients still cannot connect to the guest network. So should the option for "Access to intranet" be on or off on the guest network? Either way I can't connect, but with...
  10. J

    Guest network DHCP

    yes the wan-start script works. I can't try manually adding a ipaddress on the guest network, because when I have the wan-start script and dnsmasq.conf running I can't connect to the guest network. I'll make the suggested change right now and report back.
  11. J

    Guest network DHCP

    Ok, so I am doing some testing right now. It still doesn't seem to be working. I spilt the guest network to br1 with the wan-start script that works. I added the dnsmasq.conf file, but I am never able to pull and IP address when on the guest network. Actually I am not able to connect to...
  12. J

    Guest network DHCP

    Ok I will report back tomorrow on how I make out. I really appreciate you taking the time to help me out.
  13. J

    Guest network DHCP

    So I create the guest network, add it to the br1 bridge created with your script and then change the dnsmasq file? Also I don't have to change the lan to br1 in the following lines? dhcp-option=lan,15,ROUTERHOSTNAME dhcp-option=lan,3,192.168.85.1 dhcp-option=lan,6,192.168.85.1,0.0.0.0...
  14. J

    Guest network DHCP

    Router grabs a WAN IP via DHCP from the modem. Comcast cable modem if that helps. The ASUS is the only router on the network. No rush, I am not going to be able to test the changes out until tomorrow. Thank you so much.
  15. J

    Guest network DHCP

    Ok now I am confused. Let me try to explain better. I have a modem from my ISP, which is plugged into the ASUS RT-n66u which is my router. I have DHCP turned off on the router. I have a windows server handling my dhcp and dns from my LAN. I want to setup a guest wireless network, with...
  16. J

    Guest network DHCP

    It was a typo. My plan would be to add a dnsmasq.conf.add with the following information after running your script. interface=br1 dhcp-range=br1,192.168.85.50,192.168.85.100,255.255.255.0,86400s dhcp-option=br1,15,guest dhcp-option=br1,3,192.168.85.1 dhcp-option=br1,6,8.8.8.8,8.8.4.4...
  17. J

    Guest network DHCP

    Router mode. One more question. If I follow your script to place the guest network on a separate bridge, what would I use for the default gateway when setting up the dnsmasq.conf file? dhcp-range=wl0.1,192.168.85.50,192.168.85.100,255.255.25 5.0,86400s dhcp-option=wl0.1,15,guest...
  18. J

    Guest network DHCP

    Thank you very much. I just found your post to create a new bridge at: http://forums.smallnetbuilder.com/showpost.php?p=98722&postcount=14 I will try this out tomorrow and report back my results. I did not try creating a new bridge first. I was following a thread by SkyDoc at...
  19. J

    Guest network DHCP

    Hi, I have DHCP disabled on the router and a server on my LAN is handling DHCP. I have setup a guest network that does not have access to the intranet. Devices connected to the guest network never get an IP address and thus cannot connect to the internet. I had tried to use custom config...
  20. J

    Guest networks and DHCP

    I used putty.
Top