Answer the question
In order to leave comments, you need to log in
How to turn DHCP traffic from non-standard port 6767 to port 67 of DHCP Mikrotik?
Good afternoon, dear Mikrotik experts! Help, please
There is a Jitsi program on Windows that can communicate with DHCP only on UPD port
6767. There is Mikrotik, which has DHCP on the standard UDP port 67.
All in one network. There are no other DHCP servers except for Mikrotik.
How to wrap traffic from 6767 -> 67 for traffic to go?
Answer the question
In order to leave comments, you need to log in
iptables -A INPUT -p udp --dport 6767 -j ACCEPT
iptables -t nat -A PREROUTING -p udp --dport 6767 -j REDIRECT --to-port 67
/ip firewall filter add action=accept chain=input dst-port=6767 protocol=udp
/ip firewall nat add action=redirect chain=dstnat dst-port=6767 protocol=udp to-ports=67
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question