Community discussions

MikroTik App
 
Frothingdog
just joined
Topic Author
Posts: 18
Joined: Wed Jun 17, 2009 4:47 pm

Ip Services List

Wed Mar 23, 2011 6:04 pm

Can you add more then 1(one) accessing subnet for Winbox? (Available From)
 
fewi
Forum Guru
Forum Guru
Posts: 7717
Joined: Tue Aug 11, 2009 3:19 am

Re: Ip Services List

Wed Mar 23, 2011 6:12 pm

No. But you can use the firewall filters in the input chain.

First open up the IP service to everyone:
/ip service set winbox address=0.0.0.0/0 port=8291
Then add input chain filters on that. The input chain contains all packets sent from anywhere to the router directly (which is different from packets sent THROUGH the router):
/ip firewall filter
add chain=input protocol=tcp dst-port=8291 src-address=10.0.0.0/24 action=accept
add chain=input protocol=tcp dst-port=8291 src-address=192.168.0.0/24 action=accept
add chain=input protocol=tcp dst-port=8291 action=drop
 
Frothingdog
just joined
Topic Author
Posts: 18
Joined: Wed Jun 17, 2009 4:47 pm

Re: Ip Services List

Wed Mar 23, 2011 6:14 pm

Ok...thanks