Page 1 of 1

problem with PCC and Hotspot .

Posted: Wed Oct 21, 2009 8:50 pm
by MrIC
i have to lines with load balance PCC but there is problem that hot spot doesn't redirect automatic , i have to write 10.5.50.1 in my browser to login .
my config :
/ ip address
add address=10.5.50.1/24 network=10.5.50.0 broadcast=10.5.50.255 interface=Local
add address=192.168.1.5/24 network=192.168.1.0 broadcast=192.168.1.255 interface=WAN1
add address=192.168.0.5/24 network=192.168.0.0 broadcast=192.168.0.255 interface=WAN2

/ ip firewall mangle
add chain=input in-interface=WAN1 action=mark-connection new-connection-mark=WAN1_conn
add chain=input in-interface=WAN2 action=mark-connection new-connection-mark=WAN2_conn
add chain=output connection-mark=WAN1_conn action=mark-routing new-routing-mark=WAN1
add chain=output connection-mark=WAN2_conn action=mark-routing new-routing-mark=WAN2
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
add chain=prerouting connection-mark=WAN1_conn in-interface=Local action=mark-routing new-routing-mark=WAN1
add chain=prerouting connection-mark=WAN2_conn in-interface=Local action=mark-routing new-routing-mark=WAN2

/ ip route
add dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-mark=WAN1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.0.1 routing-mark=WAN2 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.1.1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.0.1 distance=2 check-gateway=ping

/ ip firewall nat
add chain=srcnat out-interface=WAN1 action=masquerade
add chain=srcnat out-interface=WAN2 action=masquerade
it's same as example on Wiki .
Can some one help me ?

Re: problem with PCC and Hotspot .

Posted: Wed Oct 21, 2009 10:26 pm
by fewi
I think that's because traffic going to an outside server is getting mangled in prerouting before the Hotspot has a change to intercept it.

Try replacing
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
With
add chain=prerouting dst-address-type=!local hotspot=auth in-interface=Local per-connection-classifier=both-addresses:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local hotspot=auth in-interface=Local per-connection-classifier=both-addresses:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
To only PCC authenticated Hotspot traffic. There may be other (better) workarounds.

Re: problem with PCC and Hotspot .

Posted: Thu Oct 22, 2009 5:07 pm
by MrIC
thank u fewi
i will test it then i will replay again .

Re: problem with PCC and Hotspot .

Posted: Thu Nov 12, 2009 7:54 pm
by MrIC
another problem
when i actived hotspot and made " hotspot=auth" i got only one line working
i tried to change auth to " From clients , http , local dst , to clients "
all the same
so is there anything wrong i did ?
or there is some settings i missed ?

help pls

Re: problem with PCC and Hotspot .

Posted: Fri Nov 13, 2009 6:17 pm
by MrIC
Still waiting replay

Re: problem with PCC and Hotspot .

Posted: Fri Dec 17, 2010 12:54 am
by Ibersystems
Please, configure PCC like this: http://wiki.mikrotik.com/wiki/Advanced_ ... _Scripting

And then take 40 seconds to configure the hotspot ; ) easyer than repair your config.

Re: problem with PCC and Hotspot .

Posted: Fri Aug 31, 2012 3:59 am
by mrjepara
I think that's because traffic going to an outside server is getting mangled in prerouting before the Hotspot has a change to intercept it.

Try replacing
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local in-interface=Local per-connection-classifier=both-addresses:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
With
add chain=prerouting dst-address-type=!local hotspot=auth in-interface=Local per-connection-classifier=both-addresses:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local hotspot=auth in-interface=Local per-connection-classifier=both-addresses:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
To only PCC authenticated Hotspot traffic. There may be other (better) workarounds.
I have same problem. and this rule is working. thanks FEWI