<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=OpenWRT%3A_Setup_Chillispot</id>
	<title>OpenWRT: Setup Chillispot - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://lms.onnocenter.or.id/wiki/index.php?action=history&amp;feed=atom&amp;title=OpenWRT%3A_Setup_Chillispot"/>
	<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=OpenWRT:_Setup_Chillispot&amp;action=history"/>
	<updated>2026-04-19T18:50:08Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://lms.onnocenter.or.id/wiki/index.php?title=OpenWRT:_Setup_Chillispot&amp;diff=42136&amp;oldid=prev</id>
		<title>Onnowpurbo: New page: Hi guys I&#039;m new on this world, I&#039;m not a guru, I&#039;m starting with ervery  this of embed linux and linux, so take care, I did install the chilli without problems, but remember, I don&#039;t have ...</title>
		<link rel="alternate" type="text/html" href="https://lms.onnocenter.or.id/wiki/index.php?title=OpenWRT:_Setup_Chillispot&amp;diff=42136&amp;oldid=prev"/>
		<updated>2015-01-16T23:46:37Z</updated>

		<summary type="html">&lt;p&gt;New page: Hi guys I&amp;#039;m new on this world, I&amp;#039;m not a guru, I&amp;#039;m starting with ervery  this of embed linux and linux, so take care, I did install the chilli without problems, but remember, I don&amp;#039;t have ...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Hi guys&lt;br /&gt;
I&amp;#039;m new on this world, I&amp;#039;m not a guru, I&amp;#039;m starting with ervery  this of embed linux and linux, so take care, I did install the chilli without problems, but remember, I don&amp;#039;t have enough knowledge.&lt;br /&gt;
&lt;br /&gt;
Ok I did this....&lt;br /&gt;
first time edit /etc/config/network&lt;br /&gt;
and modify the vlan configuration&lt;br /&gt;
here is mi file&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
 #### VLAN configuration &lt;br /&gt;
 config switch eth0&lt;br /&gt;
     option vlan0    &amp;quot;1 2 3 5*&amp;quot;&lt;br /&gt;
     option vlan1    &amp;quot;4 5&amp;quot;&lt;br /&gt;
     option vlan2    &amp;quot;0 5&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 #### Loopback configuration&lt;br /&gt;
 config interface loopback&lt;br /&gt;
     option ifname    &amp;quot;lo&amp;quot;&lt;br /&gt;
     option proto    static&lt;br /&gt;
     option ipaddr    127.0.0.1&lt;br /&gt;
     option netmask    255.0.0.0&lt;br /&gt;
 &lt;br /&gt;
 #### LAN configuration&lt;br /&gt;
 config interface lan&lt;br /&gt;
     option type     bridge&lt;br /&gt;
     option ifname    &amp;quot;eth0.0&amp;quot;&lt;br /&gt;
     option proto    static&lt;br /&gt;
     option ipaddr    192.168.1.1&lt;br /&gt;
     option netmask    255.255.255.0 &lt;br /&gt;
 &lt;br /&gt;
 #### WAN configuration&lt;br /&gt;
 config interface    wan&lt;br /&gt;
     option ifname    &amp;quot;eth0.1&amp;quot;&lt;br /&gt;
     option proto    dhcp &lt;br /&gt;
&lt;br /&gt;
here is my /etc/config/wireless too, take a look, you need comment option network&lt;br /&gt;
&lt;br /&gt;
 config wifi-device  wl0&lt;br /&gt;
     option type     broadcom&lt;br /&gt;
     option channel  5&lt;br /&gt;
 &lt;br /&gt;
     # REMOVE THIS LINE TO ENABLE WIFI:&lt;br /&gt;
     option disabled 0&lt;br /&gt;
 &lt;br /&gt;
 config wifi-iface&lt;br /&gt;
     option device   wl0&lt;br /&gt;
 #    option network    lan&lt;br /&gt;
     option mode     adhoc&lt;br /&gt;
     option ssid     OpenWrt&lt;br /&gt;
     option encryption none &lt;br /&gt;
&lt;br /&gt;
I did use option mode adhoc because i trying to run olsrd to with all this, but you can use &amp;quot;option mode ap&amp;quot;&lt;br /&gt;
&lt;br /&gt;
next we need change the firewall rules, I did the easy job, only copy the configuration of lan for wifi&lt;br /&gt;
so edit /etc/firewall.user to add the lines&lt;br /&gt;
here is my /etc/firewall.user&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 # Copyright (C) 2006 OpenWrt.org&lt;br /&gt;
 &lt;br /&gt;
 iptables -F input_rule&lt;br /&gt;
 iptables -F output_rule&lt;br /&gt;
 iptables -F forwarding_rule&lt;br /&gt;
 iptables -t nat -F prerouting_rule&lt;br /&gt;
 iptables -t nat -F postrouting_rule&lt;br /&gt;
 &lt;br /&gt;
 # The following chains are for traffic directed at the IP of the &lt;br /&gt;
 # WAN interface&lt;br /&gt;
 &lt;br /&gt;
 iptables -F input_wan&lt;br /&gt;
 iptables -F forwarding_wan&lt;br /&gt;
 iptables -t nat -F prerouting_wan&lt;br /&gt;
 &lt;br /&gt;
 ### Open port to WAN&lt;br /&gt;
 ## -- This allows port 22 to be answered by (dropbear on) the router&lt;br /&gt;
 # iptables -t nat -A prerouting_wan -p tcp --dport 22 -j ACCEPT &lt;br /&gt;
 # iptables        -A input_wan      -p tcp --dport 22 -j ACCEPT&lt;br /&gt;
 &lt;br /&gt;
 ### Port forwarding&lt;br /&gt;
 ## -- This forwards port 8080 on the WAN to port 80 on 192.168.1.2&lt;br /&gt;
 # iptables -t nat -A prerouting_wan -p tcp --dport 8080 -j DNAT --to  192.168.1.2:80&lt;br /&gt;
 # iptables        -A forwarding_wan -p tcp --dport 80 -d 192.168.1.2 -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
 ### DMZ&lt;br /&gt;
 ## -- Connections to ports not handled above will be forwarded to 192.168.1.2&lt;br /&gt;
 # iptables -t nat -A prerouting_wan -j DNAT --to 192.168.1.2&lt;br /&gt;
 # iptables        -A forwarding_wan -d 192.168.1.2 -j ACCEPT&lt;br /&gt;
 ### Chilli&lt;br /&gt;
 WIFI=&amp;quot;wl0&amp;quot;&lt;br /&gt;
 iptables -A INPUT -p tcp -m tcp --dport 3990 --syn -j ACCEPT&lt;br /&gt;
 &lt;br /&gt;
 iptables -N WIFI_ACCEPT&lt;br /&gt;
[ -z &amp;quot;$WAN&amp;quot; ] || iptables -A WIFI_ACCEPT -i &amp;quot;$WAN&amp;quot; -j RETURN&lt;br /&gt;
[ -z &amp;quot;$WANDEV&amp;quot; -o &amp;quot;$WANDEV&amp;quot; = &amp;quot;$WAN&amp;quot; ] || iptables -A WIFI_ACCEPT -i &amp;quot;$WANDEV&amp;quot; -j RETURN&lt;br /&gt;
 iptables -A WIFI_ACCEPT -j ACCEPT&lt;br /&gt;
 &lt;br /&gt;
 iptables -A INPUT -j WIFI_ACCEPT    # allow from lan/wifi interfaces &lt;br /&gt;
 &lt;br /&gt;
 iptables -A FORWARD -i $WIFI -o $WIFI -j ACCEPT&lt;br /&gt;
[ -z &amp;quot;$WAN&amp;quot; ] || iptables -A FORWARD -i $WIFI -o $WAN -j ACCEPT&lt;br /&gt;
&lt;br /&gt;
after is more easy job, install the chilli and configure it&lt;br /&gt;
&lt;br /&gt;
 ipkg update&lt;br /&gt;
 ipkg install chillispot&lt;br /&gt;
&lt;br /&gt;
edit /etc/chilli.conf&lt;br /&gt;
the more important is the interface of wireless. In my case is wl0 because I have a linksys WRT54GL, take care with other routers maybe you need change that.&lt;br /&gt;
&lt;br /&gt;
 dhcpif wl0&lt;br /&gt;
&lt;br /&gt;
and remember put the right uamsecret and radiussecret&lt;br /&gt;
&lt;br /&gt;
here is my file&lt;br /&gt;
&lt;br /&gt;
 ##############################################################################&lt;br /&gt;
 #&lt;br /&gt;
 # Sample ChilliSpot configuration file&lt;br /&gt;
 #&lt;br /&gt;
 ##############################################################################&lt;br /&gt;
 &lt;br /&gt;
 # TAG: fg&lt;br /&gt;
 # Include this flag if process is to run in the foreground&lt;br /&gt;
 #fg&lt;br /&gt;
 &lt;br /&gt;
 # TAG: debug&lt;br /&gt;
 # Include this flag to include debug information.&lt;br /&gt;
 #debug&lt;br /&gt;
 &lt;br /&gt;
 # TAG: interval&lt;br /&gt;
 # Re-read configuration file at this interval. Will also cause new domain&lt;br /&gt;
 # name lookups to be performed. Value is given in seconds.&lt;br /&gt;
 #interval 3600&lt;br /&gt;
 &lt;br /&gt;
 # TAG: pidfile&lt;br /&gt;
 # File to store information about the process id of the program.&lt;br /&gt;
 # The program must have write access to this file/directory.&lt;br /&gt;
 #pidfile /var/run/chilli.pid&lt;br /&gt;
 &lt;br /&gt;
 # TAG: statedir&lt;br /&gt;
 # Directory to use for nonvolatile storage.&lt;br /&gt;
 # The program must have write access to this directory.&lt;br /&gt;
 # This tag is currently ignored&lt;br /&gt;
 #statedir ./&lt;br /&gt;
 &lt;br /&gt;
 # TUN parameters&lt;br /&gt;
 &lt;br /&gt;
 # TAG: net&lt;br /&gt;
 # IP network address of external packet data network&lt;br /&gt;
 # Used to allocate dynamic IP addresses and set up routing.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #net 192.168.182.0/24&lt;br /&gt;
 &lt;br /&gt;
 # TAG: dynip&lt;br /&gt;
 # Dynamic IP address pool&lt;br /&gt;
 # Used to allocate dynamic IP addresses to clients.&lt;br /&gt;
 #  If not set it defaults to the net tag.&lt;br /&gt;
 #  Do not uncomment this tag unless you are an experienced user!&lt;br /&gt;
 # dynip 192.168.182.0/24&lt;br /&gt;
 &lt;br /&gt;
 # TAG: statip&lt;br /&gt;
 # Static IP address pool&lt;br /&gt;
 # Used to allocate static IP addresses to clients.&lt;br /&gt;
 # Do not uncomment this tag unless you are an experienced user!&lt;br /&gt;
 #statip 192.168.182.0/24&lt;br /&gt;
 &lt;br /&gt;
 # TAG: dns1&lt;br /&gt;
 # Primary DNS server.&lt;br /&gt;
 # Will be suggested to the client. &lt;br /&gt;
 # If omitted the system default will be used.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 dns1 172.16.0.5&lt;br /&gt;
 &lt;br /&gt;
 # TAG: dns2&lt;br /&gt;
 # Secondary DNS server.&lt;br /&gt;
 # Will be suggested to the client.&lt;br /&gt;
 # If omitted the system default will be used.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 dns2 172.16.0.6&lt;br /&gt;
 &lt;br /&gt;
 # TAG: domain&lt;br /&gt;
 # Domain name&lt;br /&gt;
 # Will be suggested to the client.&lt;br /&gt;
 #  Normally you do not need to uncomment this tag.&lt;br /&gt;
 #domain key.chillispot.org&lt;br /&gt;
 &lt;br /&gt;
 # TAG: ipup&lt;br /&gt;
 # Script executed after network interface has been brought up.&lt;br /&gt;
 # Executed with the following parameters: &amp;lt;devicename&amp;gt; &amp;lt;ip address&amp;gt;&lt;br /&gt;
 # &amp;lt;mask&amp;gt;&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #ipup /etc/chilli.ipup&lt;br /&gt;
 &lt;br /&gt;
 # TAG: ipdown&lt;br /&gt;
 # Script executed after network interface has been taken down.&lt;br /&gt;
 # Executed with the following parameters: &amp;lt;devicename&amp;gt; &amp;lt;ip address&amp;gt;&lt;br /&gt;
 # &amp;lt;mask&amp;gt;&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #ipdown /etc/chilli.ipdown&lt;br /&gt;
 &lt;br /&gt;
 # TAG: conup&lt;br /&gt;
 # Script executed after a user has been authenticated.&lt;br /&gt;
 # Executed with the following parameters: &amp;lt;devicename&amp;gt; &amp;lt;ip address&amp;gt;&lt;br /&gt;
 # &amp;lt;mask&amp;gt; &amp;lt;user ip address&amp;gt; &amp;lt;user mac address&amp;gt; &amp;lt;filter ID&amp;gt;&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #conup /etc/chilli.conup&lt;br /&gt;
 &lt;br /&gt;
 # TAG: conup&lt;br /&gt;
 # Script executed after a user has disconnected.&lt;br /&gt;
 # Executed with the following parameters: &amp;lt;devicename&amp;gt; &amp;lt;ip address&amp;gt;&lt;br /&gt;
 # &amp;lt;mask&amp;gt; &amp;lt;user ip address&amp;gt; &amp;lt;user mac address&amp;gt; &amp;lt;filter ID&amp;gt;&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #conup /etc/chilli.condown&lt;br /&gt;
 &lt;br /&gt;
 # Radius parameters&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiuslisten&lt;br /&gt;
 # IP address to listen to&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiuslisten 127.0.0.1&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiusserver1&lt;br /&gt;
 # IP address of radius server 1&lt;br /&gt;
 # For most installations you need to modify this tag.&lt;br /&gt;
 #radiusserver1 rad01.chillispot.org&lt;br /&gt;
 #You can use an IP&lt;br /&gt;
 radiusserver1 rad01.YourRadiusServer.org&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiusserver2&lt;br /&gt;
 # IP address of radius server 2&lt;br /&gt;
 # If you have only one radius server you should set radiusserver2 to the&lt;br /&gt;
 # same value as radiusserver1.&lt;br /&gt;
 # For most installations you need to modify this tag.&lt;br /&gt;
 #radiusserver2 rad02.chilispot.org&lt;br /&gt;
 #You can use an IP&lt;br /&gt;
 radiusserver2 rad02.YourRadiusServer.org&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiusauthport&lt;br /&gt;
 # Radius authentication port&lt;br /&gt;
 # The UDP port number to use for radius authentication requests.&lt;br /&gt;
 # The same port number is used for both radiusserver1 and radiusserver2.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiusauthport 1812&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiusacctport&lt;br /&gt;
 # Radius accounting port&lt;br /&gt;
 # The UDP port number to use for radius accounting requests.&lt;br /&gt;
 # The same port number is used for both radiusserver1 and radiusserver2.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiusacctport 1813 &lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiussecret&lt;br /&gt;
 # Radius shared secret for both servers&lt;br /&gt;
 # For all installations you should modify this tag.&lt;br /&gt;
 #radiussecret testing123&lt;br /&gt;
 radiussecret YourRadiusSecret&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiusnasid&lt;br /&gt;
 # Radius NAS-Identifier&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiusnasid nas01&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiusnasip&lt;br /&gt;
 # Radius NAS-IP-Address&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiusnasip 127.0.0.1 &lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiuscalled&lt;br /&gt;
 # Radius Called-Station-ID&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiuscalled 00133300&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiuslocationid&lt;br /&gt;
 # WISPr Location ID. Should be in the format: isocc=&amp;lt;ISO_Country_Code&amp;gt;,&lt;br /&gt;
 # cc=&amp;lt;E.164_Country_Code&amp;gt;,ac=&amp;lt;E.164_Area_Code&amp;gt;,network=&amp;lt;ssid/ZONE&amp;gt;&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiuslocationid isocc=us,cc=1,ac=408,network=ACMEWISP_NewarkAirport&lt;br /&gt;
 &lt;br /&gt;
 # TAG: radiuslocationname&lt;br /&gt;
 # WISPr Location Name. Should be in the format: &lt;br /&gt;
 # &amp;lt;HOTSPOT_OPERATOR_NAME&amp;gt;,&amp;lt;LOCATION&amp;gt;&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #radiuslocationname ACMEWISP,Gate_14_Terminal_C_of_Newark_Airport &lt;br /&gt;
 &lt;br /&gt;
 # Radius proxy parameters&lt;br /&gt;
 &lt;br /&gt;
 # TAG: proxylisten&lt;br /&gt;
 # IP address to listen to&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #proxylisten 10.0.0.1&lt;br /&gt;
 &lt;br /&gt;
 # TAG: proxyport&lt;br /&gt;
 # UDP port to listen to. &lt;br /&gt;
 # If not specified a port will be selected by the system&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #proxyport 1645 &lt;br /&gt;
 &lt;br /&gt;
 # TAG: proxyclient&lt;br /&gt;
 # Client(s) from which we accept radius requests&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #proxyclient 10.0.0.1/24&lt;br /&gt;
 &lt;br /&gt;
 # TAG: proxysecret&lt;br /&gt;
 # Radius proxy shared secret for all clients&lt;br /&gt;
 # If not specified defaults to radiussecret&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #proxysecret testing123&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 # Remote configuration management&lt;br /&gt;
 &lt;br /&gt;
 # TAG: confusername&lt;br /&gt;
 # If confusername is specified together with confpassword chillispot&lt;br /&gt;
 # will at regular intervals specified by the interval option query the&lt;br /&gt;
 # radius server for configuration information.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #confusername conf&lt;br /&gt;
 &lt;br /&gt;
 # TAG: confpassword&lt;br /&gt;
 # If confusername is specified together with confpassword chillispot&lt;br /&gt;
 # will at regular intervals specified by the interval option query the&lt;br /&gt;
 # radius server for configuration information.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #confpassword secret&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 # DHCP Parameters &lt;br /&gt;
 &lt;br /&gt;
 # TAG: dhcpif&lt;br /&gt;
 # Ethernet interface to listen to.&lt;br /&gt;
 # This is the network interface which is connected to the access points.&lt;br /&gt;
 # In a typical configuration this tag should be set to eth1.&lt;br /&gt;
 dhcpif wl0&lt;br /&gt;
 &lt;br /&gt;
 # TAG: dhcpmac&lt;br /&gt;
 # Use specified MAC address.&lt;br /&gt;
 # An address in the range  00:00:5E:00:02:00 - 00:00:5E:FF:FF:FF falls&lt;br /&gt;
 # within the IANA range of addresses and is not allocated for other&lt;br /&gt;
 # purposes.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #dhcpmac 00:00:5E:00:02:00&lt;br /&gt;
 &lt;br /&gt;
 # TAG: lease&lt;br /&gt;
 # Time before DHCP lease expires&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #lease 600&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 # Universal access method (UAM) parameters   &lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamserver&lt;br /&gt;
 # URL of web server handling authentication.&lt;br /&gt;
 #uamserver http://www.internet-wifi.com.ar/hotspotlogin_m.php&lt;br /&gt;
 uamserver https://your.uamserver/hotspotlogin&lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamhomepage&lt;br /&gt;
 # URL of welcome homepage.&lt;br /&gt;
 # Unauthenticated users will be redirected to this URL. If not specified&lt;br /&gt;
 # users will be redirected to the uamserver instead.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #uamhomepage http://192.168.182.1/welcome.html&lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamsecret&lt;br /&gt;
 # Shared between chilli and authentication web server&lt;br /&gt;
 #uamsecret ht2eb8ej6s4et3rg1ulp&lt;br /&gt;
 uamsecret YourUamSecret&lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamlisten&lt;br /&gt;
 # IP address to listen to for authentication requests&lt;br /&gt;
 # Do not uncomment this tag unless you are an experienced user!&lt;br /&gt;
 #uamlisten 192.168.182.1 &lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamport&lt;br /&gt;
 # TCP port to listen to for authentication requests&lt;br /&gt;
 # Do not uncomment this tag unless you are an experienced user!&lt;br /&gt;
 #uamport 3990&lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamallowed&lt;br /&gt;
 # Comma separated list of domain names, IP addresses or network segments&lt;br /&gt;
 # the client can access without first authenticating.&lt;br /&gt;
 # It is possible to specify this tag multiple times.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #uamallowed www.chillispot.org,10.11.12.0/24&lt;br /&gt;
 #uamallowed www.internet-wifi.com.ar,10.0.0.0/8,172.16.0.0/24&lt;br /&gt;
 uamallowed www.yoursallowedsi.sites,10.0.0.0/8,172.16.0.0/24&lt;br /&gt;
 &lt;br /&gt;
 # TAG: uamanydns&lt;br /&gt;
 # If this flag is given unauthenticated users are allowed to use&lt;br /&gt;
 # any DNS server.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #uamanydns&lt;br /&gt;
 uamanydns&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 # MAC authentication&lt;br /&gt;
 &lt;br /&gt;
 # TAG: macauth&lt;br /&gt;
 # If this flag is given users will be authenticated only on their MAC&lt;br /&gt;
 # address.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #macauth&lt;br /&gt;
 &lt;br /&gt;
 # TAG: macallowed&lt;br /&gt;
 # List of MAC addresses.&lt;br /&gt;
 # The MAC addresses specified in this list will be authenticated only on&lt;br /&gt;
 # their MAC address.&lt;br /&gt;
 # This tag is ignored if the macauth tag is given.&lt;br /&gt;
 # It is possible to specify this tag multiple times.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #macallowed 00-0A-5E-AC-BE-51,00-30-1B-3C-32-E9&lt;br /&gt;
 &lt;br /&gt;
 # TAG: macpasswd&lt;br /&gt;
 # Password to use for MAC authentication.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #macpasswd password&lt;br /&gt;
 &lt;br /&gt;
 # TAG: macsuffix&lt;br /&gt;
 # Suffix to add to MAC address in order to form the username.&lt;br /&gt;
 # Normally you do not need to uncomment this tag.&lt;br /&gt;
 #macsuffix suffix&lt;br /&gt;
&lt;br /&gt;
Ok, guys that&amp;#039;s it...&lt;br /&gt;
with this every work, but remember, maybe I did something wron&lt;br /&gt;
&lt;br /&gt;
Good luck&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Referensi==&lt;br /&gt;
&lt;br /&gt;
* https://forum.openwrt.org/viewtopic.php?id=11486&lt;/div&gt;</summary>
		<author><name>Onnowpurbo</name></author>
	</entry>
</feed>